// 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 #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } 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 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_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; #define MAX_FDS 30 //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } static void setup_gadgetfs(); static void setup_binderfs(); static void setup_fusectl(); static void sandbox_common_mount_tmpfs(void) { write_file("/proc/sys/fs/mount-max", "100000"); if (mkdir("./syz-tmp", 0777)) exit(1); if (mount("", "./syz-tmp", "tmpfs", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot", 0777)) exit(1); if (mkdir("./syz-tmp/newroot/dev", 0700)) exit(1); unsigned bind_mount_flags = MS_BIND | MS_REC | MS_PRIVATE; if (mount("/dev", "./syz-tmp/newroot/dev", NULL, bind_mount_flags, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/proc", 0700)) exit(1); if (mount("syz-proc", "./syz-tmp/newroot/proc", "proc", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/selinux", 0700)) exit(1); const char* selinux_path = "./syz-tmp/newroot/selinux"; if (mount("/selinux", selinux_path, NULL, bind_mount_flags, NULL)) { if (errno != ENOENT) exit(1); if (mount("/sys/fs/selinux", selinux_path, NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); } if (mkdir("./syz-tmp/newroot/sys", 0700)) exit(1); if (mount("/sys", "./syz-tmp/newroot/sys", 0, bind_mount_flags, NULL)) exit(1); if (mount("/sys/kernel/debug", "./syz-tmp/newroot/sys/kernel/debug", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/sys/fs/smackfs", "./syz-tmp/newroot/sys/fs/smackfs", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/proc/sys/fs/binfmt_misc", "./syz-tmp/newroot/proc/sys/fs/binfmt_misc", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mkdir("./syz-tmp/newroot/syz-inputs", 0700)) exit(1); if (mount("/syz-inputs", "./syz-tmp/newroot/syz-inputs", NULL, bind_mount_flags | MS_RDONLY, NULL) && errno != ENOENT) exit(1); if (mkdir("./syz-tmp/pivot", 0777)) exit(1); if (syscall(SYS_pivot_root, "./syz-tmp", "./syz-tmp/pivot")) { if (chdir("./syz-tmp")) exit(1); } else { if (chdir("/")) exit(1); if (umount2("./pivot", MNT_DETACH)) exit(1); } if (chroot("./newroot")) exit(1); if (chdir("/")) exit(1); setup_gadgetfs(); setup_binderfs(); setup_fusectl(); } static void setup_gadgetfs() { if (mkdir("/dev/gadgetfs", 0777)) { } if (mount("gadgetfs", "/dev/gadgetfs", "gadgetfs", 0, NULL)) { } } static void setup_fusectl() { if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) { } } static void setup_binderfs() { if (mkdir("/dev/binderfs", 0777)) { } if (mount("binder", "/dev/binderfs", "binder", 0, NULL)) { } } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); if (getppid() == 1) exit(1); struct rlimit rlim; rlim.rlim_cur = rlim.rlim_max = (200 << 20); setrlimit(RLIMIT_AS, &rlim); rlim.rlim_cur = rlim.rlim_max = 32 << 20; setrlimit(RLIMIT_MEMLOCK, &rlim); rlim.rlim_cur = rlim.rlim_max = 136 << 20; setrlimit(RLIMIT_FSIZE, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_STACK, &rlim); rlim.rlim_cur = rlim.rlim_max = 128 << 20; setrlimit(RLIMIT_CORE, &rlim); rlim.rlim_cur = rlim.rlim_max = 256; setrlimit(RLIMIT_NOFILE, &rlim); if (unshare(CLONE_NEWNS)) { } if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL)) { } if (unshare(CLONE_NEWIPC)) { } if (unshare(0x02000000)) { } if (unshare(CLONE_NEWUTS)) { } if (unshare(CLONE_SYSVSEM)) { } typedef struct { const char* name; const char* value; } sysctl_t; static const sysctl_t sysctls[] = { {"/proc/sys/kernel/shmmax", "16777216"}, {"/proc/sys/kernel/shmall", "536870912"}, {"/proc/sys/kernel/shmmni", "1024"}, {"/proc/sys/kernel/msgmax", "8192"}, {"/proc/sys/kernel/msgmni", "1024"}, {"/proc/sys/kernel/msgmnb", "1024"}, {"/proc/sys/kernel/sem", "1024 1048576 500 1024"}, }; unsigned i; for (i = 0; i < sizeof(sysctls) / sizeof(sysctls[0]); i++) write_file(sysctls[i].name, sysctls[i].value); } static int wait_for_loop(int pid) { if (pid < 0) exit(1); int status = 0; while (waitpid(-1, &status, __WALL) != pid) { } return WEXITSTATUS(status); } static void drop_caps(void) { struct __user_cap_header_struct cap_hdr = {}; struct __user_cap_data_struct cap_data[2] = {}; cap_hdr.version = _LINUX_CAPABILITY_VERSION_3; cap_hdr.pid = getpid(); if (syscall(SYS_capget, &cap_hdr, &cap_data)) exit(1); const int drop = (1 << CAP_SYS_PTRACE) | (1 << CAP_SYS_NICE); cap_data[0].effective &= ~drop; cap_data[0].permitted &= ~drop; cap_data[0].inheritable &= ~drop; if (syscall(SYS_capset, &cap_hdr, &cap_data)) exit(1); } static int do_sandbox_none(void) { if (unshare(CLONE_NEWPID)) { } int pid = fork(); if (pid != 0) return wait_for_loop(pid); sandbox_common(); drop_caps(); if (unshare(CLONE_NEWNET)) { } write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535"); sandbox_common_mount_tmpfs(); loop(); exit(1); } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void close_fds() { for (int fd = 3; fd < MAX_FDS; fd++) close(fd); } static void setup_sysctl() { int cad_pid = fork(); if (cad_pid < 0) exit(1); if (cad_pid == 0) { for (;;) sleep(100); } char tmppid[32]; snprintf(tmppid, sizeof(tmppid), "%d", cad_pid); struct { const char* name; const char* data; } files[] = { {"/sys/kernel/debug/x86/nmi_longest_ns", "10000000000"}, {"/proc/sys/kernel/hung_task_check_interval_secs", "20"}, {"/proc/sys/net/core/bpf_jit_kallsyms", "1"}, {"/proc/sys/net/core/bpf_jit_harden", "0"}, {"/proc/sys/kernel/kptr_restrict", "0"}, {"/proc/sys/kernel/softlockup_all_cpu_backtrace", "1"}, {"/proc/sys/fs/mount-max", "100"}, {"/proc/sys/vm/oom_dump_tasks", "0"}, {"/proc/sys/debug/exception-trace", "0"}, {"/proc/sys/kernel/printk", "7 4 1 3"}, {"/proc/sys/kernel/keys/gc_delay", "1"}, {"/proc/sys/vm/oom_kill_allocating_task", "1"}, {"/proc/sys/kernel/ctrl-alt-del", "0"}, {"/proc/sys/kernel/cad_pid", tmppid}, }; for (size_t i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].name, files[i].data)) { } } kill(cad_pid, SIGKILL); while (waitpid(cad_pid, NULL, 0) != cad_pid) ; } #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; } #define USLEEP_FORKED_CHILD (3 * 50 * 1000) static long handle_clone_ret(long ret) { if (ret != 0) { return ret; } usleep(USLEEP_FORKED_CHILD); syscall(__NR_exit, 0); while (1) { } } static long syz_clone(volatile long flags, volatile long stack, volatile long stack_len, volatile long ptid, volatile long ctid, volatile long tls) { long sp = (stack + stack_len) & ~15; long ret = (long)syscall(__NR_clone, flags & ~CLONE_VM, sp, ptid, ctid, tls); return handle_clone_ret(ret); } 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); close_fds(); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } void execute_call(int call) { switch (call) { case 0: memcpy((void*)0x200000000700, "jfs\000", 4); memcpy((void*)0x200000000000, "./bus\000", 6); memcpy( (void*)0x2000000076c0, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xdf\xec\xae\xd7\x2f\xa5" "\xad\xd5\x43\x55\x2a\x84\xdc\x94\xb7\x52\x9a\xd7\x12\x02\x05\x9a\x1e" "\xe0\xc0\x85\x03\xca\x15\x25\x72\xdd\x2a\xc2\x05\x94\x04\x94\x56\x11" "\x71\xe5\x0b\x07\xfe\x08\x10\x12\x47\x84\x38\x72\xe2\x0f\xe8\x81\x2b" "\x37\xfe\x00\x22\x25\x48\xa0\x9e\x18\x34\xde\xe7\x89\x67\x27\xbb\x59" "\x07\xc7\x3b\x6b\xcf\xe7\x23\x39\xb3\xbf\x79\x66\xd6\xcf\xe4\xbb\xb3" "\x2f\x9e\x99\x7d\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x88\x1f\x7c\xff\x47\xe7\x8a\x88\xb8\xfa\xcb\x34\x63\x3d\xe2" "\x33\xd1\x8f\xe8\x45\xac\x56\xf5\x46\x44\xac\x6e\xac\xe7\xe5\x07\x11" "\xf1\x52\xec\x35\xc7\x8b\x11\xb1\xb4\x1c\x51\xad\xbf\xf7\xcf\xf3\x11" "\x6f\x46\xc4\x27\xcf\x45\xdc\x7f\x70\x67\xb3\x9a\x7d\xfe\x80\xfd\xf8" "\xde\x9f\xfe\xfe\xfb\x1f\x3f\xf3\xc3\xbf\xfd\x71\xe9\xcc\x7f\xfe\x7c" "\xab\xff\xd6\xb4\xe5\x6e\xdf\xfe\xcd\xbf\xff\x72\xf7\x70\xdb\x0c\x00" "\x00\x00\x5d\x53\x96\x65\x59\xa4\x8f\xf9\x2f\xa7\xcf\xf7\xbd\xb6\x3b" "\x05\x00\xcc\x45\x7e\xfd\x2f\x93\x3c\xff\x38\xd4\xc3\xda\x76\x2c\x42" "\x7f\xd4\xea\xbd\x62\xb8\x3f\x63\x21\xfa\xa3\x9e\x63\xbd\xbd\x52\x9f" "\xd3\x7e\x7f\xd4\xea\x47\xeb\xba\x72\xb2\xbb\xf5\x22\x22\x76\xea\xeb" "\x54\xef\x19\x1c\x8e\x07\x80\x63\x66\x27\x3e\x6d\xbb\x0b\xb4\x48\xfe" "\x9d\x36\x88\x88\x67\xda\xee\x04\xb0\xd0\x8a\xb6\x3b\xc0\x91\xb8\xff" "\xe0\xce\x66\x91\xf2\x2d\xea\xaf\x07\x1b\xa3\xf6\x7c\x2e\xc8\x58\xfe" "\x3b\xc5\xc3\xeb\x3b\xa6\x4d\x67\x69\x9e\x63\x32\xaf\xc7\xd7\x6e\xf4" "\xe3\x85\x29\xfd\x59\x9d\x53\x1f\x16\x49\xce\xbf\xd7\xcc\xff\xea\xa8" "\x3d\x1f\x5b\x3b\xea\xfc\xe7\x65\x5a\xfe\xc3\xd1\xa5\x4f\x9d\x93\xf3" "\xef\x37\xf3\x6f\x38\x39\xf9\xf7\x26\xe6\xdf\x55\x39\xff\xc1\x13\xe5" "\xdf\x97\x3f\x00\x00\x00\x00\x00\x2c\xb0\xfc\xf7\xff\xf5\x96\x8f\xff" "\x2e\x1f\x7e\x53\x0e\xe4\x71\xc7\x7f\x37\x0e\x76\x17\x97\x9f\x76\x9f" "\x00\x00\x00\x00\x00\x00\x00\xe0\xb0\x0e\x3b\xfe\xdf\x43\xc6\xff\x03" "\x00\x00\x80\x85\x55\x7d\x56\xaf\xfc\xf6\xb9\xfd\x79\xd3\xbe\x8b\xad" "\x9a\x7f\xa5\x88\x78\xb6\xb1\x3c\xd0\x31\xe9\x62\x99\xb5\xb6\xfb\x01" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5d\x32\x18\x9d\xc3\x7b\xa5" "\x88\x58\x8a\x88\x67\xd7\xd6\xca\xb2\xac\x7e\xea\x9a\xf5\x93\x3a\xec" "\xfa\xc7\x5d\xd7\xb7\x1f\xba\xac\xed\x27\x79\x00\x00\x18\xf9\xe4\xb9" "\xc6\xb5\xfc\x45\xc4\x4a\x44\x5c\x49\xdf\xf5\xb7\xb4\xb6\xb6\x56\x96" "\x2b\xab\x6b\xe5\x5a\xb9\xba\x9c\xdf\xcf\x0e\x97\x57\xca\xd5\xda\xe7" "\xda\x3c\xad\xe6\x2d\x0f\x0f\xf0\x86\x78\x30\x2c\xab\x3b\x5b\xa9\xad" "\x57\x37\xeb\xf3\xf2\xac\xf6\xe6\xfd\x55\xbf\x6b\x58\xf6\x0f\xd0\xb1" "\xf9\x68\x31\x70\x00\x88\x88\xd1\xab\xd1\x7d\xaf\x48\x27\x4c\x59\x3e" "\x1f\x6d\xbf\xcb\xe1\x78\xb0\xff\x9f\x3c\xf6\x7f\x0e\xa2\xed\xc7\x29" "\x00\x00\x00\x70\xf4\xca\xb2\x2c\x8b\xf4\x75\xde\x2f\xa7\x63\xfe\xbd" "\xb6\x3b\x05\x00\xcc\x45\x7e\xfd\x6f\x1e\x17\x50\xab\xd5\x6a\xb5\x5a" "\x7d\xf2\xea\xba\x72\xb2\xbb\xf5\x22\x22\x76\xea\xeb\x54\xef\x19\x0c" "\xc7\x0f\x00\xc7\xcc\x4e\x7c\xda\x76\x17\x68\x91\xfc\x3b\x6d\x10\x11" "\x2f\xb5\xdd\x09\x60\xa1\x15\x6d\x77\x80\x23\x71\xff\xc1\x9d\xcd\x22" "\xe5\x5b\xd4\x5f\x0f\xd2\xf8\xee\xf9\x5c\x90\xb1\xfc\x77\x8a\xbd\xf5" "\xf2\xfa\x93\xa6\xb3\x34\xcf\x31\x99\xd7\xe3\x6b\x37\xfa\xf1\xc2\x94" "\xfe\xbc\x38\xa7\x3e\x2c\x92\x9c\x7f\xaf\x99\xff\xd5\x51\xfb\x30\x2d" "\x37\x96\x4f\x31\x3d\xf7\x03\xe6\x5f\x34\xfe\x8c\x38\x37\xd3\xf2\xaf" "\xb6\x73\xbd\x85\xfe\xb4\x2d\xe7\xdf\x6f\xe6\xdf\x70\xd4\xfb\xff\xbc" "\xec\x46\x6f\x62\xfe\x5d\x95\xf3\x1f\x3c\x51\xfe\x7d\xf9\x03\x00\x00" "\x00\x00\xc0\x02\xcb\x7f\xff\x5f\x77\xfc\x37\x6f\x32\x00\x00\x00\x00" "\x00\x00\x00\x1c\x3b\xf7\x1f\xdc\xd9\xcc\xd7\xbd\xe6\xe3\xff\x9f\x9b" "\xb0\x9c\xeb\x3f\x4f\xa6\x9c\x7f\x21\xff\x4e\xca\xf9\xf7\x1a\xf9\x7f" "\xa5\xb1\x5c\xbf\x76\xfb\xde\x3b\xfb\xf9\xff\xeb\xc1\x9d\xcd\x3f\xdc" "\xfa\xe7\x67\xf3\xf4\xa0\xf9\x2f\xe7\x1b\x45\x7a\x64\x15\xe9\x11\x51" "\xa4\xdf\x54\x0c\xd2\xf4\x30\x5b\xf7\xa8\xdd\xa5\xfe\x70\xb4\xad\xa3" "\x3b\xde\x88\x88\x72\xe9\xbd\xb8\x1e\xdb\xb1\x15\x67\xc7\x96\xed\xa5" "\xff\x8f\xfd\xf6\x73\x63\xed\x55\x4f\x97\xc6\xda\xcf\x8f\xb5\x0f\x1e" "\x69\xbf\x30\xd6\xbe\x94\xbe\x77\xa0\x5c\xcd\xed\xa7\x63\x33\x7e\x16" "\xdb\xf1\xee\x5e\x7b\xd5\xb6\x3c\x63\xfb\x57\x66\xb4\x97\x33\xda\x73" "\xfe\x7d\xfb\x7f\x27\xe5\xfc\x07\xb5\x9f\x2a\xff\xb5\xd4\x5e\x34\xa6" "\x95\x7b\x1f\xf7\x1e\xd9\xef\xeb\xd3\x49\xbf\xe7\xf2\xf5\xcf\xff\xfa" "\xec\xd1\x6f\xce\x4c\xbb\xd1\x7f\xb8\x6d\x75\xd5\xf6\x9d\x6a\xa1\x3f" "\x7b\xff\x27\xcf\x0c\xe3\x17\x37\xb7\x6e\x9c\xbe\x7d\xed\xd6\xad\x1b" "\xe7\x22\x4d\xc6\xe6\x9e\x8f\x34\x79\xca\x72\xfe\x4b\xe9\xe7\xe1\xf3" "\xff\xab\xa3\xf6\xfc\xbc\x5f\xdf\x5f\xef\x7d\x3c\x7c\xe2\xfc\x17\xc5" "\x6e\x0c\xa6\xe6\xff\x6a\xed\x76\xb5\xbd\xaf\xcd\xb9\x6f\x6d\xc8\xf9" "\x0f\xd3\x4f\xce\xff\xdd\xd4\x3e\x79\xff\x3f\xce\xf9\x4f\xdf\xff\x5f" "\x6f\xa1\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x38" "\x65\x59\xee\x5d\x22\x7a\x39\x22\x2e\xa6\xeb\x7f\xda\xba\x36\x13\x00" "\x98\xaf\xfc\xfa\x5f\x26\x79\xbe\x5a\xad\x56\xab\xd5\xea\x93\x57\xd7" "\x95\x93\xbd\x5d\x2f\x22\xe2\xaf\xf5\x75\xaa\xf7\x0c\xbf\x9a\x74\x67" "\x00\xc0\x22\xfb\x6f\x44\xfc\xa3\xed\x4e\xd0\x1a\xf9\x77\x58\xfe\xbe" "\xbf\xc1\xfe\x37\xf2\x02\x1d\x71\xf3\xc3\x8f\x7e\x72\x6d\x7b\x7b\xeb" "\xc6\xcd\x88\x95\xb6\x3b\x03\x00\x00\x00\x00\x00\x00\x00\xfc\x5f\xf2" "\xf8\x9f\x1b\xb5\xf1\x9f\xbf\x10\x11\xeb\x8d\xe5\xc6\xc6\x7f\x7d\x27" "\x36\x0e\x3b\xfe\xe7\x20\xdf\x78\x38\xc0\xe8\x53\x1e\xe8\x7b\x8a\xdd" "\xde\xb0\xdf\xab\x0d\x37\xfe\x4a\x3c\x7e\xfc\xef\x53\xf1\xf8\xf1\xbf" "\x07\x33\x7e\xdf\xd2\x8c\xf6\xe1\x8c\xf6\x59\x67\x65\xcd\x3a\x67\x63" "\xe2\x85\x1e\x35\x39\xff\x57\x6a\xe3\x9d\x57\xf9\xbf\xdc\x18\x7e\xbd" "\x0b\xe3\xbf\x36\xc7\xbc\xef\x82\x9c\xff\xa9\xda\xe3\xb9\xca\xff\xcb" "\x8d\xe5\xea\xf9\x97\xbf\x3b\xce\xf9\xf7\xc6\xf2\x3f\x73\xeb\x83\x9f" "\x9f\xb9\xf9\xe1\x47\x6f\x5c\xff\xe0\xda\xfb\x5b\xef\x6f\xfd\xf4\xc2" "\xb9\x73\x67\x2f\x5c\xbc\x78\xe9\xd2\xa5\x33\xef\x5d\xdf\xde\x3a\x3b" "\xfa\xb7\xc5\x1e\x1f\xad\x9c\x7f\x1e\xfb\x3a\xe7\x4f\x37\xe4\xfc\x73" "\xe6\xf2\xef\x96\x9c\xff\x17\x53\x2d\xff\x6e\xc9\xf9\x7f\x29\xd5\xf2" "\xef\x96\x9c\x7f\x7e\xbf\x27\xff\x6e\xc9\xf9\xe7\xcf\x3e\xf2\xef\x96" "\x9c\xff\x6b\xa9\x96\x7f\xb7\xe4\xfc\xbf\x9a\x6a\xf9\x77\x4b\xce\xff" "\xf5\x54\xcb\xbf\x5b\x72\xfe\x5f\x4b\xb5\xfc\xbb\x25\xe7\xff\x46\xaa" "\x0f\x96\x7f\xff\xc8\xfb\xc5\x7c\xe4\xfc\x4f\xa7\xda\xfe\xdf\x2d\x39" "\xff\x33\xa9\x96\x7f\xb7\xe4\xfc\xf3\x11\x2e\xf9\x77\x4b\xce\x3f\x9f" "\xd9\x20\xff\x6e\xc9\xf9\x9f\x4f\xb5\xfc\xbb\x25\xe7\x7f\x21\xd5\xf2" "\xef\x96\x9c\xff\x9b\xa9\x96\x7f\xb7\xe4\xfc\xbf\x9e\x6a\xf9\x77\x4b" "\xce\xff\x62\xaa\xe5\xdf\x2d\x39\xff\x6f\xa4\x5a\xfe\xdd\x92\xf3\xbf" "\x94\x6a\xf9\x77\x4b\xce\xff\x9b\xa9\x96\x7f\xb7\xe4\xfc\xbf\x95\x6a" "\xf9\x77\x4b\xce\xff\xad\x54\xcb\xbf\x5b\x72\xfe\xdf\x4e\xb5\xfc\xbb" "\x25\xe7\xff\x9d\x54\x4f\xc8\xdf\xc1\xfe\x13\x2c\xe7\xff\xdd\x54\xdb" "\xff\xbb\x25\xe7\xff\x76\xaa\xe5\xdf\x2d\xfb\xdf\xff\xef\x86\x1b\xc7" "\xe5\x46\x44\xec\x2c\x40\x37\x4e\xf4\x8d\xb6\x9f\x99\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x80\xa6\x39\x9d\xad\x0d\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\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\x8f\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\xde\x62\xe4\xaa\xef\x3b\x80\x9f\x5d\xef\xda\x6b\x13\x82\x13\x08" "\x35\xd4\x90\xb5\x71\x8c\x31\x0b\xbb\xbe\xe0\x4b\x5a\x17\x87\x10\x42" "\x21\x97\x72\x4b\x43\x2f\xd8\xae\x77\x6d\x36\xf1\x65\xf1\xda\x0d\x50" "\x24\x3b\x22\x69\x90\xe2\xa8\x51\x95\xb6\xbc\xb4\xb9\x08\xb5\xbc\x54" "\xb1\xaa\x3c\xa4\x15\x8d\x78\xe8\x45\x91\x2a\x85\xf6\x21\x7d\x89\x52" "\x55\xca\x03\xaa\x48\x44\x22\x55\x4a\xa3\x96\xad\xe6\xcc\xff\xff\xdf" "\x99\xd9\xb9\xec\xe2\xd9\xf5\xcc\x39\x9f\x8f\x84\x7f\xde\x9d\x33\x73" "\xce\x9c\xf9\xcf\xec\x7e\xd7\x7c\x77\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xe8\x19\x9b\x3e\x38\xf5\x85\x81\x2c" "\xcb\x2a\xff\xe5\x7f\xac\xcf\xb2\x77\x54\xfe\xbe\x76\x74\x7d\xfe\xb9" "\xf7\x5f\xe9\x23\x04\x00\x00\x00\x2e\xd7\xff\xe5\x7f\xbe\x79\x4d\xfa" "\xc4\xc1\x45\x5c\xa9\x66\x9b\x7f\xbe\xf9\x7b\xdf\x9a\x9b\x9b\x9b\xcb" "\x3e\xb9\xea\x4f\x86\xbf\x32\x37\x97\x2e\x18\xcd\xb2\xe1\x35\x59\x96" "\x5f\x16\x5d\xfa\xcf\xc7\x07\x6a\xb7\x09\x9e\xcf\x46\x06\x06\x6b\x3e" "\x1e\xec\xb0\xfb\x55\x1d\x2e\x1f\xea\x70\xf9\x70\x87\xcb\x57\x77\xb8" "\x7c\x4d\x87\xcb\x47\x3a\x5c\xbe\xe0\x04\x2c\xb0\xb6\xfa\xf3\x98\xfc" "\xc6\xb6\xe4\x7f\x5d\x5f\x3d\xa5\xd9\x75\xd9\x70\x7e\xd9\x96\x26\xd7" "\x7a\x7e\x60\xcd\xe0\x60\xfc\x59\x4e\x6e\x20\xbf\xce\xdc\xf0\xb1\x6c" "\x3a\x3b\x91\x4d\x65\x13\x75\xdb\x57\xb7\x1d\xc8\xb7\x7f\x65\x53\x65" "\x5f\xf7\x67\x71\x5f\x83\x35\xfb\xda\x58\x59\x21\x3f\x7d\xee\x68\x3c" "\x86\x81\x70\x8e\xb7\xd4\xed\x6b\xfe\x36\xa3\x1f\x7f\x20\x1b\xfd\xd9" "\x4f\x9f\x3b\xfa\x97\x67\xdf\xb8\xa1\xd9\xec\x78\x1a\xea\x6e\xaf\x7a" "\x9c\xdb\x36\x57\x8e\xf3\x73\xe1\x33\xd5\x63\x1d\xc8\xd6\xa4\x73\x12" "\x8f\x73\xb0\xe6\x38\x37\x36\x79\x4c\x56\xd5\x1d\xe7\x40\x7e\xbd\xca" "\xdf\x1b\x8f\xf3\xcd\x45\x1e\xe7\xaa\xf9\xc3\x5c\x51\x8d\x8f\xf9\x48" "\x36\x98\xff\xfd\xb5\xfc\x3c\x0d\xd5\xfe\x58\x2f\x9d\xa7\x8d\xe1\x73" "\x3f\xbf\x25\xcb\xb2\x0b\xf3\x87\xdd\xb8\xcd\x82\x7d\x65\x83\xd9\xba" "\xba\xcf\x0c\xce\x3f\x3e\x23\xd5\x15\x59\xb9\x8d\xca\x52\x7a\x77\x36" "\xb4\xa4\x75\xba\x69\x11\xeb\xb4\x32\x27\xb7\xd4\xaf\xd3\xc6\xe7\x44" "\x7c\xfc\x37\x85\xeb\x0d\xb5\x38\x86\xda\x87\xe9\xc7\x9f\x5d\xbd\xe0" "\x71\x5f\xea\x3a\x8d\x2a\xf7\xba\xd5\x73\xa5\x71\x0d\x76\xfb\xb9\xd2" "\x2b\x6b\x30\xae\x8b\xd7\xf2\x3b\xfd\x42\xd3\x35\xb8\x25\xdc\xff\xe7" "\xb6\xb6\x5e\x83\x4d\xd7\x4e\x93\x35\x98\xee\x77\xcd\x1a\xdc\x9c\xd6" "\xe0\xda\xe6\xc7\x3c\xb8\x7a\x55\x7e\xcc\xe9\x41\x18\xc8\xaf\x33\xbf" "\x06\x77\xd4\x6d\xbf\x2a\xdf\xd3\x40\x3e\x5f\xdf\xda\x7e\x0d\x8e\x9f" "\x3d\x39\x33\x3e\xfb\xcc\xb3\x77\x4c\x9f\x3c\x72\x7c\xea\xf8\xd4\xa9" "\x5d\x3b\x76\x4c\xec\xda\xb3\x67\xdf\xbe\x7d\xe3\xc7\xa6\x4f\x4c\x4d" "\x54\xff\x7c\x5b\xe7\xba\x1f\xac\xcb\x06\xd3\x73\x60\x73\x38\x77\xf1" "\x39\x70\x6b\xc3\xb6\xb5\x4b\x75\xee\xeb\xdd\x7b\x1e\x8e\xb4\x79\x1e" "\xae\x6f\xd8\xb6\xdb\xcf\xc3\xa1\xc6\x3b\x37\xb0\x32\x4f\xc8\x85\x6b" "\xba\xfa\xdc\x78\xb4\x72\xd2\x47\x2e\x0e\x66\x2d\x9e\x63\xf9\xe3\xb3" "\xfd\xf2\x9f\x87\xe9\x7e\xd7\x3c\x0f\x87\x6a\xbe\x16\x34\xfd\x9a\xd2" "\xe4\x79\x38\xb4\x88\xe7\x61\x65\x9b\x99\xed\x8b\xfb\x9e\x65\xa8\xe6" "\xbf\x66\xc7\xb0\x5c\x5f\x0b\xd6\xd7\xac\xc1\xc6\xef\x47\x1a\xd7\x60" "\xb7\xbf\x1f\xe9\x95\x35\x38\x12\xd6\xc5\x0f\xb6\xb7\xfe\x5a\xb0\x31" "\x1c\xef\x0b\x63\x4b\xfd\x7e\x64\xd5\x82\x35\x98\xee\x6e\x78\xed\xa9" "\x7c\x26\x7d\xbf\x3f\xb2\x2f\x1f\xcd\xd6\xe5\x8d\x95\x0b\xae\x5a\x9d" "\x9d\x9b\x9d\x3a\x73\xe7\xd3\x47\xce\x9e\x3d\xb3\x23\x0b\x63\x45\x5c" "\x5b\xb3\x56\x1a\xd7\xeb\xba\x9a\xfb\x94\x2d\x58\xaf\x83\x4b\x5e\xaf" "\x07\xa7\x6f\x7e\xe1\xc6\x26\x9f\x5f\x1f\xce\xd5\xc8\x1d\x95\x3f\x46" "\x5a\x3e\x56\x95\x6d\x76\xdf\xd9\xfe\xb1\xca\xbf\xba\x35\x3f\x9f\x75" "\x9f\xdd\x99\x85\xd1\x65\x2b\x7d\x3e\x9b\x7d\x35\xaf\x9c\xcf\x94\x25" "\xdb\x9c\xcf\xca\x36\x9f\x1b\xbf\xfc\xef\xc5\x53\x2e\xad\x79\xfd\x1d" "\x6e\xf1\xfa\x1b\x73\xff\x5b\xd5\xfd\xa5\x9b\x7a\x7e\xd5\xf0\x50\xf5" "\xf9\xbb\x2a\x9d\x9d\xe1\xba\xd7\xe3\xfa\x87\x6a\x28\x7f\xed\x1a\xc8" "\xf7\xfd\xe6\xf8\xe2\x5e\x8f\x87\xc3\x7f\x2b\xfd\x7a\x7c\x5d\x9b\xd7" "\xe3\x0d\x0d\xdb\x76\xfb\xf5\x78\xb8\xf1\xce\xc5\xd7\xe3\x81\x4e\x3f" "\xed\xb8\x3c\x8d\x8f\xe7\x48\x58\x27\x27\x26\xda\xbf\x1e\x57\xb6\xd9" "\xb0\x73\xa9\x6b\x72\xa8\xed\xeb\xf1\x2d\x61\x0e\x84\xf3\x7f\x5b\x48" "\x0a\x29\x17\xd5\xac\x9d\x56\xeb\x36\xed\x6b\x68\x68\x38\xdc\xaf\xa1" "\xb8\x87\xfa\x75\xba\xab\x6e\xfb\xe1\x90\xcd\x2a\xfb\x7a\x79\xe7\xdb" "\x5b\xa7\xdb\x6e\xa9\xde\xd6\xaa\x74\xef\xe6\xad\xd4\x3a\x1d\x6d\xd8" "\xb6\xdb\xeb\x34\xbd\x5e\xb5\x5a\xa7\x03\x9d\x7e\xfa\xf6\xf6\x34\x3e" "\x9e\x23\x61\x5d\x5c\xb7\xab\xfd\x3a\xad\x6c\xf3\xea\xee\xcb\x7f\xed" "\x4c\x29\xb1\xe6\xb5\x73\x75\xa7\x35\x38\xbc\x6a\x75\xe5\x98\x87\xd3" "\x22\xac\xbe\xde\xcf\xad\x8d\x6b\xf0\xce\xec\x68\x76\x3a\x3b\x91\x4d" "\xe6\x97\xae\xce\xd7\x53\x35\x91\x8e\xdd\xb5\xb8\x35\xb8\x3a\xfc\xb7" "\xd2\xaf\x95\x1b\xda\xac\xc1\x6d\x0d\xdb\x76\x7b\x0d\xa6\xaf\x63\xad" "\xd6\xde\xc0\xd0\xc2\x3b\xdf\x05\x8d\x8f\xe7\x48\x58\x17\x2f\xde\xd5" "\x7e\x0d\x56\xb6\xb9\x77\x6f\x77\xbf\x77\xdd\x16\x3e\x93\xb6\xa9\xf9" "\xde\xb5\xf1\xe7\x6b\xad\x7e\xe6\x75\x63\xc3\x69\x5a\xce\x9f\x79\x55" "\x8e\xf3\x1f\xf6\xb6\xff\xd9\x6c\x65\x9b\x13\xfb\x96\x9a\x33\xdb\x9f" "\xa7\xdb\xc3\x67\xae\x6a\x72\x9e\x1a\x9f\xbf\xad\x9e\x53\x93\xd9\xca" "\x9c\xa7\x0d\xe1\x38\xdf\xd8\xd7\xfa\x3c\x55\x8e\xa7\xb2\xcd\x57\xf6" "\x2f\x72\x3d\x1d\xcc\xb2\xec\xfc\x53\xf7\xe4\x3f\xef\x0d\xff\xbe\xf2" "\x37\xe7\xbe\xff\xad\xba\x7f\x77\x69\xf6\x6f\x3a\xe7\x9f\xba\xe7\x27" "\x57\x1f\xfb\xa7\xa5\x1c\x3f\x00\xfd\xef\xad\xea\x58\x57\xfd\x5a\x57" "\xf3\x2f\x53\x8b\xf9\xf7\x7f\x00\x00\x00\xa0\x2f\xc4\xdc\x3f\x18\x66" "\x22\xff\x03\x00\x00\x40\x61\xc4\xdc\x1f\xff\xaf\xf0\x44\xfe\x07\x00" "\x00\x80\xc2\x88\xb9\x7f\x28\xcc\xa4\x24\xf9\x7f\xc3\xbd\x6f\x4c\xbf" "\x75\x3e\x4b\xcd\xfc\xb9\x20\x5e\x9e\x4e\xc3\x03\xd5\xed\x62\xc7\x75" "\x22\x7c\x3c\x3a\x37\xaf\xf2\xf9\x7b\x5e\x9a\xfa\xef\xbf\x3b\xbf\xb8" "\x7d\x0f\x66\x59\xf6\xbf\x0f\xfc\x41\xd3\xed\x37\x3c\x10\x8f\xab\x6a" "\x34\x1c\xe7\xa5\x0f\xd5\x7f\x7e\xe1\x15\xcf\x2f\x6a\xff\x87\x1f\x9b" "\xdf\xae\xb6\xbf\xfe\xb5\x70\xfb\xf1\xfe\x2c\x76\x19\x34\xab\xe0\x4e" "\x64\x59\xf6\xca\x35\x5f\xca\xf7\x33\xfa\xf8\xc5\x7c\xbe\xfa\xc0\xe1" "\x7c\x3e\x7c\xe1\x85\xe7\x2b\xdb\xbc\xb9\xbf\xfa\x71\xbc\xfe\xeb\xd7" "\x56\xb7\xff\xf3\x50\xfe\x3d\x78\xec\x48\xdd\xf5\x5f\x0f\xe7\xe1\x47" "\x61\x4e\x3c\xd8\xfc\x7c\xc4\xeb\x7d\xf3\xe2\x6d\x1b\xf7\x7e\x62\x7e" "\x7f\xf1\x7a\x03\x9b\xdf\x99\xdf\xed\x17\x9f\xa8\xde\x6e\xfc\x3d\x39" "\x5f\x7e\xbe\xba\x7d\x3c\xcf\xad\x8e\xff\xef\xbf\xf8\xf2\x37\x2b\xdb" "\x3f\xfd\xbe\xe6\xc7\x7f\x7e\xb0\xf9\xf1\xbf\x1c\x6e\xf7\xa5\x30\xff" "\xe7\xa6\xea\xf6\xb5\x8f\x41\xe5\xe3\x78\xbd\xcf\x87\xe3\x8f\xfb\x8b" "\xd7\xbb\xf3\x1b\xdf\x69\x7a\xfc\x97\xbe\x50\xdd\x7e\xe6\xbe\x37\xa6" "\x2b\x4f\xe7\xc3\xf7\x85\x75\x1a\xf6\xbf\x2d\x7c\xbc\xa5\x72\x79\x8d" "\xa7\x07\x8e\xd4\xdd\xaf\xec\xc3\xd5\xed\xe2\xfe\x27\xbe\xff\x47\xf9" "\xe5\xf1\xf6\x66\xee\x6b\x7e\xfc\x23\x87\x2e\xd6\x9d\x8f\xc6\xf5\xf1" "\xea\xbf\x55\x6f\x67\xbc\x61\xfb\xf8\xf9\xb8\x9f\xe8\x6f\x1b\xf6\x5f" "\xb9\x9d\xda\xf5\x19\xf7\xff\xf2\x1f\x1e\xae\x3b\xcf\x9d\xf6\x7f\xe9" "\xe1\xd7\x6f\xaa\xdc\x6e\xe3\xfe\x6f\x6f\xd8\x6e\xe6\xa9\xed\xf9\xfe" "\xe7\x6f\xaf\xfe\x37\x36\xfd\xc5\xe7\xbf\xd4\x74\x7f\xf1\x78\x0e\xfe" "\xf5\x4c\xdd\xfd\x39\xf8\x50\x78\x1e\x87\xfd\xbf\xf8\x44\x58\x8f\xe1" "\xf2\x5f\x5c\xaa\xde\x5e\xe3\x6f\x57\x38\xfc\x50\xfd\xeb\x4f\xdc\xfe" "\x6b\xeb\xcf\xd7\xdd\x9f\xe8\xfe\x9f\x55\xf7\x7f\xe9\xee\xe3\xf9\x5c" "\x33\xb2\x76\xdd\x55\xef\xb8\xfa\x9d\x17\xde\x5b\x39\x77\x59\xf6\xda" "\x23\xd5\xdb\xeb\xb4\xff\xe3\x5f\x3d\x5d\x77\xfc\x5f\xbf\xbe\x7a\x3e" "\xe2\xe5\xb1\xa3\xdf\xb8\xff\x56\xe2\xfe\xcf\x7c\x66\xec\xd4\xe9\xd9" "\x73\xd3\x93\x35\x67\x35\xff\xdd\x39\x1f\xa9\x1e\x4f\x3c\xde\x6b\xc2" "\x6b\x6b\xe3\xc7\x87\x4e\x9f\x7d\x72\xea\xcc\xe8\xc4\xe8\x44\x96\x8d" "\x16\xf7\x57\xe8\xbd\x6d\xdf\x08\xf3\x27\xd5\x71\x61\xa9\xd7\xdf\xfe" "\x58\x78\x3c\x6f\xfc\xb3\x57\xd6\x6d\xfd\xd7\x2f\xc6\xcf\xff\xfb\xa3" "\xd5\xcf\x5f\x7c\xb0\xfa\x75\xeb\xd6\xb0\xdd\x97\xc3\xe7\xd7\x87\xc7" "\xef\x72\xf7\xff\xe2\xa6\xeb\xf3\xe7\xf7\xc0\xab\xf9\x87\xc3\xd9\xdc" "\xc2\xdf\x17\x7c\x39\x36\x6e\xf9\xaf\x7d\x8b\xda\x30\xdc\xff\xc6\xef" "\x0b\xe2\x7a\x9f\x79\xcf\x93\xf9\x79\xa8\x5c\x96\x7f\xdd\x88\xcf\xeb" "\xfa\xe3\xaf\xff\xfd\xc7\x8b\xf0\xc3\xc9\xea\xed\x7c\x3b\x9c\xd7\xb9" "\xf0\x9b\x99\x37\x5f\x3f\xbf\xbf\xda\xed\xe3\xef\x46\xb8\xf8\x48\xf5" "\xf9\x7e\xb9\xfb\x8f\x2f\x73\xf1\x71\xfd\xab\xf0\x78\x7f\xf4\x47\xd5" "\xdb\x8f\xc7\x15\xef\xef\x0f\xc3\xf7\x31\xdf\xd9\x50\xff\x7a\x17\xd7" "\xc7\xb7\xcf\x0f\x36\xde\x7e\xfe\x5b\x3c\x2e\x84\xd7\x93\xec\x42\xf5" "\xf2\xb8\x55\x3c\xdf\x17\xdf\xbc\xbe\xe9\xe1\xc5\xdf\x43\x92\x5d\xb8" "\x21\xff\xf8\x8f\xd3\xed\xdc\xb0\xa4\xbb\xd9\xca\xec\x33\xb3\xe3\x27" "\xa6\x4f\x9d\x7b\x7a\xfc\xec\xd4\xec\xd9\xf1\xd9\x67\x9e\x3d\x74\xf2" "\xf4\xb9\x53\x67\x0f\xe5\xbf\xcb\xf3\xd0\xa7\x3a\x5d\x7f\xfe\xf5\x69" "\x5d\xfe\xfa\x34\x39\xb5\x67\x77\x96\xbf\x5a\x9d\xae\x8e\x65\x76\xa5" "\x8f\x7f\xe6\xb1\xbb\xb3\x2c\xdb\x3a\x39\x75\xec\xc8\xb9\x63\x67\x1f" "\x9b\x99\x3a\x73\xfc\xe8\xec\xec\xd1\xa9\xc9\xd9\xad\x47\x8e\x1d\x9b" "\xfa\x4c\xa7\xeb\x4f\x4f\x1e\xd8\xb1\x73\xff\xae\xbd\x3b\xc7\x8e\x4f" "\x4f\x1e\xd8\xb7\x7f\xff\xae\xfd\x63\xd3\xa7\x4e\x57\x0e\xa3\x7a\x50" "\x1d\xec\x99\xf8\xf4\xd8\xa9\x33\x87\xf2\xab\xcc\x1e\xd8\xbd\x7f\xc7" "\x5d\x77\xed\x9e\x18\x3b\x79\x7a\x72\xea\xc0\xde\x89\x89\xb1\x73\x9d" "\xae\x9f\x7f\x6d\x1a\xab\x5c\xfb\xf7\xc7\xce\x4c\x9d\x38\x72\x76\xfa" "\xe4\xd4\xd8\xec\xf4\xb3\x53\x07\x76\xec\xdf\xb3\x67\x67\xc7\xdf\x06" "\x78\x72\xe6\xd8\xec\xe8\xf8\x99\x73\xa7\xc6\xcf\xcd\x4e\x9d\x19\xaf" "\xde\x97\xd1\xb3\xf9\xa7\x2b\x5f\xfb\x3a\x5d\x9f\x62\x9a\xfd\x8f\xea" "\xf7\xb3\x8d\x06\xaa\xbf\x88\x2f\xfb\xf8\xed\x7b\xd2\xef\x67\xad\x78" "\xe9\xb3\x2d\x6f\xaa\xba\x49\xc3\x2f\x10\x7d\x23\xfc\x2e\x9a\xef\xbe" "\x6b\x66\xdf\x62\x3e\x8e\xb9\x7f\x38\xcc\xa4\x24\xf9\x1f\x00\x00\x00" "\xca\x20\xe6\xfe\xd5\x61\x26\xf2\x3f\x00\x00\x00\x14\x46\xcc\xfd\x6b" "\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8c\x98\xfb\x47\xc2\x4c\x4a\x92\xff" "\xf5\xff\xf5\xff\x8b\xda\xff\x7f\xeb\xbc\xfe\x7f\xab\xfd\xeb\xff\xeb" "\xff\x17\x59\xc1\xfa\xff\x4b\xef\xaf\x77\xa0\xff\xdf\x81\xfe\xbf\xfe" "\xff\x65\xf5\xff\x8f\x4e\xee\x9d\xe8\xc9\xfe\xff\x5c\xe3\xd7\xd6\x66" "\xf4\xff\x59\x0e\xbd\xd6\xff\x8f\xb9\x7f\x6d\x96\x95\x32\xff\x03\x00" "\x00\x40\x19\xc4\xdc\xbf\x2e\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9" "\xff\xaa\x30\x13\xf9\x1f\x00\x00\x00\x0a\x23\xe6\xfe\x77\x84\x99\x94" "\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x37\xdf\xbf\xfe\x7f" "\x7f\xd2\xff\x6f\x4f\xff\xbf\x03\xfd\x7f\xfd\xff\x62\xf6\xff\xbd\xff" "\x3f\x57\x4c\xaf\xf5\xff\x63\xee\xbf\x3a\xcc\xa4\x24\xf9\x1f\x00\x00" "\x00\xca\x20\xe6\xfe\x77\x86\x99\xc8\xff\x00\x00\x00\x50\x18\x31\xf7" "\x5f\x13\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc\xbf\x3e\xcc\xa4\x24" "\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\xf9\xfe\xf5\xff\xfb" "\xd3\xdb\xe8\xdf\xff\xbc\xb6\x22\xde\xbb\xfd\xff\xb5\x4b\xbd\xa9\xa6" "\xf4\xff\x3b\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xab\x7a\xad\xff\x1f" "\x73\xff\xbb\xc2\x4c\x4a\x92\xff\x01\x00\x00\xa0\x0c\x62\xee\x7f\x77" "\x98\x89\xfc\x0f\x00\x00\x00\x85\x11\x73\xff\xb5\x61\x26\xf2\x3f\x00" "\x00\x00\x14\x46\xcc\xfd\xd7\x85\x99\x94\x24\xff\xeb\xff\xeb\xff\xeb" "\xff\xeb\xff\xeb\xff\x37\xdf\xbf\xfe\x7f\x7f\x2a\xeb\xfb\xff\xaf\x5e" "\xe4\xed\xeb\xff\xb7\x96\x6f\xa8\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x57" "\xf5\x5a\xff\x3f\xe6\xfe\xf7\x84\x99\x94\x24\xff\x03\x00\x00\x40\x19" "\xc4\xdc\x7f\x7d\x98\x89\xfc\x0f\x00\x00\x00\x85\x11\x73\xff\x2f\x85" "\x99\xc8\xff\x00\x00\x00\x50\x18\x31\xf7\x6f\x08\x33\x29\x49\xfe\xd7" "\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x6f\xbe\x7f\xfd\xff\xfe\xb4\x8c" "\xfd\xff\xbc\x91\xd8\xab\xfd\xff\xc5\xd2\xff\xef\x40\xff\x5f\xff\x5f" "\xff\x5f\xff\x9f\xae\xea\xb5\xfe\x7f\xcc\xfd\x37\x84\x99\x94\x24\xff" "\x03\x00\x00\x40\x19\xc4\xdc\x7f\x63\x98\x89\xfc\x0f\x00\x00\x00\x85" "\x11\x73\xff\x2f\x87\x99\xc8\xff\x00\x00\x00\x50\x18\x31\xf7\x6f\x0c" "\x33\x29\x49\xfe\xd7\xff\xef\x6a\xff\xff\xb6\xda\x62\x96\xfe\xbf\xfe" "\x7f\xc3\xfa\xd0\xff\xd7\xff\xd7\xff\x5f\x01\x65\x7d\xff\xff\xc5\xd2" "\xff\xef\x40\xff\x5f\xff\x5f\xff\x5f\xff\x9f\xae\xea\xb5\xfe\x7f\xcc" "\xfd\x37\x85\x99\x94\x24\xff\x03\x00\x00\x40\x19\xc4\xdc\x7f\x73\x98" "\x89\xfc\x0f\x00\x00\x00\x85\x11\x73\xff\x7b\xc3\x4c\xe4\x7f\x00\x00" "\x00\x28\x8c\x98\xfb\x47\xc3\xcc\x56\x87\x0b\x4a\x92\xff\xf5\xff\xbd" "\xff\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xf3\xfd\xeb\xff\xf7\x27\xfd\xff\xf6" "\xf4\xff\x3b\x58\xee\xfe\x7f\xf5\x1b\x4f\xfd\xff\x65\x72\xa5\x8f\x5f" "\xff\x5f\xff\x9f\x85\x7a\xad\xff\x1f\x73\xff\xa6\x30\x93\x92\xe4\x7f" "\x00\x00\x00\x28\x83\x98\xfb\x37\x87\x99\xc8\xff\x00\x00\x00\x50\x18" "\x31\xf7\xdf\x12\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc\xbf\x25\xcc" "\xa4\x24\xf9\xbf\x4f\xfb\xff\x83\xad\xef\x90\xfe\x7f\xa6\xff\xaf\xff" "\xdf\x61\xff\xfa\xff\xfa\xff\x45\xd6\xbb\xfd\xff\x66\x5f\x29\x16\xd2" "\xff\x2f\x78\xff\xdf\xfb\xff\x2f\xab\x2b\x7d\xfc\xcb\xd8\xff\xff\x6e" "\xcd\x72\x6f\x49\xff\x9f\x5e\xd4\x6b\xfd\xff\x98\xfb\xdf\x17\x66\x52" "\x92\xfc\x0f\x00\x00\x00\x65\x10\x73\xff\xd6\x30\x13\xf9\x1f\x00\x00" "\x00\x0a\x23\xe6\xfe\x5b\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8c\x98\xfb" "\xb7\x85\x99\x94\x24\xff\xf7\x69\xff\xbf\xcd\x1d\xd2\xff\xcf\xf4\xff" "\x97\xbf\xff\xbf\xfd\xab\xd5\x2b\xea\xff\xeb\xff\xeb\xff\xf7\x9c\xde" "\xed\xff\x2f\x8e\xfe\xbf\xfe\xbf\xfe\x7f\xff\x1e\xbf\xf7\xff\xd7\xff" "\x67\xa1\x5e\xeb\xff\xc7\xdc\x7f\x5b\x98\x49\x49\xf2\x3f\x00\x00\x00" "\x94\x41\xcc\xfd\xdb\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8c\x98\xfb\x6f" "\x0f\x33\x91\xff\x01\x00\x00\xa0\x30\x62\xee\x1f\x0b\x33\x29\x49\xfe" "\xd7\xff\xd7\xff\xd7\xff\xf7\xfe\xff\xfa\xff\xcd\xf7\xaf\xff\xdf\x9f" "\xf4\xff\xdb\xd3\xff\xef\x40\xff\x5f\xff\xbf\xe5\xf1\x5f\xdd\x71\xff" "\xfa\xff\xfa\xff\x2c\xd4\x6b\xfd\xff\x98\xfb\xef\x08\x33\x29\x49\xfe" "\x07\x00\x00\x80\x32\x88\xb9\xff\xce\x30\x13\xf9\x1f\x00\x00\x00\x0a" "\x23\xe6\xfe\xf1\x30\x13\xf9\x1f\x00\x00\x00\x0a\x23\xe6\xfe\x89\x30" "\x93\x92\xe4\xff\x95\xee\xff\xd7\x9c\x61\xfd\x7f\xfd\x7f\xfd\x7f\xfd" "\x7f\xfd\x7f\xfd\xff\xae\xd3\xff\x6f\xef\xca\xf5\xff\x9b\x7d\xa5\x5c" "\x48\xff\x5f\xff\xbf\x9f\x8f\x5f\xff\x5f\xff\x9f\x85\x7a\xad\xff\x1f" "\x73\xff\x8e\x30\xd3\x77\x74\x25\xc9\xff\x00\x00\x00\x50\x06\x31\xf7" "\xef\x0c\x33\x91\xff\x01\x00\x00\xa0\x30\x62\xee\xdf\x15\x66\x22\xff" "\x03\x00\x00\x40\x61\xc4\xdc\xbf\x3b\xcc\xa4\x24\xf9\xdf\xfb\xff\xeb" "\xff\xeb\xff\xeb\xff\xeb\xff\x37\xdf\xbf\xfe\x7f\x7f\x68\x2c\xd8\xeb" "\xff\xb7\xe7\xfd\xff\x3b\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xab\x7a" "\xad\xff\x1f\x73\xff\x5d\x61\x26\x25\xc9\xff\x00\x00\x00\x50\x06\x31" "\xf7\xef\x09\x33\x91\xff\x01\x00\x00\xa0\x30\x62\xee\xdf\x1b\x66\x22" "\xff\x03\x00\x00\x40\x61\xc4\xdc\xbf\x2f\xcc\xa4\x24\xf9\x5f\xff\x5f" "\xff\x5f\xff\x5f\xff\x5f\xff\xbf\xf9\xfe\xf5\xff\xfb\x93\xfe\x7f\x7b" "\x65\xe9\xff\x47\xfa\xff\x4b\x73\xa5\xfb\xf3\xfd\x7e\xfc\xfa\xff\xfa" "\xff\x2c\xd4\x6b\xfd\xff\x98\xfb\xf7\x87\x99\x94\x24\xff\x03\x00\x00" "\x40\x19\xc4\xdc\xff\xfe\x30\x13\xf9\x1f\x00\x00\x00\x0a\x23\xe6\xfe" "\x5f\x09\x33\x91\xff\x01\x00\x00\xa0\x30\x62\xee\xff\xd5\x30\x93\x92" "\xe4\x7f\xfd\x7f\xfd\x7f\xfd\xff\x2b\xdb\xff\xbf\xa0\xff\xaf\xff\xaf" "\xff\xdf\x55\xfa\xff\xed\x95\xa5\xff\xbf\x3c\xef\xff\x3f\xa2\xff\xdf" "\x81\xfe\xbf\xfe\xbf\xfe\x3f\x8d\xae\x78\xff\xff\x42\xfd\xc7\x31\xf7" "\x1f\x08\x33\x29\x49\xfe\x07\x00\x00\x80\x32\x88\xb9\xff\xd7\xc2\x4c" "\xe4\x7f\x00\x00\x00\x28\x8c\x98\xfb\xef\x0e\x33\x91\xff\x01\x00\x00" "\xa0\x30\x62\xee\x3f\x18\x66\x52\x92\xfc\xaf\xff\xaf\xff\xaf\xff\xef" "\xfd\xff\xf5\xff\x9b\xef\x5f\xff\xbf\x3f\xe9\xff\xb7\xd7\xbb\xfd\xff" "\xf8\xcc\xea\xe5\xfe\xbf\xf7\xff\xef\x74\x7d\xfd\x7f\xfd\x7f\xfd\x7f" "\x1a\x5d\xf1\xfe\x7f\xc3\xc7\x31\xf7\x7f\x20\xcc\xa4\x24\xf9\x1f\x00" "\x00\x00\xca\x20\xe6\xfe\x7b\xc2\x4c\x16\xe6\xff\xc1\x95\x3b\x2a\x00" "\x00\x00\xa0\x9b\x62\xee\xff\x60\x98\x89\x7f\xff\x07\x00\x00\x80\xc2" "\x88\xb9\xff\xde\x30\x93\x92\xe4\x7f\xfd\x7f\xfd\xff\x96\xfd\xff\xca" "\x83\xad\xff\xaf\xff\xaf\xff\x9f\xe8\xff\xf7\x07\xfd\xff\xf6\x7a\xb7" "\xff\x5f\xd5\xdb\xef\xff\xaf\xff\xdf\xe9\xfa\xfa\xff\xfa\xff\xfa\xff" "\x34\xea\xb5\xfe\x7f\xcc\xfd\x1f\x0a\x33\x29\x49\xfe\x07\x00\x00\x80" "\x32\x88\xb9\xff\xbe\x30\x13\xf9\x1f\x00\x00\x00\x0a\x23\xe6\xfe\x0f" "\x87\x99\xc8\xff\x00\x00\x00\x50\x18\x31\xf7\xdf\x1f\x66\x52\x92\xfc" "\xaf\xff\xaf\xff\xef\xfd\xff\x57\xac\xff\x3f\x91\xe9\xff\x17\xbe\xff" "\xdf\xf8\x1a\x5a\x4b\xff\x7f\x65\xe8\xff\xb7\xa7\xff\xdf\x81\xfe\xbf" "\xfe\xbf\xfe\xbf\xfe\x3f\x5d\xd5\x6b\xfd\xff\x98\xfb\x7f\x3d\xcc\xa4" "\x24\xf9\x1f\x00\x00\x00\xca\x20\xe6\xfe\x07\xc2\x4c\xe4\x7f\x00\x00" "\x00\x28\x8c\x98\xfb\x1f\x0c\x33\x91\xff\x01\x00\x00\xa0\x30\x62\xee" "\xff\x48\x98\x49\x49\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xf7\xff\xd7\xff" "\x6f\xbe\x7f\xef\xff\xdf\x9f\xf4\xff\xdb\xd3\xff\xef\x40\xff\x5f\xff" "\x5f\xff\x5f\xff\x9f\xae\xea\xb5\xfe\x7f\xcc\xfd\x1f\x0d\x33\x29\x49" "\xfe\x07\x00\x00\x80\x32\x88\xb9\xff\x63\x61\x26\xf2\x3f\x00\x00\x00" "\x14\x46\xcc\xfd\x1f\x0f\x33\x91\xff\x01\x00\x00\xa0\x30\x62\xee\xff" "\x8d\x30\x93\x92\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xe6" "\xfb\xd7\xff\xef\x4f\xfa\xff\xed\xe9\xff\x77\xa0\xff\xaf\xff\xaf\xff" "\xaf\xff\x4f\x57\xf5\x5a\xff\x3f\xe6\xfe\x87\xc2\x4c\x4a\x92\xff\x01" "\x00\x00\xa0\x0c\x62\xee\x7f\x38\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88" "\xb9\xff\x91\x30\x13\xf9\x1f\x00\x00\x00\x0a\x23\xe6\xfe\x47\xc3\x4c" "\x4a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x9b\xef\x5f\xff" "\xbf\x3f\xe9\xff\xb7\x57\xd7\xff\xff\xc5\x48\xeb\x0d\xf5\xff\xf5\xff" "\xf5\xff\xf5\xff\xf5\xff\xe9\x82\x5e\xeb\xff\xc7\xdc\xff\x58\x98\x49" "\x49\xf2\x3f\x00\x00\x00\x94\x41\xcc\xfd\x9f\x08\x33\x91\xff\x01\x00" "\x00\xa0\x30\x62\xee\xff\xcd\x30\x13\xf9\x1f\x00\x00\x00\x0a\x23\xe6" "\xfe\x4f\x86\x99\x94\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff" "\x37\xdf\xbf\xfe\x7f\x7f\xd2\xff\x6f\xcf\xfb\xff\x77\xa0\xff\xaf\xff" "\xaf\xff\xaf\xff\x4f\x57\xf5\x5a\xff\x3f\xe6\xfe\xc7\xc3\x4c\x4a\x92" "\xff\x01\x00\x00\xa0\x0c\x62\xee\xff\xad\x30\x13\xf9\x1f\x00\x00\x00" "\x0a\x23\xe6\xfe\xdf\x0e\x33\x91\xff\x01\x00\x00\xa0\x30\x62\xee\xff" "\x9d\x30\x93\x92\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xe6" "\xfb\xd7\xff\xef\x4f\xfa\xff\xed\xe9\xff\x77\xa0\xff\xaf\xff\xaf\xff" "\xaf\xff\x4f\x57\xf5\x5a\xff\x3f\xe6\xfe\xdf\x0d\x33\x29\x49\xfe\x07" "\x00\x00\x80\x32\x88\xb9\xff\x89\x30\x13\xf9\x1f\x00\x00\x00\x0a\x23" "\xe6\xfe\x43\x61\x26\xf2\x3f\x00\x00\x00\x14\x46\xcc\xfd\x87\xc3\x4c" "\x4a\x92\xff\xf5\xff\xf5\xff\xf5\xff\x7b\xb4\xff\xff\xa7\x9b\xff\xe5" "\x07\xdf\xfb\xd8\xe1\x1d\xfa\xff\xfa\xff\xfa\xff\x4b\xa2\xff\xdf\x9e" "\xfe\x7f\x07\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x74\x55\xaf\xf5\xff\x63" "\xee\x3f\x12\x66\x52\x92\xfc\x0f\x00\x00\x00\x65\x10\x73\xff\xef\x85" "\x99\xc8\xff\x00\x00\x00\x50\x18\x31\xf7\x1f\x0d\x33\x91\xff\x01\x00" "\x00\xa0\x30\x62\xee\x9f\x0c\x33\x29\x49\xfe\xd7\xff\xd7\xff\xd7\xff" "\xef\xd1\xfe\xbf\xf7\xff\x4f\xf4\xff\xf5\xff\x97\x42\xff\xbf\x3d\xfd" "\xff\x0e\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xe9\xaa\x25\xf7\xff\x47\x5b" "\xde\x54\x57\xfa\xff\x31\xf7\x4f\x85\x99\x94\x24\xff\x03\x00\x00\x40" "\x19\xc4\xdc\x7f\x2c\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9\xff\x78" "\x98\x89\xfc\x0f\x00\x00\x00\x85\x11\x73\xff\x93\x61\x26\x25\xc9\xff" "\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xcd\xf7\xaf\xff\xdf\x9f\xf4" "\xff\xdb\xd3\xff\xef\x40\xff\x5f\xff\x5f\xff\x5f\xff\x9f\xae\xea\xb5" "\xf7\xff\x8f\xb9\x7f\x3a\xcc\xa4\x24\xf9\x1f\x00\x00\x00\xca\x20\xe6" "\xfe\x4f\x85\x99\xc8\xff\x00\x00\x00\x50\x18\x31\xf7\x7f\x3a\xcc\x44" "\xfe\x07\x00\x00\x80\xc2\x88\xb9\xff\x44\x98\x49\x49\xf2\xbf\xfe\xbf" "\xfe\xbf\xfe\xff\x32\xf4\xff\xff\xb1\xf9\xfa\xd0\xff\xd7\xff\xd7\xff" "\x5f\x7e\xfa\xff\xed\xe9\xff\x77\xa0\xff\xaf\xff\xaf\xff\xaf\xff\x4f" "\x57\x75\xa7\xff\x3f\x97\x75\xab\xff\x1f\x73\xff\xc9\x30\x93\x92\xe4" "\x7f\x00\x00\x00\x28\x83\x98\xfb\x4f\x85\x99\xc8\xff\x00\x00\x00\x50" "\x18\x31\xf7\x9f\x0e\x33\x91\xff\x01\x00\x00\xa0\x30\x62\xee\x9f\x09" "\x33\x29\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xf7\xfe\xff\xfa\xff\xcd\xf7" "\xaf\xff\xdf\x9f\xf4\xff\xdb\xfb\x7f\xf6\xee\xa3\xd9\xd2\xba\xda\xe3" "\xf8\xee\x82\x26\x14\x83\x4b\xdd\xc9\x1d\xdc\xc1\x9d\xdc\x17\xe0\x9c" "\x09\x23\xab\xb0\xca\x57\x60\x39\xd4\x99\x96\x0a\xe6\x00\xe6\x9c\x73" "\xce\x59\x44\x41\x11\x03\xe6\x88\x11\xc5\x9c\x31\xa0\xa8\x88\x18\x50" "\x71\x60\x41\xaf\xb5\xda\x3e\x67\xf7\xde\xdd\xa7\x9f\x73\xce\xf3\xfc" "\xd7\xe7\x33\x59\x65\xe1\x61\xef\x26\x55\xfd\xaa\xeb\x5b\x7f\xfd\xff" "\x16\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xa4\xe6\xf6\xfe\x7f\xee\xfe\x87" "\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x61\x71\x8b\xfd\x0f" "\x00\x00\x00\xc3\xc8\xdd\x7f\x69\xdc\x62\xff\x03\x00\x00\xc0\x30\x72" "\xf7\x5f\x16\xb7\x34\xd9\xff\xfa\x7f\xfd\xff\xe1\xf5\xff\x47\xce\xd6" "\xff\xeb\xff\xf5\xff\xfa\xff\xa9\x0d\xdb\xff\xef\xfc\x17\x63\x8f\xf4" "\xff\x5b\xe8\xff\x1b\xf4\xff\x27\xff\x97\x49\xff\xaf\xff\x67\x7a\x73" "\xeb\xff\x73\xf7\x3f\x3c\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd" "\x8f\x88\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x47\xc6\x2d\xf6\x3f" "\x00\x00\x00\x0c\x23\x77\xff\xa3\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xf7" "\xfe\xbf\xfe\x5f\xff\xbf\xfe\xf3\xf5\xff\xcb\x34\x6c\xff\x3f\x91\x4e" "\xfd\xff\xa5\x37\x5d\xf0\xe0\x3b\xae\xfd\xdf\xeb\x4e\xe7\xf3\xf5\xff" "\x1d\xfa\xff\xfd\xfb\xfe\xfa\x7f\xfd\x3f\xbb\xcd\xad\xff\xcf\xdd\xff" "\xe8\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x26\x6e\xb1\xff" "\x01\x00\x00\x60\x18\xb9\xfb\x1f\x1b\xb7\xd8\xff\x00\x00\x00\x30\x8c" "\xdc\xfd\x8f\x8b\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff" "\xaf\xff\x7c\xfd\xff\x32\xe9\xff\x37\xeb\xd4\xff\xef\xe5\xf3\xf5\xff" "\xfa\x7f\xfd\xbf\xfe\x9f\x69\xcd\xad\xff\xcf\xdd\xff\xf8\xb8\xa5\xc9" "\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x21\x6e\xb1\xff\x01\x00\x00\x60" "\x18\xb9\xfb\x2f\x8f\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x2b\xe2" "\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xeb\x3f\x5f\xff" "\xbf\x4c\x33\xea\xff\x8f\xea\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xff\xb2" "\x07\x3d\xe4\x81\xe7\xea\xff\x1b\x9b\x5b\xff\x9f\xbb\xff\x89\x71\xeb" "\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x27\xc5\x2d\xf6\x3f\x00\x00" "\x00\x0c\x23\x77\xff\x93\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff" "\x29\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xf5\x9f" "\xaf\xff\x5f\xa6\xed\xfd\xff\x7f\x5f\xb2\xe9\xe7\xbd\xff\x1f\xf4\xff" "\xfa\x7f\xfd\xbf\xfe\xdf\xfb\xff\x4c\x60\x6e\xfd\x7f\xee\xfe\xa7\xc6" "\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x69\x71\xcb\x9a\xfd\x7f" "\xe1\x81\x7d\x2b\x00\x00\x00\x60\x4a\xb9\xfb\x9f\x1e\xb7\xf8\xfd\x7f" "\x00\x00\x00\x18\x46\xee\xfe\x67\xc4\x2d\x4d\xf6\xbf\xfe\x7f\x7f\xfa" "\xff\xec\x15\xf5\xff\xfa\xff\x95\xfe\xff\xf8\x3f\x97\xfa\x7f\xfd\xff" "\x01\x98\xd1\xfb\xff\x7b\xfa\x7c\xfd\xbf\xfe\x5f\xff\xbf\xdc\xef\xaf" "\xff\xd7\xff\xb3\xdb\xdc\xfa\xff\xdc\xfd\xcf\x8c\x5b\x9a\xec\x7f\x00" "\x00\x00\xe8\x20\x77\xff\xb3\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb" "\xff\xd9\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x9c\xb8\xa5\xc9" "\xfe\xd7\xff\x7b\xff\x5f\xff\xaf\xff\xd7\xff\xaf\xff\x7c\xfd\xff\x32" "\xe9\xff\x37\xd3\xff\x6f\xa1\xff\xd7\xff\xeb\xff\xf5\xff\x4c\x6a\x6e" "\xfd\x7f\xee\xfe\xe7\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff" "\x79\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xfc\xb8\xc5\xfe\x07" "\x00\x00\x80\x61\xe4\xee\x7f\x41\xdc\xd2\x64\xff\x4f\xd1\xff\x5f\xa1" "\xff\xd7\xff\xef\xf8\xfe\xfa\xff\xf5\xff\x7c\xe8\xff\xf5\xff\xfa\xff" "\xfd\xa7\xff\xdf\x4c\xff\xbf\xc5\xc1\xf4\xff\x67\xe9\xff\xf7\xc7\x61" "\x7f\x7f\xfd\xbf\xfe\x9f\xdd\xe6\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\x30" "\x8c\xdc\xfd\x2f\x8e\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x97\xc4" "\x2d\x5b\xf7\xff\x9d\x13\x17\x79\x87\xe3\xc4\xfe\xff\x88\xf7\xff\xf5" "\xff\xfa\xff\x95\xfe\x5f\xff\x7f\x8c\xfe\x7f\x99\xf4\xff\x9b\xe9\xff" "\xb7\xf0\xfe\xbf\xfe\x7f\xdf\xfa\xff\xd5\x69\xf4\xff\x57\xe9\xff\x19" "\xc6\xdc\xfa\xff\xdc\xfd\x2f\x8d\x5b\xfc\xfe\x3f\x00\x00\x00\x0c\x23" "\x77\xff\xcb\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xe5\x71\x8b" "\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x8a\xb8\xa5\xc9\xfe\x9f\xe2\xfd" "\xff\x81\xfb\xff\xf3\xf4\xff\xfa\xff\x16\xfd\xff\xdd\xbf\x00\xfd\xbf" "\xfe\x7f\x10\xd3\xf5\xff\xff\xff\x5f\xfa\x7f\xfd\xff\xce\xfe\xff\xe8" "\x8e\xbf\x0e\xfa\xff\x13\xe9\xff\xbd\xff\x7f\x4a\xfd\xff\xd9\xdb\xfe" "\x4c\x8c\x64\x6e\xfd\x7f\xee\xfe\x57\xc6\x2d\x4d\xf6\x3f\x00\x00\x00" "\x74\x90\xbb\xff\x55\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xea" "\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x4d\xdc\xd2\x64\xff\xeb" "\xff\xbd\xff\xdf\xbb\xff\x3f\xf6\xcd\xe7\xd8\xff\x5f\xee\xfd\xff\xa2" "\xff\xd7\xff\x9f\x0e\xef\xff\x6f\xb6\xa7\xfe\x7f\xa5\xff\xf7\xfe\xbf" "\xfe\x5f\xff\xef\xfd\x7f\xf6\x66\x6e\xfd\x7f\xee\xfe\xd7\xc6\x2d\x4d" "\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x75\x71\x8b\xfd\x0f\x00\x00\x00" "\xc3\xc8\xdd\xff\xfa\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x43" "\xdc\xd2\x64\xff\x4f\xda\xff\xdf\xfd\x53\xfa\xff\xa2\xff\x5f\x42\xff" "\x7f\xcc\x1c\xfb\xff\xd5\x12\xfa\xff\x9d\xa1\x7e\xd0\xff\xaf\xa7\xff" "\x3f\x18\xfa\xff\xcd\xbc\xff\xbf\x85\xfe\x5f\xff\xaf\xff\xd7\xff\x33" "\xa9\xb9\xf5\xff\xb9\xfb\xdf\x18\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41" "\xee\xfe\x37\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x9b\xe3\x16" "\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x2d\x71\x4b\x93\xfd\xef\xfd\xff" "\xd5\xff\xe9\xff\xf5\xff\xfa\x7f\xef\xff\xaf\xfb\x7c\xfd\xff\x32\xe9" "\xff\x37\xd3\xff\x6f\xa1\xff\xd7\xff\xeb\xff\xf5\xff\x4c\x6a\x6e\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\xc3\xc8\xdd\xff\xf6\xb8\xc5\xfe\x07\x00" "\x00\x80\x61\xe4\xee\x7f\x47\xdc\xd2\x64\xff\xeb\xff\xcf\xf8\xfd\xff" "\x7b\x12\x60\xfd\xff\x89\xdf\xff\x24\xfd\x7f\xfd\x65\xd2\xff\x9f\xf8" "\xff\xd7\xff\x1f\xa3\xff\xd7\xff\x4f\x41\xff\xbf\xd9\xb0\xfd\xff\xea" "\x76\xfd\xff\x04\x0e\xbb\x9f\x5f\xfa\xf7\xd7\xff\xeb\xff\xd9\x6d\x6e" "\xfd\x7f\xee\xfe\x77\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff" "\x5d\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xee\xb8\xc5\xfe\x07" "\x00\x00\x80\x61\xe4\xee\x7f\x4f\xdc\xd2\x64\xff\xeb\xff\xcf\xb8\xff" "\xbf\xc7\x68\xfd\xff\x59\xd1\x99\x7b\xff\x5f\xff\xaf\xff\x3f\xfe\xe7" "\xd5\xff\x2f\x83\xfe\x7f\xb3\x61\xfb\x7f\xef\xff\x9f\xd6\x2f\xf3\x64" "\x0e\xbb\x9f\x5f\xfa\xf7\xd7\xff\xeb\xff\xd9\x6d\x6e\xfd\x7f\xee\xfe" "\x2b\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xde\xb8\xc5\xfe" "\x07\x00\x00\x80\x61\xe4\xee\xbf\x2a\x6e\xb1\xff\x01\x00\x00\x60\x18" "\xb9\xfb\xdf\x17\xb7\x34\xd9\xff\xfa\x7f\xfd\xff\x01\xbe\xff\xaf\xff" "\xd7\xff\xeb\xff\xf5\xff\xfb\x4e\xff\xbf\x99\xfe\x7f\xb5\x5a\x5d\xbd" "\xe1\x0b\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\x93\x9a\x5b\xff\x9f\xbb\xff" "\xfd\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xbf\x3a\x6e\xb1\xff" "\x01\x00\x00\x60\x18\xb9\xfb\xaf\x89\x5b\xec\x7f\x00\x00\x00\x18\x46" "\xee\xfe\x0f\xc4\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff" "\xd7\x7f\xbe\xfe\x7f\x99\x7a\xf7\xff\x59\xcb\x9f\x9c\xfe\x7f\x0b\xfd" "\xbf\xfe\x5f\xff\xaf\xff\x67\x52\x73\xeb\xff\x73\xf7\x7f\x30\x6e\x69" "\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xd7\xc6\x2d\xf6\x3f\x00\x00\x00" "\x0c\x23\x77\xff\x87\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xba" "\xb8\xa5\xc9\xfe\x3f\xa1\xff\xcf\xa8\x55\xff\xaf\xff\xdf\xc7\xfe\xff" "\xae\x3d\xf4\xff\x47\xe3\x8f\xe9\xff\xa7\xeb\xff\x2f\x59\xf3\xf9\xfa" "\x7f\xfd\xff\x08\x7a\xf7\xff\xdb\xe9\xff\xb7\xb8\xf0\xd8\x7f\x12\xf4" "\xff\xfa\x7f\xfd\xbf\xfe\x9f\x69\xcc\xad\xff\xcf\xdd\xff\xe1\xb8\xe5" "\xe2\x1d\xc3\x10\x00\x00\x00\x58\xac\xdc\xfd\x1f\x89\x5b\x9a\xfc\xfe" "\x3f\x00\x00\x00\x74\x90\xbb\xff\xa3\x71\x8b\xfd\x0f\x00\x00\x00\xc3" "\xc8\xdd\xff\xb1\xb8\xa5\xc9\xfe\xf7\xfe\xbf\xfe\xdf\xfb\xff\x3d\xfb" "\x7f\xef\xff\xeb\xff\x47\xa5\xff\xdf\x4c\xff\xbf\x85\xf7\xff\xf5\xff" "\xfa\x7f\xfd\x3f\x93\x9a\x5b\xff\x9f\xbb\xff\xfa\xb8\xa5\xc9\xfe\x07" "\x00\x00\x80\x0e\x72\xf7\x7f\x3c\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9" "\xfb\x3f\x11\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x9f\x8c\x5b\x9a" "\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xaf\xff\x7c\xfd\xff\x32" "\xe9\xff\x37\xd3\xff\x6f\xa1\xff\xd7\xff\xeb\xff\xf5\xff\x4c\x6a\x6e" "\xfd\x7f\xee\xfe\x4f\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff" "\xd3\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x99\xb8\xc5\xfe\x07" "\x00\x00\x80\x61\xe4\xee\xff\x6c\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa" "\x7f\xfd\xbf\xfe\x7f\xfd\xe7\xeb\xff\x97\x49\xff\xbf\x99\xfe\x7f\x0b" "\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\x52\x73\xeb\xff\x73\xf7\x7f\x2e\x6e" "\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x9f\x8f\x5b\xec\x7f\x00\x00" "\x00\x18\x46\xee\xfe\x2f\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff" "\x17\xe3\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xeb\x3f" "\x5f\xff\xbf\x4c\xfa\xff\xcd\xf4\xff\x5b\xe8\xff\xf5\xff\xfa\x7f\xfd" "\x3f\x93\x9a\x5b\xff\x9f\xbb\xff\x4b\x71\x4b\x93\xfd\x0f\x00\x00\x00" "\x1d\xe4\xee\xbf\x21\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xbf\x1c" "\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x5f\x89\x5b\x9a\xec\x7f\xfd" "\xbf\xfe\x5f\xff\x3f\x6a\xff\x7f\xfe\x49\x3f\x5f\xff\xaf\xff\x1f\xd9" "\x5c\xfa\xff\x8b\x2e\xba\xcf\x8d\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff" "\xd7\xff\x77\x37\xb7\xfe\x3f\x77\xff\x57\xe3\x96\x93\x0e\xbf\x3b\xef" "\x7b\x0a\xbf\x4c\x00\x00\x00\x60\x46\x72\xf7\x7f\x2d\x6e\x69\xf2\xfb" "\xff\x00\x00\x00\xd0\x41\xee\xfe\xaf\xc7\x2d\xf6\x3f\x00\x00\x00\x0c" "\x23\x77\xff\x37\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\x8f\xda\xff" "\x9f\xf8\xf9\xf7\xd6\xff\xeb\xff\x9b\x98\x4b\xff\xef\xfd\xff\xbd\x7d" "\x7f\xfd\xbf\xfe\x7f\xc9\xdf\x5f\xff\xaf\xff\x67\xb7\xb9\xf5\xff\xb9" "\xfb\x6f\x8c\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x37\xe3\x16" "\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x5b\x71\x8b\xfd\x0f\x00\x00\x00" "\xc3\xc8\xdd\x7f\x53\xdc\xd2\x64\xff\xeb\xff\x37\xf5\xff\xe7\xe8\xff" "\xf5\xff\xc3\xf4\xff\x2b\xfd\xbf\xfe\xbf\x89\x45\xf7\xff\xe7\xe9\xff" "\xf5\xff\x87\xd9\xff\x5f\x7c\x80\xfd\xfc\x2d\x13\x7c\xdf\x5d\xf2\x3f" "\xcb\xfa\x7f\xfd\x3f\x33\x32\xb7\xfe\x3f\x77\xff\xb7\xe3\x96\x26\xfb" "\x1f\x00\x00\x00\x3a\xc8\xdd\xff\x9d\xb8\xc5\xfe\x07\x00\x00\x80\x61" "\xe4\xee\xff\x6e\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x7f\x2f\xee" "\x6a\xb5\x3a\xe7\x70\xbf\xd1\xc1\xd2\xff\x7b\xff\x5f\xff\xaf\xff\xd7" "\xff\xaf\xff\x7c\xfd\xff\x32\x2d\xba\xff\xf7\xfe\xbf\xfe\xdf\xfb\xff" "\x8b\xfe\xfe\xfa\x7f\xfd\x3f\xbb\xcd\xad\xff\xcf\xdd\xff\xfd\xb8\xc5" "\xef\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x20\x6e\xb1\xff\x01\x00\x00" "\x60\x18\xb9\xfb\x7f\x18\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x3f" "\x8a\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xaf\xff\x7c" "\xfd\xff\x32\xe9\xff\x37\xd3\xff\x6f\xa1\xff\xd7\xff\xeb\xff\xf5\xff" "\x4c\x6a\x6e\xfd\x7f\xee\xfe\x1f\xc7\x2d\x4d\xf6\x3f\x00\x00\x00\x74" "\x90\xbb\xff\x27\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xd3\xb8" "\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x59\xdc\xd2\x64\xff\xeb\xff" "\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xfd\xe7\xeb\xff\x97\x49\xff\xbf\x99" "\xfe\x7f\x0b\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\x52\x73\xeb\xff\x73\xf7" "\xff\x3c\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x37\xc7\x2d\xf6" "\x3f\x00\x00\x00\x0c\x23\x77\xff\x2f\xe2\x16\xfb\x1f\x00\x00\x00\x86" "\x91\xbb\xff\x97\x71\x4b\x93\xfd\xdf\xb2\xff\x3f\xa2\xff\x3f\x8d\xfe" "\xff\xe6\x5b\x8f\xfd\xa1\xc6\xfd\xff\xf1\xbf\xbb\xfa\x7f\xfd\xff\x41" "\xf4\xff\x47\xf4\xff\x67\x44\xff\xbf\x99\xfe\x7f\x8b\x11\xfa\xff\xeb" "\xcf\x3f\xad\x5f\xf2\x7f\x3a\xec\x7e\xfe\x4c\x1d\xc4\xf7\x3f\xba\xe1" "\xe7\x87\xef\xff\xcf\xde\xfc\xf3\xdb\xfa\xff\x2d\x3f\xce\xa0\xe6\xd6" "\xff\xe7\xee\xff\x55\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x7f" "\x1d\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xb7\xc4\x2d\xf6\x3f\x00" "\x00\x00\x0c\x23\x77\xff\x6f\xe2\x96\x26\xfb\xbf\x65\xff\xef\xfd\x7f" "\xef\xff\x7b\xff\x5f\xff\x3f\xe3\xfe\xdf\xfb\xff\x67\x46\xff\xbf\xd9" "\x61\xf6\xff\xb7\x9d\xc2\xc7\xea\xff\xbd\xff\xbf\xe4\xef\x3f\x7c\xff" "\xbf\x85\xf7\xff\x59\x67\x6e\xfd\x7f\xee\xfe\xdf\xc6\x2d\x4d\xf6\x3f" "\x00\x00\x00\x74\x90\xbb\xff\xd6\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4" "\xee\xff\x5d\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x3e\x6e\x69" "\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\xfe\xf3\xf5\xff\xcb" "\xa4\xff\xdf\xcc\xfb\xff\x5b\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\x93\x9a" "\x5b\xff\x9f\xbb\xff\x0f\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee" "\xbf\x2d\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xff\x18\xb7\xd8\xff" "\x00\x00\x00\x30\x8c\xdc\xfd\xb7\xc7\x2d\x4d\xf6\xbf\xfe\x7f\x26\xfd" "\x7f\x7c\x09\xfd\xbf\xfe\x5f\xff\x7f\x3a\xfd\xff\xff\x5c\x70\xc5\x0d" "\xf7\x7b\xc0\x35\x57\xea\xff\x39\x4e\xff\xbf\x99\xfe\x7f\x8b\xe9\xfa" "\xff\xfb\xdf\x4b\xff\xaf\xff\xd7\xff\xeb\xff\x39\xa8\xfe\xff\xbc\x53" "\xed\xff\x73\xf7\xff\x29\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd" "\x77\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x9f\xe3\x16\xfb\x1f" "\x00\x00\x00\x86\x91\xbb\xff\x2f\x71\x4b\x93\xfd\xaf\xff\x9f\x49\xff" "\x1f\x3f\xa3\xff\xd7\xff\xcf\xba\xff\x3f\xf7\xc4\x3f\xef\xe1\xf7\xff" "\xde\xff\xd7\xff\xef\xa6\xff\xdf\x4c\xff\xbf\xc5\xa9\xf6\xff\x77\xff" "\x87\xc3\xfb\xff\xbb\xe8\xff\xf5\xff\xfa\x7f\x76\x3a\xa0\xfe\xff\xa4" "\xbd\xff\xce\xff\x9d\xbb\xff\xaf\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d" "\xe4\xee\xff\x5b\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xdf\x19\xb7" "\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x7f\x8f\x5b\x9a\xec\x7f\xfd\xbf" "\xfe\x5f\xff\xaf\xff\x5f\xee\xfb\xff\xfb\xd6\xff\xdf\xf3\xb7\x54\xff" "\xbf\x4c\xfa\xff\xcd\xf4\xff\x5b\x4c\xf7\xfe\xbf\xfe\x5f\xff\xaf\xff" "\xd7\xff\x33\xc3\xfe\x3f\x77\xff\x3f\xe2\x96\x26\xfb\x1f\x00\x00\x00" "\x3a\xc8\xdd\xff\xcf\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xbf\x2b" "\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xff\x15\xb7\x34\xd9\xff\xfa" "\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x5f\xff\xf9\xfa\xff\x65\xd2\xff\x6f" "\xa6\xff\xdf\x42\xff\xaf\xff\xd7\xff\xeb\xff\x99\xd4\xdc\xfa\xff\xdc" "\xfd\xff\x0e\x00\x00\xff\xff\xce\xc1\x67\xb5", 24814); syz_mount_image(/*fs=*/0x200000000700, /*dir=*/0x200000000000, /*flags=MS_LAZYTIME|MS_NOSUID*/ 0x2000002, /*opts=*/0x200000000100, /*chdir=*/0xfe, /*size=*/0x60ee, /*img=*/0x2000000076c0); break; case 1: syz_clone(/*flags=CLONE_SETTLS|CLONE_PARENT|CLONE_FS*/ 0x88200, /*stack=*/0, /*stack_len=*/0, /*parentid=*/0, /*childtid=*/0, /*tls=*/0); break; case 2: syscall(__NR_sendmsg, /*fd=*/-1, /*msg=*/0ul, /*f=*/0ul); break; case 3: syscall(__NR_getsockname, /*fd=*/-1, /*addr=*/0ul, /*addrlen=*/0ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-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=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); setup_sysctl(); const char* reason; (void)reason; if ((reason = setup_802154())) printf("the reproducer may not work as expected: 802154 injection setup " "failed: %s\n", reason); use_temporary_dir(); do_sandbox_none(); return 0; }