// https://syzkaller.appspot.com/bug?id=6cc491be132cfdce3fd4c75357d4606bed322b31 // 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 #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 __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) 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; } struct nlmsg { char* pos; int nesting; struct nlattr* nested[8]; char buf[4096]; }; static void netlink_init(struct nlmsg* nlmsg, int typ, int flags, const void* data, int size) { memset(nlmsg, 0, sizeof(*nlmsg)); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_type = typ; hdr->nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK | flags; memcpy(hdr + 1, data, size); nlmsg->pos = (char*)(hdr + 1) + NLMSG_ALIGN(size); } static void netlink_attr(struct nlmsg* nlmsg, int typ, const void* data, int size) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_len = sizeof(*attr) + size; attr->nla_type = typ; if (size > 0) memcpy(attr + 1, data, size); nlmsg->pos += NLMSG_ALIGN(attr->nla_len); } static void netlink_nest(struct nlmsg* nlmsg, int typ) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_type = typ; nlmsg->pos += sizeof(*attr); nlmsg->nested[nlmsg->nesting++] = attr; } static void netlink_done(struct nlmsg* nlmsg) { struct nlattr* attr = nlmsg->nested[--nlmsg->nesting]; attr->nla_len = nlmsg->pos - (char*)attr; } static int netlink_send_ext(struct nlmsg* nlmsg, int sock, uint16_t reply_type, int* reply_len, bool dofail) { if (nlmsg->pos > nlmsg->buf + sizeof(nlmsg->buf) || nlmsg->nesting) exit(1); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_len = nlmsg->pos - nlmsg->buf; struct sockaddr_nl addr; memset(&addr, 0, sizeof(addr)); addr.nl_family = AF_NETLINK; ssize_t n = sendto(sock, nlmsg->buf, hdr->nlmsg_len, 0, (struct sockaddr*)&addr, sizeof(addr)); if (n != (ssize_t)hdr->nlmsg_len) { if (dofail) exit(1); return -1; } n = recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); if (reply_len) *reply_len = 0; if (n < 0) { if (dofail) exit(1); return -1; } if (n < (ssize_t)sizeof(struct nlmsghdr)) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type == NLMSG_DONE) return 0; if (reply_len && hdr->nlmsg_type == reply_type) { *reply_len = n; return 0; } if (n < (ssize_t)(sizeof(struct nlmsghdr) + sizeof(struct nlmsgerr))) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type != NLMSG_ERROR) { errno = EINVAL; if (dofail) exit(1); return -1; } errno = -((struct nlmsgerr*)(hdr + 1))->error; return -errno; } static int netlink_send(struct nlmsg* nlmsg, int sock) { return netlink_send_ext(nlmsg, sock, 0, NULL, true); } static int netlink_query_family_id(struct nlmsg* nlmsg, int sock, const char* family_name, bool dofail) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = CTRL_CMD_GETFAMILY; netlink_init(nlmsg, GENL_ID_CTRL, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, CTRL_ATTR_FAMILY_NAME, family_name, strnlen(family_name, GENL_NAMSIZ - 1) + 1); int n = 0; int err = netlink_send_ext(nlmsg, sock, GENL_ID_CTRL, &n, dofail); if (err < 0) { return -1; } uint16_t id = 0; struct nlattr* attr = (struct nlattr*)(nlmsg->buf + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg->buf + n; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == CTRL_ATTR_FAMILY_ID) { id = *(uint16_t*)(attr + 1); break; } } if (!id) { errno = EINVAL; return -1; } recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); return id; } static unsigned int queue_count = 2; static void netlink_add_device_impl(struct nlmsg* nlmsg, const char* type, const char* name, bool up) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; netlink_init(nlmsg, RTM_NEWLINK, NLM_F_EXCL | NLM_F_CREATE, &hdr, sizeof(hdr)); if (name) netlink_attr(nlmsg, IFLA_IFNAME, name, strlen(name)); netlink_attr(nlmsg, IFLA_NUM_TX_QUEUES, &queue_count, sizeof(queue_count)); netlink_attr(nlmsg, IFLA_NUM_RX_QUEUES, &queue_count, sizeof(queue_count)); netlink_nest(nlmsg, IFLA_LINKINFO); netlink_attr(nlmsg, IFLA_INFO_KIND, type, strlen(type)); } static void netlink_device_change(struct nlmsg* nlmsg, int sock, const char* name, bool up, const char* master, const void* mac, int macsize, const char* new_name) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; hdr.ifi_index = if_nametoindex(name); netlink_init(nlmsg, RTM_NEWLINK, 0, &hdr, sizeof(hdr)); if (new_name) netlink_attr(nlmsg, IFLA_IFNAME, new_name, strlen(new_name)); if (master) { int ifindex = if_nametoindex(master); netlink_attr(nlmsg, IFLA_MASTER, &ifindex, sizeof(ifindex)); } if (macsize) netlink_attr(nlmsg, IFLA_ADDRESS, mac, macsize); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static struct nlmsg nlmsg; //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } #define NL802154_CMD_SET_SHORT_ADDR 11 #define NL802154_ATTR_IFINDEX 3 #define NL802154_ATTR_SHORT_ADDR 10 static const char* setup_802154() { const char* error = NULL; int sock_generic = -1; int sock_route = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock_route == -1) { error = "socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE) failed"; goto fail; } sock_generic = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock_generic == -1) { error = "socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC) failed"; goto fail; } { int nl802154_family_id = netlink_query_family_id(&nlmsg, sock_generic, "nl802154", true); if (nl802154_family_id < 0) { error = "netlink_query_family_id failed"; goto fail; } for (int i = 0; i < 2; i++) { char devname[] = "wpan0"; devname[strlen(devname) - 1] += i; uint64_t hwaddr = 0xaaaaaaaaaaaa0002 + (i << 8); uint16_t shortaddr = 0xaaa0 + i; int ifindex = if_nametoindex(devname); struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = NL802154_CMD_SET_SHORT_ADDR; netlink_init(&nlmsg, nl802154_family_id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, NL802154_ATTR_IFINDEX, &ifindex, sizeof(ifindex)); netlink_attr(&nlmsg, NL802154_ATTR_SHORT_ADDR, &shortaddr, sizeof(shortaddr)); if (netlink_send(&nlmsg, sock_generic) < 0) { error = "NL802154_CMD_SET_SHORT_ADDR failed"; goto fail; } netlink_device_change(&nlmsg, sock_route, devname, true, 0, &hwaddr, sizeof(hwaddr), 0); if (i == 0) { netlink_add_device_impl(&nlmsg, "lowpan", "lowpan0", false); netlink_done(&nlmsg); netlink_attr(&nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); if (netlink_send(&nlmsg, sock_route) < 0) { error = "netlink: adding device lowpan0 type lowpan link wpan0"; goto fail; } } } } fail: close(sock_route); close(sock_generic); return error; } 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) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 4; 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)); 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 (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[2] = {0xffffffffffffffff, 0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x14040 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // } // } // chdir: int8 = 0xff (1 bytes) // size: len = 0x5e92 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x5e92) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x200000000000, "jfs\000", 4)); NONFAILING(memcpy((void*)0x200000005d40, "./file0\000", 8)); NONFAILING(memcpy( (void*)0x200000018400, "\x78\x9c\xec\xdd\x4d\x6f\x1d\x57\xfd\x07\xf0\xdf\x7d\xf0\xf5\x43\xff" "\x4d\xa3\xea\xaf\x2a\x44\x2c\xdc\x14\x4a\x4b\x69\xf3\x1c\x28\x4f\x4d" "\x59\x74\x01\x0b\x90\x50\xd7\x24\x72\xdd\x2a\x90\x02\x4a\x02\xa2\x55" "\x44\x5c\x65\x81\xd8\x00\x2f\x01\x36\xdd\xb0\xe8\x5b\xe0\x05\xf4\x35" "\x20\x5e\x00\x91\x6c\x56\x5d\x50\x06\x8d\x7d\x4e\x32\x1e\x5f\xe7\x3a" "\x24\xbe\x73\xaf\xcf\xe7\x23\x39\x33\xbf\x39\x77\x7c\xcf\xe4\xeb\xf1" "\xdc\xeb\x99\xb9\x27\x00\x00\x00\x00\x00\x00\x00\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\xf8\xfe\x5b\x3f\x3e\xdb\x8b\x88\x2b\xbf\x4e\x0b\x8e\x47" "\xfc\x5f\x0c\x22\xfa\x11\xcb\x75\xbd\x1a\xf5\xcc\xe5\xfc\xf8\x61\x44" "\x9c\x88\xed\xe6\x78\x2e\x22\x06\x8b\x11\xf5\xfa\xdb\xff\x3c\x13\x71" "\x21\x22\x3e\x3d\x16\xb1\xb9\x75\x7b\xad\x5e\x7c\xee\x80\xfd\xb8\x78" "\xe6\xd6\x8d\xcf\x7f\xf0\xbd\xbf\xff\xee\x8f\x77\x4f\xfc\xf4\x9d\x9f" "\x7c\xdc\x6e\xff\xd1\xff\x9f\xff\xe4\xf7\x77\x22\x8e\xff\xf0\xf5\x4f" "\x3e\xbf\xf3\x64\xb6\x1d\x00\x00\x00\x4a\x51\x55\x55\xd5\x4b\x6f\xf3" "\x4f\xa6\xf7\xf7\xfd\xae\x3b\x05\x00\x4c\x45\x3e\xfe\x57\x49\x5e\xae" "\x56\xab\xd5\xea\x27\x5a\xff\xa1\x3f\x5b\xfd\x51\x17\x5a\x37\x55\xe3" "\xdd\x69\x16\x11\xb1\xd1\x5c\xa7\x7e\xcd\xe0\x74\x3c\x00\xcc\x99\x8d" "\xf8\xac\xeb\x2e\xd0\x21\xf9\x17\x6d\x18\x11\x4f\x75\xdd\x09\x60\xa6" "\xf5\xba\xee\x00\x87\x62\x73\xeb\xf6\x5a\x2f\xe5\xdb\x6b\x1e\x0f\x56" "\x77\xda\xf3\xdf\x29\x77\xe5\xbf\xd1\xbb\x7f\x7f\xc7\x7e\xd3\x49\xda" "\xd7\x98\x4c\xeb\xe7\xeb\x6e\x0c\xe2\xd9\x7d\xfa\xb3\x3c\xa5\x3e\xcc" "\x92\x9c\x7f\xbf\x9d\xff\x95\x9d\xf6\x51\x7a\xdc\x61\xe7\x3f\x2d\xfb" "\xe5\x3f\xda\xb9\xf5\xa9\x38\x39\xff\x41\x3b\xff\x96\x5d\xf9\xff\x29" "\x22\xe6\x36\xff\xfe\xd8\xfc\x4b\x95\xf3\x1f\x3e\x4a\xfe\x1b\x83\x39" "\xde\xff\xe5\x0f\x00\x00\x00\x00\xc0\xd1\x97\xff\xfe\x7f\xbc\xe3\xf3" "\xbf\x8b\x8f\xbf\x29\x07\xf2\xb0\xf3\xbf\xab\x53\xea\x03\x00\x00\x00" "\x00\x00\x00\x00\x3c\x69\x8f\x3b\xfe\xdf\x7d\xc6\xff\x03\x00\x00\x80" "\x99\x55\xbf\x57\xaf\xfd\xf9\xd8\x83\x65\xfb\x7d\x16\x5b\xbd\xfc\xed" "\x5e\xc4\xd3\xad\xc7\x03\x85\x59\x6d\x7c\x38\x20\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x30\x1d\xc3\x88\x95\x74\x5d\xff\x42\x44\x3c\xbd" "\xb2\x52\x55\x55\xfd\xd5\xd4\xae\x1f\xd5\xe3\xae\x3f\xef\x4a\xdf\x7e" "\x28\x59\xd7\xbf\xe4\x01\x00\x60\xc7\xa7\xc7\x5a\xf7\xf2\xf7\x22\x96" "\x22\xe2\xed\xf4\x59\x7f\x0b\x2b\x2b\x2b\x55\xb5\xb4\xbc\x52\xad\x54" "\xcb\x8b\xf9\xf5\xec\x68\x71\xa9\x5a\x6e\xbc\xaf\xcd\xd3\x7a\xd9\xe2" "\xe8\x00\x2f\x88\x87\xa3\xaa\xfe\x66\x4b\x8d\xf5\x9a\x26\xbd\x5f\x9e" "\xd4\xde\xfe\x7e\xf5\x73\x8d\xaa\xc1\x01\x3a\x36\x1d\x1d\x06\x0e\x00" "\x11\xb1\x73\x34\xda\x74\x44\x3a\x62\xaa\xea\x99\xe8\xfa\x55\x0e\xf3" "\xc1\xfe\x7f\xf4\xd8\xff\x39\x88\xae\x7f\x4e\x01\x00\x00\x80\xc3\x57" "\x55\x55\xd5\x4b\x1f\xe7\x7d\x32\x9d\xf3\xef\x77\xdd\x29\x00\x60\x2a" "\xf2\xf1\xbf\x7d\x5e\x40\xad\x56\xab\xd5\x6a\xf5\xd1\xab\x9b\xaa\xf1" "\xee\x34\x8b\x88\xd8\x68\xae\x53\xbf\x66\x30\x1c\x3f\x00\xcc\x99\x8d" "\xf8\xac\xeb\x2e\xd0\x21\xf9\x17\x6d\x18\x11\x27\xba\xee\x04\x30\xd3" "\x7a\x5d\x77\x80\x43\xb1\xb9\x75\x7b\xad\x97\xf2\xed\x35\x8f\x07\xab" "\x3b\xed\xf9\x5a\x90\x5d\xf9\x6f\xf4\xb6\xd7\xcb\xeb\x8f\x9b\x4e\xd2" "\xbe\xc6\x64\x5a\x3f\x5f\x77\x63\x10\xcf\xee\xd3\x9f\xe7\xa6\xd4\x87" "\x59\x92\xf3\xef\xb7\xf3\xbf\xb2\xd3\x9e\x87\xf8\x3f\xec\xfc\xa7\x65" "\xbf\xfc\xeb\xed\x3c\xde\x41\x7f\xba\x96\xf3\x1f\xb4\xf3\x6f\x39\x3a" "\xf9\xf7\xc7\xe6\x5f\xaa\x9c\xff\xf0\x91\xf2\x1f\xc8\x1f\x00\x00\x00" "\x00\x00\x66\x58\xfe\xfb\xff\x71\xe7\x7f\xf3\x26\x03\x00\x00\x00\x00" "\x00\x00\xc0\xdc\xd9\xdc\xba\xbd\x96\xef\x7b\xcd\xe7\xff\xbf\x38\xe6" "\x71\xbd\xe6\x9c\xfb\x3f\x8f\x8c\x9c\x7f\xef\xc0\xf9\xbb\xff\xf7\x28" "\xc9\xf9\xf7\xdb\xf9\xb7\x2e\xc8\x19\x34\xe6\xef\xbd\xf9\x20\xff\x7f" "\x6d\xdd\x5e\xfb\xf8\xd6\x3f\xbf\x90\xa7\x33\x9f\xff\xc2\x60\x54\x3f" "\xf7\x42\xaf\x3f\x18\xa6\x6b\x7e\xaa\x85\x77\xe3\x5a\x5c\x8f\xf5\x38" "\xb3\xe7\xf1\xc3\x5d\xed\x67\xf7\xb4\x2f\xec\x6a\x3f\x37\xa1\xfd\xfc" "\x9e\xf6\x51\xdd\xbe\xbc\xdd\xfe\x56\x5d\xaf\xc5\x2f\xe2\x7a\xbc\x73" "\xbf\x7d\x71\xc2\x85\x51\x4b\x13\xda\xab\x09\xed\x39\xff\x81\xfd\xbf" "\x48\x39\xff\x61\xe3\xab\xce\x7f\x25\xb5\xf7\x5a\xd3\xda\xbd\x8f\xfa" "\x7b\xf6\xfb\xe6\x74\xdc\xf3\x5c\xfe\xeb\xbf\x5f\xdc\xbb\x77\x4d\xdf" "\xdd\x18\xdc\xdf\xb6\xa6\x7a\xfb\x4e\x75\xd0\x9f\xed\xff\x93\xa7\x46" "\xf1\xab\x9b\xeb\x37\x5e\xfb\xcd\xd5\x5b\xb7\x6e\x9c\x8d\x34\xd9\xb5" "\xf4\x5c\xa4\xc9\x13\x96\xf3\x5f\x48\x5f\x39\xff\x97\x5e\xd8\x69\xcf" "\xbf\xf7\x9b\xfb\xeb\xbd\x8f\x46\x8f\x9c\xff\xac\xb8\x1b\xc3\x7d\xf3" "\x7f\xa1\x31\x5f\x6f\xef\xcb\x53\xee\x5b\x17\x72\xfe\xa3\xf4\x95\xf3" "\xcf\x47\xa0\xf1\xfb\xff\x3c\xe7\xbf\xff\xfe\xff\x4a\x07\xfd\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x87\xa9\xaa\x6a\xfb\x16" "\xd1\xcb\x11\x71\x29\xdd\xff\xd3\xd5\xbd\x99\x00\xc0\x74\xe5\xe3\x7f" "\x95\xe4\xe5\xea\xe9\xd5\x4b\x33\xd6\x1f\xb5\x5a\xad\x56\x1f\xdd\xba" "\xa9\x1a\xef\x8d\x66\x11\x11\x7f\x6b\xae\x53\xbf\x66\xf8\xed\xb8\x6f" "\x06\x00\xcc\xb2\xff\x44\xc4\x3f\xba\xee\x04\x9d\x91\x7f\xc1\xf2\xe7" "\xfd\xd5\xd3\x2f\x75\xdd\x19\x60\xaa\x6e\x7e\xf0\xe1\xcf\xae\x5e\xbf" "\xbe\x7e\xe3\x66\xd7\x3d\x01\x00\x00\x00\x00\x00\x00\x00\xfe\x57\x79" "\xfc\xcf\xd5\xc6\xf8\xcf\xdb\xd7\x01\xb5\xc6\x8d\xde\x35\xfe\xeb\x9b" "\xb1\x3a\xb7\xe3\x7f\xf6\x47\x83\xed\xb1\xce\xd3\x06\x3d\x1f\x0f\x1f" "\xff\xfb\x54\x3c\x7c\xfc\xef\xe1\x84\xe7\x5b\x98\xd0\x3e\x9a\xd0\xbe" "\x38\xa1\x7d\x69\x42\xfb\xd8\x1b\x3d\x1a\x72\xfe\xcf\xa7\x8c\x73\xfe" "\x27\xd3\x86\x95\x34\xfe\xeb\x4b\x1d\xf4\xa7\x6b\x39\xff\x53\x69\xac" "\xe7\x9c\xff\x57\x5a\x8f\x6b\xe6\x5f\xfd\x65\x9e\xf3\xef\xef\xca\xff" "\xf4\xad\xf7\x7f\x79\xfa\xe6\x07\x1f\xbe\x7a\xed\xfd\xab\xef\xad\xbf" "\xb7\xfe\xf3\xb3\x67\x2e\x5d\x38\x7f\xf1\xc2\xf9\x8b\x17\x4f\xbf\x7b" "\xed\xfa\xfa\x99\x9d\x7f\x3b\xec\xf1\xe1\xca\xf9\xe7\xb1\xaf\x5d\x07" "\x5a\x96\x9c\x7f\xce\x5c\xfe\x65\xc9\xf9\x7f\x39\xd5\xf2\x2f\x4b\xce" "\xff\xc5\x54\xcb\xbf\x2c\x39\xff\xfc\x7a\x4f\xfe\x65\xc9\xf9\xe7\xf7" "\x3e\xf2\x2f\x4b\xce\xff\xe5\x54\xcb\xbf\x2c\x39\xff\xaf\xa6\x5a\xfe" "\x65\xc9\xf9\xbf\x92\x6a\xf9\x97\x25\xe7\xff\xb5\x54\xcb\xbf\x2c\x39" "\xff\x57\x53\x2d\xff\xb2\xe4\xfc\x5f\x4b\xb5\xfc\xcb\x92\xf3\x3f\x9d" "\x6a\xf9\x97\x25\xe7\x9f\xcf\x70\xc9\xbf\x2c\x39\xff\x7c\x65\x83\xfc" "\xcb\x92\xf3\x3f\x97\x6a\xf9\x97\x25\xe7\x7f\x3e\xd5\xf2\x2f\x4b\xce" "\xff\x42\xaa\xe5\x5f\x96\x9c\xff\xc5\x54\xcb\xbf\x2c\x39\xff\x4b\xa9" "\x96\x7f\x59\x72\xfe\x5f\x4f\xb5\xfc\xcb\x92\xf3\xff\x46\xaa\xe5\x5f" "\x96\x9c\xff\xeb\xa9\x96\x7f\x59\x72\xfe\xdf\x4c\xb5\xfc\xcb\x92\xf3" "\xff\x56\xaa\xe5\x5f\x96\x9c\xff\xb7\x53\x2d\xff\xb2\xe4\xfc\xbf\x93" "\x6a\xf9\x97\x25\xe7\xff\xdd\x54\xcb\xbf\x2c\x39\xff\x37\x52\x2d\xff" "\xb2\x3c\xf8\xfc\x7f\x33\x66\xcc\x98\xc9\x33\x5d\xff\x66\x02\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xda\xa6\x71\x39\x71\xd7\xdb\x08\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x97\x1d\x38\x10\x00\x00\x00\x00\x00\xf2" "\x7f\x6d\x84\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\x2a\xec\xc0\x81\x00\x00\x00\x00\x00\x90\xff\x6b\x23\x54\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x61\xef\x5e\x63" "\xe4\x2a\xef\xfb\x81\x9f\xbd\xd9\x6b\x43\x82\xff\x81\x70\x8b\x03\xb6" "\xb9\x19\x58\xd8\x5d\xdf\xc0\x21\x06\x93\x84\xfc\x29\xe9\x85\x92\x90" "\x36\x2d\xa9\x71\xbc\x6b\xb3\x89\x6f\xf5\xee\x72\x13\x2a\x9b\x42\x5b" "\xa2\x20\x15\xa9\x55\x45\x5f\x34\x4d\xa2\x34\x8a\xd4\x56\xa0\x2a\x6a" "\xa9\x44\x22\xa4\x46\x6a\xdf\x35\xaf\x1a\xf1\x26\x6a\xa5\xbc\xf0\x0b" "\xa8\x1c\x94\x54\x4a\x15\xd8\xea\xcc\x3c\xcf\xb3\x33\xb3\xb3\x73\xd6" "\x97\xb1\x67\xce\xf9\x7c\x90\xfd\xf3\xee\x9c\x99\x79\xe6\xcc\x99\xd9" "\xf9\x2e\xfa\xce\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd0\x68\xf3\xc7\xa7\xff\x64" "\x20\xcb\xb2\xfc\x4f\xed\xaf\x0d\x59\x76\x71\xfe\xef\x75\xd9\xde\xfc" "\xcb\x85\x5d\x17\x7a\x85\x00\x00\x00\xc0\xd9\x7a\xb7\xf6\xf7\xdf\x5d" "\x92\xbe\xb1\x77\x15\x67\x6a\xd8\xe6\x5f\xaf\xf9\xf7\xef\x2e\x2e\x2e" "\x2e\x66\x5f\x78\xe7\xe4\x7b\x7f\xb6\xb8\x98\x4e\xd8\x94\x65\x43\x6b" "\xb3\xac\x76\x5a\xf4\x6f\xbf\xf8\xf9\x62\xe3\x36\xc1\x73\xd9\xe8\xc0" "\x60\xc3\xd7\x83\x05\x57\x3f\x54\x70\xfa\x70\xc1\xe9\x23\x05\xa7\xaf" "\x29\x38\x7d\x6d\xc1\xe9\xa3\x05\xa7\x2f\xdb\x01\xcb\xac\xab\xff\x3e" "\xa6\x76\x61\xd7\xd7\xfe\xb9\xa1\xbe\x4b\xb3\xcb\xb2\x91\xda\x69\xd7" "\xb7\x39\xd7\x73\x03\x6b\x07\x07\xe3\xef\x72\x6a\x06\x6a\xe7\x59\x1c" "\x39\x98\xcd\x64\x87\xb3\xe9\x6c\x62\xd9\x79\x06\x6a\xff\x65\xd9\xeb" "\x9b\xf3\xeb\xba\x3f\x8b\xd7\x35\xd8\x70\x5d\x1b\xb3\x2c\x3b\xf5\xd3" "\x67\x0e\xc4\x35\x0c\x84\x7d\x7c\x7d\xd6\x74\x65\x35\x8d\xf7\xdd\xdb" "\xf7\x66\x9b\xde\xf9\xe9\x33\x07\xbe\x3d\xf7\xd6\x55\xed\x66\xe1\x6e" "\x58\xb6\xd2\x2c\xdb\xba\x25\x5f\xe7\xf3\x59\xb6\xf4\xeb\xaa\x6c\x20" "\x5b\x9b\xf6\x49\x5c\xe7\x60\xc3\x3a\x37\xb6\x59\xe7\x50\xd3\x3a\x07" "\x6a\xe7\xcb\xff\xdd\xba\xce\x53\xab\x5c\x67\xbc\xdd\xa3\x61\x9d\x3f" "\xec\xb0\xce\x8d\xe1\x7b\x4f\x5e\x97\x65\xd9\x42\xb6\xe2\x36\xad\x9e" "\xcb\x06\xb3\xf5\x2d\xd7\x9a\xf6\xf7\x68\xfd\x88\xc8\x2f\x23\xbf\x2b" "\x3f\x90\x0d\x9f\xd6\x71\xb2\x79\x15\xc7\x49\x7e\x9e\x9f\x5c\xd7\x7c" "\x9c\xb4\x1e\x93\x71\xff\x6f\x0e\xfb\x64\x78\x85\x35\x34\xde\x1d\x6f" "\x7f\x79\xcd\xb2\xfd\x7e\xa6\xc7\x49\x7e\xab\x7b\xe1\x58\xcd\x2f\xfb" "\xc1\xfc\x4a\x47\x47\x1b\x7f\xb5\xda\x74\xac\xe6\xdb\x3c\x73\xc3\xca" "\xc7\x40\xdb\xfb\xae\xcd\x31\x90\x8e\xe5\x86\x63\x60\x4b\xd1\x31\x30" "\xb8\x66\xa8\x76\x0c\x0c\x2e\xad\x79\x4b\xd3\x31\x30\xb9\xec\x3c\x83" "\xd9\x40\xed\xba\x4e\xde\xd0\xf9\x18\x18\x9f\x3b\x72\x7c\x7c\xf6\xa9" "\xa7\x6f\x9b\x39\xb2\xff\xd0\xf4\xa1\xe9\xa3\x93\x13\xbb\x76\x6c\xdf" "\xb9\x63\xfb\xce\x9d\xe3\x07\x67\x0e\x4f\x4f\xd4\xff\x3e\xbd\x5d\xda" "\x47\xd6\x67\x83\xe9\x18\xdc\x12\x9e\x6b\xe2\x31\x78\x53\xcb\xb6\x8d" "\x87\xe4\xe2\x37\xce\xdd\xe3\x60\xb4\x47\x1e\x07\xf9\x6d\xff\xcc\x8d" "\xf9\x82\x2e\x1e\xcc\x56\x38\xc6\xf3\x6d\x9e\xdf\x7a\xf6\x8f\x83\xf4" "\x73\xbf\xe1\x71\x30\xdc\xf0\x38\x68\xfb\x9c\xda\xe6\x71\x30\xbc\x8a" "\xc7\x41\xbe\xcd\xa9\xad\xab\xfb\x99\x39\xdc\xf0\xa7\xdd\x1a\xba\xf5" "\x5c\xb8\xa1\xe1\x18\xb8\x90\x3f\x0f\xf3\xeb\x7c\xe4\xe6\x95\x9f\x0b" "\x37\x86\x75\xbd\x70\xcb\xe9\xfe\x3c\x1c\x5a\x76\x0c\xc4\x9b\x35\x10" "\x1e\x7b\xf9\x77\xd2\xeb\xbd\xd1\x3b\xc3\x7e\x59\x7e\x5c\x5c\x9d\x9f" "\x70\xd1\x9a\x6c\x7e\x76\xfa\xc4\xed\x4f\xee\x9f\x9b\x3b\x31\x99\x85" "\x71\x5e\x5c\xda\x70\x5f\xb5\x1e\x2f\xeb\x1b\x6e\x53\xb6\xec\x78\x19" "\x3c\xed\xe3\x65\xef\xdf\xfe\xf2\xc6\xab\xdb\x7c\x7f\x43\xd8\x57\xa3" "\xb7\x76\xbe\xaf\xf2\x6d\x76\x8c\x75\xbe\xaf\x6a\xcf\xee\xed\xf7\x67" "\xd3\x77\xb7\x65\x61\x9c\x63\xe7\x7b\x7f\xb6\xfb\x69\x96\xef\xcf\x94" "\x25\x3a\xec\xcf\x7c\x9b\xe7\x6f\x3b\xfb\xd7\x82\x29\x97\x34\x3c\xff" "\x8d\x14\x3d\xff\x0d\x8d\x0c\xd7\x9f\xff\x86\xd2\xde\x18\x69\x7a\xfe" "\x5b\x7e\xd7\x0c\xd5\x56\x96\x65\xa7\x6e\x5b\xdd\xf3\xdf\x48\xf8\x73" "\xbe\x9f\xff\x2e\xeb\x91\xe7\xbf\x7c\x5f\x3d\x72\x7b\xe7\x63\x20\xdf" "\xe6\x85\xf1\xd3\x3d\x06\x86\x3b\x3e\xff\x5d\x17\xe6\x40\x58\xcf\xcd" "\x21\x31\x8c\x36\xe4\xfe\xf7\x6a\xa7\x2f\xd4\x0f\xd3\x86\xfb\xb2\xf0" "\xb8\x19\x1e\x1e\x09\xc7\xcd\x70\xbc\xc6\xe6\xe3\x66\xfb\xb2\xf3\xe4" "\x97\x96\x5f\xf7\xd6\x89\x33\x3b\x6e\xb6\x5e\xd7\x7c\x5f\x35\xbd\x6e" "\x29\xe1\x71\x93\xef\xab\x3f\x9f\xe8\x7c\xdc\xe4\xdb\xbc\x31\x79\xf6" "\xcf\x1d\xeb\xe2\x3f\x1b\x9e\x3b\xd6\x14\x1d\x03\x23\x43\x6b\xf2\xf5" "\x8e\xa4\x83\xa0\xfe\x7c\xb7\xb8\x2e\x1e\x03\xb7\x67\x07\xb2\x63\xd9" "\xe1\x6c\x2a\x9d\x27\xbf\x97\xf3\xeb\x1a\xdb\xb6\xba\x63\x60\x4d\xf8" "\x73\xbe\x9f\x3b\xae\xec\x91\x63\x20\xdf\x57\x2f\x6f\xeb\x7c\x0c\xe4" "\xdb\xfc\x60\xfb\xb9\x7d\xed\xb4\x35\x7c\x27\x6d\xd3\xf0\xda\xa9\xf5" "\xf7\x0b\x2b\x65\xfe\xab\x87\x97\x2e\xaf\x75\xb7\x9d\xeb\xcc\x9f\xaf" "\xf3\x13\x3b\x3a\xff\x6e\x28\xdf\xe6\xad\x1d\xa7\x9b\x33\x3a\xef\xa7" "\x5b\xc3\x77\x2e\x6a\xb3\x9f\x5a\x1f\x3f\x2b\x1d\xd3\x53\xd9\xf9\xd9" "\x4f\x57\x86\x75\x1e\xde\xd9\xf9\x77\x53\xf9\x36\x97\xed\x5a\xe5\xf1" "\xb4\x37\xcb\xb2\x37\x27\xdf\xac\xfd\xbe\x2b\xfc\x7e\xf7\x1f\xe6\xff" "\xe3\xbb\x4d\xbf\xf7\x6d\xf7\x3b\xe5\x37\x27\xdf\x7c\x60\xfc\xa1\x1f" "\x9d\xce\xfa\x01\x00\x38\x73\xef\xd5\xfe\x5e\x58\x53\x7f\xad\xd9\xf0" "\x7f\xac\x57\xf3\xff\xff\x01\x00\x00\x80\xbe\x10\x73\xff\x60\x98\x89" "\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x50\x98\x89\xfc\x0f\x00\x00\x00" "\xa5\x11\x73\xff\x70\x98\x49\x45\xf2\xff\x63\x77\xee\x7e\xe5\xdd\x67" "\xb3\xf4\x6e\x80\x8b\x41\x3c\x3d\xee\x86\x07\xef\xae\x6f\x17\x3b\xde" "\x0b\xe1\xeb\x4d\x8b\x4b\xf2\xef\x7f\xec\x5b\x23\xaf\x7c\xe5\xd9\xd5" "\x5d\xf7\x60\x96\x65\xbf\x7c\xe0\x43\x6d\xb7\x7f\xec\xee\xb8\xae\xba" "\xe3\x71\x9d\x1f\x69\xfe\xfe\x32\x57\x5e\xbb\xaa\xeb\x7f\xf4\xe1\xa5" "\xed\x1a\xdf\x3f\xe1\xd4\xee\xfa\xe5\xc7\xdb\xb3\xda\xc3\x20\x76\x95" "\x5f\x1f\xdf\x56\xbb\xdc\x4d\x4f\x4d\xd6\xe6\x1b\x0f\x64\xb5\xf9\xd0" "\xc2\x0b\xcf\xd5\x2f\xbf\xfe\x75\xdc\xfe\xe4\xf6\xfa\xf6\x7f\x15\xde" "\xb4\x64\xef\xc1\x81\xa6\xf3\x6f\x0d\xeb\xb9\x3e\xcc\x4d\xe1\x3d\x65" "\x1e\xdc\xbb\xb4\x1f\xf2\x19\xcf\xf7\xca\xc6\x6b\xfe\xe5\xd2\xcf\x2e" "\x5d\x5f\x3c\xdf\xc0\x96\xf7\xd7\x6e\xe6\xcb\x7f\x50\xbf\xdc\xf8\x1e" "\x51\x2f\x5d\x5a\xdf\x3e\xde\xee\x95\xd6\xff\xbd\xaf\x7e\xe7\x95\x7c" "\xfb\x27\x6f\x68\xbf\xfe\x67\x07\xdb\xaf\xff\x64\xb8\xdc\x9f\x84\xf9" "\x8b\x3d\xf5\xed\x1b\xf7\xf9\x57\x1a\xd6\xff\x47\x61\xfd\xf1\xfa\xe2" "\xf9\x6e\xff\xe6\xf7\xdb\xae\xff\xd5\x2b\xea\xdb\xbf\x1a\x8e\x8b\xaf" "\x87\xd9\xba\xfe\x7b\xff\xf4\xc3\xef\xb6\xbb\xbf\xe2\xf5\xec\xbd\xab" "\x7e\xbe\x78\xfd\x13\xff\xb3\xa3\x76\xbe\x78\x79\xf1\xf2\x5b\xd7\x3f" "\xfa\xec\x64\xd3\xfe\x68\xbd\xfc\x37\xde\xa9\x5f\xce\x9e\xc7\x7f\x36" "\xd4\xb8\x7d\xfc\x7e\xbc\x9e\xe8\xd1\xbb\x9a\x8f\xef\x81\x70\xff\x36" "\xf5\xc8\xb3\x2c\xfb\xce\x1f\x67\x4d\xfb\x39\xfb\x68\xfd\x7c\xff\xdc" "\xb2\xfe\x78\x79\xc7\xef\x6a\xbf\xfe\x5b\x5b\xd6\x79\x7c\xe0\xda\xda" "\xf9\x97\x6e\xcf\x86\xa6\xdb\xf5\xb5\xbf\xd9\xd6\xf6\xf6\xc6\xf5\xec" "\xfd\xfb\x0d\x4d\xb7\xe7\xa5\xfb\xc2\xfe\x7b\x67\xfc\x07\xf9\xe5\x9e" "\x7c\x28\x1c\x8f\xe1\xf4\xff\xfd\x61\xfd\xf2\x5a\xdf\xcb\xf4\xd5\xfb" "\x9a\x9f\x6f\xe2\xf6\x5f\xdf\x50\x7f\xdc\xc6\xcb\x1b\x6f\x59\xff\x4b" "\x2d\xeb\x5f\xb8\x36\xdf\x77\xc5\xeb\xbf\xff\x9d\xfa\xfa\x5f\xbd\x67" "\x6d\xd3\xfa\xf7\x7e\x32\x1c\x4f\xf7\xd7\x67\xd1\xfa\x0f\xfd\xf5\x25" "\x4d\xe7\xff\xc6\xb7\xeb\xf7\xc7\x89\x27\xc6\x8e\x1e\x9b\x9d\x9f\x99" "\x6a\xd8\xab\x8d\x8f\xe3\xb5\xa3\xeb\xd6\x5f\x74\xf1\xfb\xde\x7f\x49" "\x78\x2e\x6d\xfd\x7a\xdf\xb1\xb9\xc7\xa6\x4f\x6c\x9a\xd8\x34\x91\x65" "\x9b\xfa\xf0\x2d\x03\xbb\xbd\xfe\x6f\x86\xf9\xdf\xf5\xb1\x70\xee\xaf" "\xa1\xee\x47\x3f\xab\x1f\x77\x2f\x7e\xaa\xfe\x73\xeb\xa6\x9f\xd7\xbf" "\x7e\x29\x7c\xff\xd1\x70\x7f\xc6\x9f\x8f\x5f\xfb\xcb\x91\xa6\xe3\xb5" "\xf5\x7e\x5f\xb8\xa7\x3e\xcf\x76\xfd\xb7\x84\x75\xac\xd6\x15\x5f\xfd" "\xaf\x6b\x57\xb5\xe1\xc9\xcf\xbf\x3e\xff\x4f\x7f\xf8\x56\xeb\xeb\x82" "\x78\x7b\x8e\x7f\x70\xb4\x76\xfb\x5e\xde\x7c\x79\xed\xb4\x81\x37\xea" "\xa7\xb7\x3e\x5f\x15\xf9\xcf\x0f\x36\x3f\xae\x7f\x3c\x3c\x51\x9b\xaf" "\x85\xfd\xba\x18\xde\x99\x79\xcb\xe5\xf5\xeb\x6b\xbd\xfc\xf8\xde\x24" "\x2f\x7e\xba\xfe\xf8\x8d\xaf\xe4\xe2\xf9\xb3\x96\xf7\x13\xd9\x30\xd4" "\x7c\x3b\xce\x76\xfd\x3f\x0e\xaf\x63\xbe\x7f\x65\xf3\xf3\x5f\x3c\x3e" "\x5e\x7b\xb6\xe5\xdd\x9c\x37\x64\x03\xf9\x12\x16\xc2\xf3\x43\xb6\x50" "\x3f\x3d\x6e\x15\xf7\xf7\x8b\xa7\x2e\x6f\x7b\x7d\xf1\x7d\x78\xb2\x85" "\xab\x4e\x67\x99\x2b\x9a\x7d\x6a\x76\xfc\xf0\xcc\xd1\xf9\x27\xc7\xe7" "\xa6\x67\xe7\xc6\x67\x9f\x7a\x7a\xdf\x91\x63\xf3\x47\xe7\xf6\xd5\xde" "\xbb\x74\xdf\x17\x8b\xce\xbf\xf4\xf8\x5e\x5f\x7b\x7c\x4f\x4d\xef\xda" "\x91\xd5\x1e\xed\xc7\xea\xa3\xcb\x2e\xf4\xfa\x8f\x3f\x7c\x60\xea\x8e" "\x89\x1b\xa7\xa6\x0f\xee\x9f\x3f\x38\xf7\xf0\xf1\xe9\x13\x87\x0e\xcc" "\xce\x1e\x98\x9e\x9a\xbd\x71\xff\xc1\x83\xd3\x4f\x14\x9d\x7f\x66\x6a" "\xcf\xe4\xb6\xdd\xdb\xef\xd8\x36\x76\x68\x66\x6a\xcf\x9d\xbb\x77\x6f" "\xdf\x3d\x36\x73\xf4\x58\xbe\x8c\xfa\xa2\x0a\xec\x9a\xf8\xd2\xd8\xd1" "\x13\xfb\x6a\x67\x99\xdd\xb3\x63\xf7\xe4\xce\x9d\x3b\x26\xc6\x8e\x1c" "\x9b\x9a\xde\x73\xc7\xc4\xc4\xd8\x7c\xd1\xf9\x6b\x3f\x9b\xc6\xf2\x73" "\x3f\x3e\x76\x62\xfa\xf0\xfe\xb9\x99\x23\xd3\x63\xb3\x33\x4f\x4f\xef" "\x99\xdc\xbd\x6b\xd7\xb6\xc2\x77\x7f\x3c\x72\xfc\xe0\xec\xa6\xf1\x13" "\xf3\x47\xc7\xe7\x67\xa7\x4f\x8c\xd7\x6f\xcb\xa6\xb9\xda\xb7\xf3\x9f" "\x7d\x45\xe7\xa7\x1a\x66\x8f\x85\xe7\xbb\x16\x03\xe1\xd5\xf9\xe7\x6e" "\xdd\x95\xde\x1f\x37\xf7\xad\x2f\xaf\x78\x51\xf5\x4d\x9a\x5f\x9e\x66" "\x6f\x87\xf7\x82\x8a\x3f\xdf\x8a\xbe\x8e\xb9\x7f\x24\xcc\xa4\x22\xf9" "\x1f\x00\x00\x00\xaa\x20\xe6\xfe\xf0\xc6\xff\x4b\x27\xc8\xff\x00\x00" "\x00\x50\x1a\x31\xf7\xaf\x0d\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee" "\x1f\x0d\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\x5f\xa1\xff\xff\x8f" "\xdf\xd3\xff\xd7\xff\xd7\xff\x3f\x07\xf4\xff\xf5\xff\x3b\xd1\xff\xd7" "\xff\xef\xe7\xf5\xeb\xff\xeb\xff\x53\xac\xd7\xfa\xff\x31\xf7\xaf\xcb" "\xb2\x4a\xe6\x7f\x00\x00\x00\xa8\x82\x98\xfb\xd7\x87\x99\xc8\xff\x00" "\x00\x00\x50\x1a\x31\xf7\x5f\x14\x66\x22\xff\x03\x00\x00\x40\x69\xc4" "\xdc\x7f\x71\x98\x49\x35\xf2\xff\x48\xeb\x3f\xf5\xff\xf5\xff\xf5\xff" "\x1b\x3f\xff\x3f\x6e\xab\xff\x9f\xe9\xff\xeb\xff\x9f\x21\xfd\x7f\xfd" "\xff\x4e\xf4\xff\x4b\xdc\xff\x7f\x6f\xf0\x9c\xac\xf1\x82\xad\xbf\x3f" "\xfb\xff\xeb\xf4\xff\xe9\x35\xbd\xd6\xff\x8f\xb9\xff\x7d\x61\x26\xd5" "\xc8\xff\x00\x00\x00\x50\x09\x31\xf7\xbf\x3f\xcc\x44\xfe\x07\x00\x00" "\x80\xd2\x88\xb9\xff\x92\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe" "\x0d\x61\x26\x15\xc9\xff\x3e\xff\x5f\xff\x5f\xff\xbf\x53\xff\xdf\xe7" "\xff\x37\xd2\xff\xd7\xff\x3f\x13\xfa\xff\xfa\xff\x9d\xe8\xff\x97\xb8" "\xff\xef\xf3\xff\x7d\xfe\x3f\xf4\x60\xff\x3f\xe6\xfe\xff\x17\x66\x52" "\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\x07\xc2\x4c\xe4\x7f\x00\x00" "\x00\x28\x8d\x98\xfb\x2f\x0d\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee" "\xbf\x2c\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f" "\xff\xbf\x9b\xf4\xff\xf5\xff\x3b\xd1\xff\xd7\xff\xef\xe7\xf5\xeb\xff" "\xeb\xff\x53\xac\xd7\xfa\xff\x31\xf7\x7f\x30\xcc\xa4\x22\xf9\x1f\x00" "\x00\x00\xaa\x20\xe6\xfe\xcb\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98" "\xfb\xaf\x08\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xbf\x32\xcc\xa4" "\x22\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\x9b\xf4" "\xff\xf5\xff\x3b\xd1\xff\xd7\xff\xef\xe7\xf5\xeb\xff\xeb\xff\x53\xac" "\xd7\xfa\xff\x31\xf7\x5f\x15\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10" "\x73\xff\xd5\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x1f\x0a\x33" "\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xdf\x18\x66\x52\x91\xfc\xaf\xff" "\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x4d\xfd\xd5\xff\x1f\x5c" "\xf1\x14\xfd\xff\x3a\xfd\xff\x66\xfa\xff\xfa\xff\xe7\xac\xff\x9f\xbf" "\x14\xd7\xff\xa7\x84\x7a\xad\xff\x1f\x73\xff\x87\xc3\x4c\x2a\x92\xff" "\x01\x00\x00\xa0\x0a\x62\xee\xbf\x26\xcc\x44\xfe\x07\x00\x00\x80\xd2" "\x88\xb9\xff\xda\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x4d\x61" "\x26\x15\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xbd\xdc\xff\xaf\xdf\xd2\x6a" "\xf6\xff\x5f\xfb\x8b\xd6\xfd\xa9\xff\xaf\xff\xdf\x8e\xcf\xff\xd7\xff" "\xcf\xf4\xff\xcf\xd8\x85\xee\xcf\xf7\xfb\xfa\x7d\xfe\xbf\xfe\x3f\xc5" "\x7a\xad\xff\x1f\x73\xff\xe6\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82" "\x98\xfb\xb7\x84\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x5f\x17\x66" "\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\x7f\x7d\x98\x49\x45\xf2\xbf\xfe" "\xbf\xfe\xbf\xfe\x7f\x2f\xf7\xff\x7d\xfe\x7f\xa6\xff\xaf\xff\x5f\x40" "\xff\x5f\xff\x3f\xd3\xff\x3f\x63\x17\xba\x3f\xdf\xef\xeb\xd7\xff\x5f" "\x5d\xff\x7f\x4d\xd1\x05\x51\x6a\xe7\xb1\xff\x3f\x9c\xad\xa2\xff\x1f" "\x73\xff\x0d\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\xdf\x18" "\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\x7f\x53\x98\x89\xfc\x0f\x00" "\x00\x00\xa5\x11\x73\xff\xd6\x30\x93\x8a\xe4\x7f\xfd\x7f\xfd\x7f\xfd" "\x7f\xfd\x7f\xfd\x7f\xfd\xff\x6e\xd2\xff\xd7\xff\xef\x44\xff\x5f\xff" "\xbf\x9f\xd7\xaf\xff\xef\xf3\xff\x29\xd6\x6b\x9f\xff\x1f\x73\xff\xcd" "\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\xdf\x12\x66\x22\xff" "\x03\x00\x00\x40\x69\xc4\xdc\x7f\x6b\x98\x89\xfc\x0f\x00\x00\x00\xa5" "\x11\x73\xff\x58\x98\x49\x45\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf" "\xfe\xbf\xfe\x7f\x37\x95\xb5\xff\x9f\x9e\x47\xf5\xff\xf5\xff\xf5\xff" "\xf5\xff\xf5\xff\xf5\xff\x59\x51\xaf\xf5\xff\x63\xee\xbf\x2d\xcc\xa4" "\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\xdb\xc3\x4c\xe4\x7f\x00\x00" "\x00\x28\x8d\x98\xfb\xc7\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb" "\x27\xc2\x4c\x2a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5" "\xff\xbb\xa9\xac\xfd\x7f\x9f\xff\xaf\xff\x9f\xe9\xff\xeb\xff\xeb\xff" "\xeb\xff\x53\xa8\xd7\xfa\xff\x31\xf7\x4f\x86\x99\x54\x24\xff\x03\x00" "\x00\x40\x15\xc4\xdc\xbf\x2d\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9" "\x7f\x7b\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x8e\x30\x93\x8a" "\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\x6e\xd2\xff" "\xd7\xff\xef\x44\xff\x5f\xff\xbf\x9f\xd7\xaf\xff\xaf\xff\x4f\xb3\xc1" "\x36\xdf\xeb\xb5\xfe\x7f\xcc\xfd\x3b\xc3\x4c\x2a\x92\xff\x01\x00\x00" "\xa0\x0a\x62\xee\xdf\x15\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\x7f" "\x47\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x9d\x61\x26\x15\xc9" "\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xdd\xa4\xff\xaf" "\xff\xdf\x89\xfe\xbf\xfe\x7f\x3f\xaf\x5f\xff\x5f\xff\x9f\x62\xbd\xd6" "\xff\x8f\xb9\x7f\x77\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd" "\x1f\x09\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xbf\x2b\xcc\x44\xfe" "\x07\x00\x00\x80\xbe\xd2\xee\x73\x08\xa3\x98\xfb\x3f\x1a\x66\x52\x91" "\xfc\xaf\xff\x5f\xf6\xfe\xff\xe2\x5a\xfd\x7f\xfd\x7f\xfd\xff\xce\xeb" "\xd7\xff\xef\x2e\xfd\x7f\xfd\xff\x4e\xf4\xff\xf5\xff\xfb\x79\xfd\xfa" "\xff\xfa\xff\x14\xeb\xb5\xfe\x7f\xcc\xfd\x7b\xc2\x4c\x2a\x92\xff\x01" "\x00\x00\xa0\x0a\x62\xee\xbf\x3b\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88" "\xb9\xff\x9e\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xbd\x61\x26" "\x15\xc9\xff\xfa\xff\x65\xef\xff\xfb\xfc\x7f\xfd\x7f\xfd\xff\xa2\xf5" "\xeb\xff\x77\x97\xfe\xbf\xfe\x7f\x27\xfa\xff\xfd\xd9\xff\x0f\x2f\x5b" "\xf4\xff\x7b\xa8\xff\x9f\x1f\x43\xfa\xff\xf4\xa2\x5e\xeb\xff\xc7\xdc" "\x7f\x6f\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\x1f\x0b\x33" "\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xff\x78\x98\x89\xfc\x0f\x00\x00" "\x00\xa5\x11\x73\xff\x27\xc2\x4c\x2a\x92\xff\xf5\xff\xf5\xff\xf5\xff" "\xf5\xff\xf5\xff\xf5\xff\xbb\x49\xff\x5f\xff\xbf\x13\xfd\xff\xfe\xec" "\xff\x47\xfa\xff\xbd\xd3\xff\xf7\xf9\xff\xf4\xaa\x5e\xeb\xff\xc7\xdc" "\x7f\x5f\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\x9f\x0c\x33" "\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xff\xff\x61\x26\xf2\x3f\x00\x00" "\x00\x94\x46\xcc\xfd\xf7\x87\x99\x54\x24\xff\xeb\xff\xeb\xff\xeb\xff" "\xeb\xff\xeb\xff\xeb\xff\x77\x93\xfe\xbf\xfe\x7f\x27\xfa\xff\xfa\xff" "\xfd\xbc\x7e\xfd\x7f\xfd\x7f\x8a\xf5\x5a\xff\x3f\xe6\xfe\x5f\x09\x33" "\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff\x81\x30\x13\xf9\x1f\x00" "\x00\x00\x4a\x23\xe6\xfe\x4f\x85\x99\xc8\xff\x00\x00\x00\x50\x1a\x31" "\xf7\xff\x6a\x98\x49\x45\xf2\xbf\xfe\xff\xf9\xe9\xff\x0f\xa6\xcb\xd7" "\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x3f\x97\xf4\xff\xf5\xff\x33\xfd" "\xff\x33\x76\xa1\xfb\xf3\xfd\xbe\x7e\xfd\x7f\xfd\x7f\x8a\xf5\x5a\xff" "\x3f\xe6\xfe\x5f\x0b\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff" "\xd7\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x7f\x23\xcc\x44\xfe" "\x07\x00\x00\x80\xd2\x88\xb9\xff\xc1\x30\x93\x8a\xe4\x7f\xfd\x7f\x9f" "\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x4d\xfa\xff\xfa\xff\x9d\xe8" "\xff\xeb\xff\xf7\xf3\xfa\xf5\xff\xf5\xff\x29\xd6\x6b\xfd\xff\x98\xfb" "\x7f\x33\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\x87\xc2\x4c" "\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x3f\x1d\x66\x22\xff\x03\x00\x00" "\x40\x69\xc4\xdc\xff\x99\x30\x93\x8a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\xfd\xff\x6e\xd2\xff\xd7\xff\xef\x44\xff\x5f\xff\xbf" "\x9f\xd7\xaf\xff\xaf\xff\x4f\xb1\x5e\xeb\xff\xc7\xdc\xff\x70\x98\x49" "\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\x9f\x0d\x33\x91\xff\x01\x00" "\x00\xa0\x34\x62\xee\xff\xad\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6" "\xfe\xdf\x0e\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff" "\xd7\xff\xef\x26\xfd\xff\xe5\xfd\xff\xfc\x39\xec\x42\xf6\xff\xd7\xac" "\x66\x43\xfd\xff\x55\xd1\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xb3\x5e\xeb" "\xff\xc7\xdc\xff\xb9\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb" "\x7f\x27\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\x77\xc3\x4c\xe4" "\x7f\x00\x00\x00\x28\x8d\x98\xfb\x1f\x09\x33\xa9\x48\xfe\xd7\xff\xd7" "\xff\xd7\xff\xd7\xff\xd7\xff\xef\x76\xff\xff\x0d\xfd\x7f\xfd\x7f\x9f" "\xff\xbf\x02\xfd\x7f\xfd\xff\x7e\x5e\xbf\xfe\xbf\xfe\x3f\xc5\x7a\xad" "\xff\x1f\x73\xff\xe7\xc3\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee" "\xff\xbd\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x7d\x61\x26\xf2" "\x3f\x00\x00\x00\x94\x46\xcc\xfd\x8f\x86\x99\x54\x24\xff\xeb\xff\xeb" "\xff\x5f\xb0\xfe\x7f\x38\x8f\xfe\xff\xd2\xf9\xf4\xff\xc3\xfd\x5a\xba" "\xfe\xbf\xcf\xff\xd7\xff\xd7\xff\x5f\x89\xfe\xbf\xfe\x7f\x3f\xaf\x5f" "\xff\x5f\xff\x9f\x62\xbd\xd6\xff\x8f\xb9\x7f\x7f\x98\x49\x45\xf2\x3f" "\x00\x00\x00\x54\x41\xcc\xfd\x5f\x08\x33\x91\xff\x01\x00\x00\xa0\x34" "\x62\xee\x3f\x10\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\x3f\x15\x66" "\x52\x91\xfc\xaf\xff\xaf\xff\xef\xf3\xff\xf5\xff\xf5\xff\xf5\xff\xbb" "\x49\xff\x5f\xff\xbf\x13\xfd\x7f\xfd\xff\x7e\x5e\xbf\xfe\xbf\xfe\x3f" "\xc5\x7a\xad\xff\x1f\x73\xff\x74\x98\x49\x45\xf2\x3f\x00\x00\x00\x54" "\x41\xcc\xfd\x07\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x0f\x85" "\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x3f\x16\x66\x52\x91\xfc\xaf" "\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x4d\xfa\xff\xfa\xff" "\x9d\xe8\xff\xeb\xff\xf7\xf3\xfa\xf5\xff\xf5\xff\x29\xd6\x6b\xfd\xff" "\x98\xfb\x67\xc2\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\xff\x62" "\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x97\xc2\x4c\xe4\x7f\x00" "\x00\x00\x28\x8d\x98\xfb\x0f\x87\x99\x54\x24\xff\xeb\xff\xeb\xff\xeb" "\xff\xeb\xff\xb7\xeb\xff\xd7\x0f\x49\xfd\x7f\xfd\xff\xb3\xa7\xff\xaf" "\xff\xdf\x89\xfe\xbf\xfe\x7f\x3f\xaf\x5f\xff\x5f\xff\x9f\x62\xbd\xd6" "\xff\x8f\xb9\xff\x48\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd" "\x47\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x8f\x85\x99\xc8\xff" "\x00\x00\x00\x50\x1a\x31\xf7\x1f\x0f\x33\xa9\x48\xfe\xd7\xff\xd7\xff" "\xd7\xff\xd7\xff\xf7\xf9\xff\xfa\xff\xdd\xa4\xff\xaf\xff\xdf\x89\xfe" "\xbf\xfe\x7f\x3f\xaf\x5f\xff\x5f\xff\x9f\x62\xbd\xd6\xff\x8f\xb9\xff" "\xf7\xc3\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\x3f\x11\x66\x22" "\xff\x03\x00\x00\x40\x69\xc4\xdc\x3f\x1b\x66\x22\xff\x03\x00\x00\x40" "\x69\xc4\xdc\x3f\x17\x66\x52\x98\xff\xd7\x75\x71\x55\xe7\x8f\xfe\xbf" "\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x37\xe9\xff\xeb\xff\x77\xa2" "\xff\xaf\xff\xdf\xcf\xeb\xd7\xff\xd7\xff\xa7\x58\xaf\xf5\xff\x63\xee" "\x9f\x0f\x33\xf1\xff\xff\x01\x00\x00\xa0\x34\x62\xee\x7f\x3c\xcc\x44" "\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\x89\x30\x13\xf9\x1f\x00\x80\xff" "\x63\xef\xae\x77\x05\xbb\xaa\x38\x8e\xdf\x96\xb4\x25\x21\x84\x67\xe1" "\x09\x78\x04\x9e\x81\xb7\xc0\xdd\x8a\xbb\xbb\xbb\xbb\xbb\xbb\xbb\x3b" "\x14\x8a\x6b\x52\x02\x77\xad\x35\x65\x3a\xdd\x67\xec\x70\xf7\xd9\xeb" "\xf3\xf9\x67\x05\x3a\xed\xec\xcc\xfd\xeb\x97\xc9\x37\x07\x80\x65\xe4" "\xee\xbf\x67\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\xff\x69\xfa\xff\xd3" "\xce\x4f\xff\xaf\xff\xd7\xff\x5f\x12\xfd\xbf\xfe\xff\x44\xff\x7f\xd9" "\xce\xba\x9f\x3f\xfa\xfb\xf5\xff\xfa\x7f\xb6\xcd\xd6\xff\xe7\xee\xbf" "\x57\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xef\x1d\xb7\xd8\xff" "\x00\x00\x00\xb0\x8c\xdc\xfd\xf7\x89\x5b\xec\x7f\x00\x00\x00\x58\x46" "\xee\xfe\xfb\xc6\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\x9f\xa6\xff\xf7" "\xfd\xff\xfc\xb9\xea\xff\xf5\xff\x97\x40\xff\xaf\xff\x3f\xd1\xff\x5f" "\xb6\xb3\xee\xe7\x8f\xfe\x7e\xfd\xbf\xfe\x9f\x6d\xb3\xf5\xff\xb9\xfb" "\xef\x17\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xfb\xc7\x2d\xf6" "\x3f\x00\x00\x00\x2c\x23\x77\xff\x03\xe2\x16\xfb\x1f\x00\x00\x00\x96" "\x91\xbb\xff\x81\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa" "\x7f\xfd\xff\x9e\xf4\xff\xfa\xff\x11\xfd\xbf\xfe\xff\xc8\xef\xd7\xff" "\xeb\xff\xd9\x36\x5b\xff\x9f\xbb\xff\x41\x71\x4b\x93\xfd\x0f\x00\x00" "\x00\x1d\xe4\xee\x7f\x70\xdc\x62\xff\x03\x00\x00\xc0\x32\x72\xf7\x3f" "\x24\x6e\xb1\xff\x01\x00\x00\x60\x19\xb9\xfb\x1f\x1a\xb7\x34\xd9\xff" "\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xef\x49\xff\xaf\xff\x1f" "\xd1\xff\xeb\xff\x8f\xfc\x7e\xfd\xbf\xfe\x9f\x6d\xb3\xf5\xff\xb9\xfb" "\x1f\x16\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x87\xc7\x2d\xf6" "\x3f\x00\x00\x00\x2c\x23\x77\xff\x23\xe2\x16\xfb\x1f\x00\x00\x00\x96" "\x91\xbb\xff\x91\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa" "\x7f\xfd\xff\x9e\xf4\xff\xfa\xff\x11\xfd\xbf\xfe\xff\xc8\xef\xd7\xff" "\xeb\xff\xd9\xb6\x7b\xff\x7f\xf7\x1b\xff\x7b\x2f\xb6\xff\xcf\xdd\x7f" "\x63\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x1f\x15\xb7\xd8\xff" "\x00\x00\x00\xb0\x8c\xdc\xfd\x8f\x8e\x5b\xec\x7f\x00\x00\x00\x58\x46" "\xee\xfe\xc7\xc4\x2d\x4d\xf6\xbf\xfe\x5f\xff\x7f\xae\xff\xbf\xe5\x1a" "\xfd\xbf\xfe\x5f\xff\x7f\xee\xff\xd7\xff\x5f\x1d\xfa\x7f\xfd\xff\x88" "\xfe\x7f\xd6\xfe\xff\xe2\xfe\x24\xf4\xff\xfa\x7f\xfd\x3f\x5b\x76\xef" "\xff\x37\x7a\xff\xf3\xff\x77\xee\xfe\xc7\xc6\x2d\x4d\xf6\x3f\x00\x00" "\x00\x74\x90\xbb\xff\x71\x71\x8b\xfd\x0f\x00\x00\x00\xcb\xc8\xdd\xff" "\xf8\xb8\xc5\xfe\x07\x00\x00\x80\x65\xe4\xee\x7f\x42\xdc\xd2\x64\xff" "\xeb\xff\xf5\xff\xbe\xff\xaf\xff\xd7\xff\xeb\xff\xf7\xa4\xff\xd7\xff" "\x8f\xe8\xff\x67\xed\xff\x7d\xff\xff\x4a\xfb\xff\xbb\x5d\xc4\xfb\xf5" "\xff\x74\x30\x5b\xff\x9f\xbb\xff\x89\x71\x4b\x93\xfd\x0f\x00\x00\x00" "\x1d\xe4\xee\x7f\x52\xdc\x62\xff\x03\x00\x00\xc0\x32\x72\xf7\x3f\x39" "\x6e\xb1\xff\x01\x00\x00\x60\x19\xb9\xfb\x9f\x12\xb7\x34\xd9\xff\xfa" "\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xef\x49\xff\xaf\xff\x1f\xd1" "\xff\xeb\xff\x8f\xfc\x7e\xdf\xff\xd7\xff\xb3\x6d\xb6\xfe\x3f\x77\xff" "\x53\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xb4\xb8\xc5\xfe" "\x07\x00\x00\x80\x65\xe4\xee\x7f\x7a\xdc\x62\xff\x03\x00\x00\xc0\x32" "\x72\xf7\x3f\x23\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xff\x8a" "\xfa\xff\x3b\xe8\xff\xf5\xff\x63\xfa\x7f\xfd\xff\x88\xfe\x5f\xff\x7f" "\xe4\xf7\x5f\x62\xff\x7f\xc3\xf9\xff\xbe\xfe\x9f\x0e\x66\xeb\xff\x73" "\xf7\x3f\x33\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xcf\x8a\x5b" "\xec\x7f\x00\x00\x00\x58\x46\xee\xfe\x67\xc7\x2d\xf6\x3f\x00\x00\x00" "\x2c\x23\x77\xff\x73\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff" "\x7d\xff\x5f\xff\xbf\x27\xfd\xff\x72\xfd\xff\x35\xfa\xff\x73\xf4\xff" "\xfa\x7f\xdf\xff\xd7\xff\x33\x36\x5b\xff\x9f\xbb\xff\xb9\x71\x4b\x93" "\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x5e\xdc\x62\xff\x03\x00\x00\xc0" "\x32\x72\xf7\x3f\x3f\x6e\xb1\xff\x01\x00\x00\x60\x19\xb9\xfb\x5f\x10" "\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xef\x49" "\xff\xbf\x5c\xff\xef\xfb\xff\xb7\xa2\xff\xd7\xff\xeb\xff\xf5\xff\x8c" "\xcd\xd6\xff\xe7\xee\x7f\x61\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9" "\xfb\x5f\x14\xb7\xd8\xff\x00\x00\x00\xb0\x8c\xdc\xfd\x2f\x8e\x5b\xec" "\x7f\x00\x00\x00\x58\x46\xee\xfe\x97\xc4\x2d\x4d\xf6\xff\x94\xfd\xff" "\x75\xfa\xff\x63\xf4\xff\xd7\x9f\x9c\x9c\xe8\xff\xf5\xff\xfa\x7f\xfd" "\xff\x98\xfe\x5f\xff\x3f\xa2\xff\xbf\x70\xff\x7f\xc7\xdb\xf9\xfd\xf4" "\xff\x73\xbd\x5f\xff\xaf\xff\x67\xdb\x6c\xfd\x7f\xee\xfe\x97\xc6\x2d" "\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x65\x71\x8b\xfd\x0f\x00\x00" "\x00\xcb\xc8\xdd\xff\xf2\xb8\xc5\xfe\x07\x00\x00\x80\x65\xe4\xee\x7f" "\x45\xdc\xd2\x64\xff\xdf\x5e\xff\x7f\xf3\x9d\x4e\xff\xb9\xef\xff\x5f" "\x9c\x9e\xfd\xbf\xef\xff\xeb\xff\xff\xf7\x3d\xfa\x7f\xfd\xff\x85\xe8" "\xff\xf5\xff\x23\xfa\x7f\xdf\xff\x3f\xf2\xfb\xf5\xff\xfa\x7f\xb6\xcd" "\xd6\xff\xe7\xee\x7f\x65\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb" "\x5f\x15\xb7\xd8\xff\x00\x00\x00\xb0\x8c\xdc\xfd\xaf\x8e\x5b\xec\x7f" "\x00\x00\x00\x58\x46\xee\xfe\xd7\xc4\x2d\x4d\xf6\xff\x94\xdf\xff\xd7" "\xff\xeb\xff\xf5\xff\xf5\xdf\xd1\xff\xeb\xff\xf5\xff\x63\xfa\x7f\xfd" "\xff\x89\xfe\xff\xb2\x9d\x75\x3f\x7f\xf4\xf7\xeb\xff\xf5\xff\x6c\x9b" "\xad\xff\xcf\xdd\xff\xda\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7" "\xbf\x2e\x6e\xb1\xff\x01\x00\x00\x60\x19\xb9\xfb\x5f\x1f\xb7\xd8\xff" "\x00\x00\x00\xb0\x8c\xdc\xfd\x6f\x88\x5b\x9a\xec\x7f\xfd\xbf\xfe\xff" "\xcc\xfb\xff\x6b\xf5\xff\x49\xff\x1f\x3f\x57\xfd\xbf\xfe\xff\x12\xe8" "\xff\xf5\xff\x27\xfa\xff\xcb\x76\xd6\xfd\xfc\xd1\xdf\xaf\xff\xd7\xff" "\xb3\x6d\xb6\xfe\x3f\x77\xff\x1b\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a" "\xc8\xdd\xff\xa6\xb8\xc5\xfe\x07\x00\x00\x80\x65\xe4\xee\x7f\x73\xdc" "\x62\xff\x03\x00\x00\xc0\x32\x72\xf7\xbf\x25\x6e\x69\xb2\xff\xf5\xff" "\xfa\xff\x33\xef\xff\x7d\xff\xbf\xe8\xff\xe3\xe7\xba\x43\xff\xff\x9f" "\x3f\x43\xfd\xff\xd9\xd0\xff\xeb\xff\x47\xf4\xff\xfa\xff\x23\xbf\x5f" "\xff\xaf\xff\x67\xdb\x6c\xfd\x7f\xee\xfe\xb7\xc6\x2d\x4d\xf6\x3f\x00" "\x00\x00\x74\x90\xbb\xff\x6d\x71\x8b\xfd\x0f\x00\x00\x00\xcb\xc8\xdd" "\xff\xf6\xb8\xc5\xfe\x07\x00\x00\x80\x65\xe4\xee\x7f\x47\xdc\xd2\x64" "\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\x7f\x87\xfe\x7f\xf4\x7e\xfd\xff\xbe" "\xf4\xff\xfa\xff\x11\xfd\xbf\xfe\xff\xc8\xef\xd7\xff\xeb\xff\xd9\x36" "\x5b\xff\x9f\xbb\xff\x9d\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee" "\x7f\x57\xdc\x62\xff\x03\x00\x00\xc0\x32\x72\xf7\xbf\x3b\x6e\xb1\xff" "\x01\x00\x00\x60\x19\xb9\xfb\xdf\x13\xb7\x34\xd9\xff\xfa\xff\xa3\xf7" "\xff\xf7\xb8\x29\x5e\xa0\xff\xd7\xff\xeb\xff\xf5\xff\x53\xd2\xff\xeb" "\xff\x47\xf4\xff\xfa\xff\x23\xbf\x5f\xff\xaf\xff\x67\xdb\x6c\xfd\x7f" "\xee\xfe\xf7\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x7d\x71" "\x8b\xfd\x0f\x00\x00\x00\xcb\xc8\xdd\xff\xfe\xb8\xc5\xfe\x07\x00\x00" "\x80\x65\xe4\xee\xff\x40\xdc\xd2\x64\xff\xf7\xe8\xff\xaf\xbb\xcd\x2f" "\x5b\xa7\xff\xf7\xfd\x7f\xfd\xbf\xfe\x5f\xff\x3f\x37\xfd\xbf\xfe\x7f" "\x44\xff\xaf\xff\x3f\xf2\xfb\xf5\xff\xfa\x7f\xb6\xcd\xd6\xff\xe7\xee" "\xff\x60\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x3f\x14\xb7\xd8" "\xff\x00\x00\x00\xb0\x8c\xdc\xfd\x1f\x8e\x5b\xec\x7f\x00\x00\x00\x58" "\x46\xee\xfe\x8f\xc4\x2d\x4d\xf6\x7f\x8f\xfe\xff\xb6\xf4\xff\xa7\xae" "\x7a\xff\x7f\xcb\x5d\xf4\xff\xfa\xff\xa2\xff\xd7\xff\x9f\xe8\xff\xf5" "\xff\x1b\xf4\xff\xfa\xff\x23\xbf\x5f\xff\xaf\xff\x67\xdb\x6c\xfd\x7f" "\xee\xfe\x8f\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x63\x71" "\x8b\xfd\x0f\x00\x00\x00\xcb\xc8\xdd\xff\xf1\xb8\xc5\xfe\x07\x00\x00" "\x80\x65\xe4\xee\xff\x44\xdc\x70\xd7\x3b\x9f\xdd\x93\xfe\xaf\xf4\xff" "\xfa\x7f\xdf\xff\xd7\xff\xeb\xff\xf5\xff\x7b\xd2\xff\xeb\xff\x47\xf4" "\xff\xfa\xff\x23\xbf\x5f\xff\xaf\xff\x67\xdb\x6c\xfd\x7f\xee\xfe\x4f" "\xc6\x2d\xfe\xfe\x1f\x00\x00\x00\x96\x91\xbb\xff\x53\x71\x8b\xfd\x0f" "\x00\x00\x00\xcb\xc8\xdd\xff\xe9\xb8\xc5\xfe\x07\x00\x00\x80\x65\xe4" "\xee\xff\x4c\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\xff\x63\xf7\xff\xd7" "\xea\xff\xf5\xff\x93\xd3\xff\xeb\xff\x47\xf4\xff\xfa\xff\x23\xbf\x5f" "\xff\xaf\xff\x67\xdb\x6c\xfd\x7f\xee\xfe\xcf\xc6\x2d\x4d\xf6\x3f\x00" "\x00\x00\x74\x90\xbb\xff\x73\x71\x8b\xfd\x0f\x00\x00\x00\xcb\xc8\xdd" "\xff\xf9\xb8\xc5\xfe\x07\x00\x00\x80\x65\xe4\xee\xff\x42\xdc\xd2\x64" "\xff\xeb\xff\xf5\xff\xfa\xff\x63\xf7\xff\xbe\xff\xaf\xff\x9f\x9d\xfe" "\x5f\xff\x3f\xa2\xff\xd7\xff\x1f\xf9\xfd\xfa\x7f\xfd\x3f\xdb\x66\xeb" "\xff\x73\xf7\x7f\x31\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x5f" "\x8a\x5b\xec\x7f\x00\x00\x00\x58\x46\xee\xfe\x2f\xc7\x2d\xf6\x3f\x00" "\x00\x00\x2c\x23\x77\xff\x57\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff" "\xeb\xff\xf5\xff\xfa\xff\x3d\xe9\xff\xf5\xff\x23\xfa\x7f\xfd\xff\x91" "\xdf\xaf\xff\xd7\xff\xb3\x6d\xb6\xfe\x3f\x77\xff\x57\xe3\x96\x26\xfb" "\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xb5\xb8\xc5\xfe\x07\x00\x00\x80\x65" "\xe4\xee\xff\x7a\xdc\x62\xff\x03\x00\x00\xc0\x32\x72\xf7\x7f\x23\x6e" "\x69\xb2\xff\x57\xee\xff\x47\xbf\x4c\xff\x7f\x4a\xff\xaf\xff\x3f\xd1" "\xff\xeb\xff\x77\xa6\xff\xd7\xff\x8f\xe8\xff\xf5\xff\x47\x7e\xbf\xfe" "\x5f\xff\xcf\xb6\xd9\xfa\xff\xdc\xfd\xdf\x8c\x5b\x9a\xec\x7f\x00\x00" "\x00\xe8\x20\x77\xff\xb7\xe2\x16\xfb\x1f\x00\x00\x00\x96\x91\xbb\xff" "\xdb\x71\x8b\xfd\x0f\x00\x00\x00\xcb\xc8\xdd\xff\x9d\xb8\xa5\xc9\xfe" "\x5f\xb9\xff\x1f\xd1\xff\x9f\xd2\xff\xeb\xff\x4f\xf4\xff\xfa\xff\x9d" "\xe9\xff\xf5\xff\x23\xfa\x7f\xfd\xff\x91\xdf\xaf\xff\xd7\xff\xb3\x6d" "\xb6\xfe\x3f\x77\xff\x77\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd" "\xff\xbd\xb8\xc5\xfe\x07\x00\x00\x80\x65\xe4\xee\xff\x7e\xdc\x62\xff" "\x03\x00\x00\xc0\x32\x72\xf7\xff\x20\x6e\x69\xb2\xff\xf5\xff\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\xaf\xff\xdf\x93\xfe\x5f\xff\x3f\xa2\xff\xd7\xff" "\x1f\xf9\xfd\xfa\x7f\xfd\x3f\xdb\x66\xeb\xff\x73\xf7\xff\x30\x6e\x69" "\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x3f\x8a\x5b\xec\x7f\x00\x00\x00" "\x58\x46\xee\xfe\x1f\xc7\x2d\xf6\x3f\x00\x00\x00\x2c\x23\x77\xff\x4f" "\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x3d" "\xe9\xff\xf5\xff\x23\xfa\x7f\xfd\xff\x91\xdf\xaf\xff\xd7\xff\xb3\x6d" "\xb6\xfe\x3f\x77\xff\x4f\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd" "\xff\xb3\xb8\xc5\xfe\x07\x00\x00\x80\x65\xe4\xee\xff\x79\xdc\x62\xff" "\x03\x00\x00\xc0\x32\x72\xf7\xff\x22\x6e\x69\xb2\xff\xf5\xff\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\xaf\xff\xdf\x93\xfe\x5f\xff\x3f\xa2\xff\xd7\xff" "\x1f\xf9\xfd\xfa\x7f\xfd\x3f\xdb\x66\xeb\xff\x73\xf7\xff\x32\x6e\x69" "\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xbf\x8a\x5b\xec\x7f\x00\x00\x00" "\x58\x46\xee\xfe\x5f\xc7\x2d\xf6\x3f\x00\x00\x00\x2c\x23\x77\xff\x6f" "\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x1b\xf6\xff\xd7\xdf" "\xfa\xf7\xd3\xff\xef\x4b\xff\xaf\xff\x1f\xd1\xff\xeb\xff\x8f\xfc\x7e" "\xfd\xbf\xfe\x9f\x6d\x57\xad\xff\xcf\x5f\x70\x85\xfd\x7f\xee\xfe\x9b" "\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xdb\xb8\xc5\xfe\x07" "\x00\x00\x80\x65\xe4\xee\xff\x5d\xdc\x62\xff\x03\x00\x00\xc0\x32\x72" "\xf7\xdf\x1c\xb7\x34\xd9\xff\xfa\x7f\xfd\xff\x92\xfd\xff\x0d\xfa\x7f" "\xfd\xbf\xef\xff\xcf\x42\xff\xaf\xff\x1f\xd1\xff\xeb\xff\x8f\xfc\x7e" "\xfd\xbf\xfe\x9f\x6d\xb3\x7d\xff\x3f\x77\xff\xef\xe3\x96\x26\xfb\x1f" "\x00\x00\x00\x3a\xc8\xdd\xff\x87\xb8\xc5\xfe\x07\x00\x00\x80\x65\xe4" "\xee\xff\x63\xdc\x62\xff\x03\x00\x00\xc0\x32\x72\xf7\xff\x29\x6e\x69" "\xb2\xff\xf5\xff\xfa\xff\x25\xfb\x7f\xdf\xff\xd7\xff\xeb\xff\xa7\xa1" "\xff\xd7\xff\x8f\xe8\xff\xf5\xff\x47\x7e\xbf\xfe\x5f\xff\xcf\xb6\xd9" "\xfa\xff\xdc\xfd\x7f\x8e\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff" "\x5f\xe2\x16\xfb\x1f\x00\x00\x00\x96\x91\xbb\xff\xaf\x71\x8b\xfd\x0f" "\x00\x00\x00\xcb\xc8\xdd\xff\xb7\xb8\xe5\xc2\xfb\xff\xfc\x6c\xf4\xf0" "\xf4\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xdf\x93\xfe\x5f\xff\x3f" "\xa2\xff\xd7\xff\x1f\xf9\xfd\xfa\x7f\xfd\x3f\xdb\x66\xeb\xff\x73\xf7" "\xff\x3d\x6e\xf1\xf7\xff\x00\x00\x00\xb0\x8c\xdc\xfd\xff\x88\x5b\xec" "\x7f\x00\x00\x00\x58\x46\xee\xfe\x7f\xc6\x2d\xf6\x3f\x00\x00\x00\x2c" "\x23\x77\xff\xbf\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5" "\xff\xfa\xff\x3d\xe9\xff\xf5\xff\x23\xfa\x7f\xfd\xff\x91\xdf\xaf\xff" "\xd7\xff\xb3\x6d\xb6\xfe\x3f\x77\xff\xbf\x03\x00\x00\xff\xff\x9f\xa0" "\x34\xe7", 24210)); NONFAILING(syz_mount_image(/*fs=*/0x200000000000, /*dir=*/0x200000005d40, /*flags=MS_POSIXACL|MS_REC|MS_MANDLOCK*/ 0x14040, /*opts=*/0x200000001e40, /*chdir=*/-1, /*size=*/0x5e92, /*img=*/0x200000018400)); break; case 1: // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0xc4042 (4 bytes) // mode: open_mode = 0xbd (2 bytes) // ] // returns fd NONFAILING(memcpy((void*)0x200000000300, "./file1\000", 8)); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000300ul, /*flags=O_NOATIME|O_DIRECT|O_CREAT|O_CLOEXEC|0x2*/ 0xc4042, /*mode=S_IXOTH|S_IROTH|S_IXGRP|S_IWGRP|S_IRGRP|S_IWUSR*/ 0xbd); if (res != -1) r[0] = res; break; case 2: // openat$nullb arguments: [ // fd: const = 0xffffffffffffff9c (8 bytes) // file: ptr[in, buffer] { // buffer: {2f 64 65 76 2f 6e 75 6c 6c 62 30 00} (length 0xc) // } // flags: open_flags = 0x0 (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd_block NONFAILING(memcpy((void*)0x200000000040, "/dev/nullb0\000", 12)); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x200000000040ul, /*flags=*/0, /*mode=*/0); if (res != -1) r[1] = res; break; case 3: // sendfile arguments: [ // fdout: fd (resource) // fdin: fd (resource) // off: nil // count: intptr = 0xfffe82 (8 bytes) // ] syscall(__NR_sendfile, /*fdout=*/r[0], /*fdin=*/r[1], /*off=*/0ul, /*count=*/0xfffe82ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; if ((reason = setup_802154())) printf("the reproducer may not work as expected: 802154 injection setup " "failed: %s\n", reason); install_segv_handler(); use_temporary_dir(); loop(); return 0; }