// https://syzkaller.appspot.com/bug?id=0a867286c20a43cc8e88b04419272b786d8805b5 // 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 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif #ifndef __NR_openat #define __NR_openat 56 #endif #ifndef __NR_write #define __NR_write 64 #endif static unsigned long long procid; 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 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_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 int netlink_add_addr(struct nlmsg* nlmsg, int sock, const char* dev, const void* addr, int addrsize) { struct ifaddrmsg hdr; memset(&hdr, 0, sizeof(hdr)); hdr.ifa_family = addrsize == 4 ? AF_INET : AF_INET6; hdr.ifa_prefixlen = addrsize == 4 ? 24 : 120; hdr.ifa_scope = RT_SCOPE_UNIVERSE; hdr.ifa_index = if_nametoindex(dev); netlink_init(nlmsg, RTM_NEWADDR, NLM_F_CREATE | NLM_F_REPLACE, &hdr, sizeof(hdr)); netlink_attr(nlmsg, IFA_LOCAL, addr, addrsize); netlink_attr(nlmsg, IFA_ADDRESS, addr, addrsize); return netlink_send(nlmsg, sock); } static void netlink_add_addr4(struct nlmsg* nlmsg, int sock, const char* dev, const char* addr) { struct in_addr in_addr; inet_pton(AF_INET, addr, &in_addr); int err = netlink_add_addr(nlmsg, sock, dev, &in_addr, sizeof(in_addr)); if (err < 0) { } } static void netlink_add_addr6(struct nlmsg* nlmsg, int sock, const char* dev, const char* addr) { struct in6_addr in6_addr; inet_pton(AF_INET6, addr, &in6_addr); int err = netlink_add_addr(nlmsg, sock, dev, &in6_addr, sizeof(in6_addr)); if (err < 0) { } } static void netlink_add_neigh(struct nlmsg* nlmsg, int sock, const char* name, const void* addr, int addrsize, const void* mac, int macsize) { struct ndmsg hdr; memset(&hdr, 0, sizeof(hdr)); hdr.ndm_family = addrsize == 4 ? AF_INET : AF_INET6; hdr.ndm_ifindex = if_nametoindex(name); hdr.ndm_state = NUD_PERMANENT; netlink_init(nlmsg, RTM_NEWNEIGH, NLM_F_EXCL | NLM_F_CREATE, &hdr, sizeof(hdr)); netlink_attr(nlmsg, NDA_DST, addr, addrsize); netlink_attr(nlmsg, NDA_LLADDR, mac, macsize); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static struct nlmsg nlmsg; static int tunfd = -1; #define TUN_IFACE "syz_tun" #define LOCAL_MAC 0xaaaaaaaaaaaa #define REMOTE_MAC 0xaaaaaaaaaabb #define LOCAL_IPV4 "172.20.20.170" #define REMOTE_IPV4 "172.20.20.187" #define LOCAL_IPV6 "fe80::aa" #define REMOTE_IPV6 "fe80::bb" #define IFF_NAPI 0x0010 static void initialize_tun(void) { tunfd = open("/dev/net/tun", O_RDWR | O_NONBLOCK); if (tunfd == -1) { printf("tun: can't open /dev/net/tun: please enable CONFIG_TUN=y\n"); printf("otherwise fuzzing or reproducing might not work as intended\n"); return; } const int kTunFd = 200; if (dup2(tunfd, kTunFd) < 0) exit(1); close(tunfd); tunfd = kTunFd; struct ifreq ifr; memset(&ifr, 0, sizeof(ifr)); strncpy(ifr.ifr_name, TUN_IFACE, IFNAMSIZ); ifr.ifr_flags = IFF_TAP | IFF_NO_PI; if (ioctl(tunfd, TUNSETIFF, (void*)&ifr) < 0) { exit(1); } char sysctl[64]; sprintf(sysctl, "/proc/sys/net/ipv6/conf/%s/accept_dad", TUN_IFACE); write_file(sysctl, "0"); sprintf(sysctl, "/proc/sys/net/ipv6/conf/%s/router_solicitations", TUN_IFACE); write_file(sysctl, "0"); int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock == -1) exit(1); netlink_add_addr4(&nlmsg, sock, TUN_IFACE, LOCAL_IPV4); netlink_add_addr6(&nlmsg, sock, TUN_IFACE, LOCAL_IPV6); uint64_t macaddr = REMOTE_MAC; struct in_addr in_addr; inet_pton(AF_INET, REMOTE_IPV4, &in_addr); netlink_add_neigh(&nlmsg, sock, TUN_IFACE, &in_addr, sizeof(in_addr), &macaddr, ETH_ALEN); struct in6_addr in6_addr; inet_pton(AF_INET6, REMOTE_IPV6, &in6_addr); netlink_add_neigh(&nlmsg, sock, TUN_IFACE, &in6_addr, sizeof(in6_addr), &macaddr, ETH_ALEN); macaddr = LOCAL_MAC; netlink_device_change(&nlmsg, sock, TUN_IFACE, true, 0, &macaddr, ETH_ALEN, NULL); close(sock); } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } 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)) { } if (symlink("/dev/binderfs", "./binderfs")) { } } 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"); initialize_tun(); sandbox_common_mount_tmpfs(); loop(); exit(1); } uint64_t r[1] = {0xffffffffffffffff}; void loop(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$bcachefs arguments: [ // fs: ptr[in, buffer] { // buffer: {62 63 61 63 68 65 66 73 00} (length 0x9) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x8080 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYRESDEC: ANYRES64 (resource) // } // union ANYUNION { // ANYRES16: ANYRES16 (resource) // } // union ANYUNION { // ANYRESOCT: ANYRES64 (resource) // } // union ANYUNION { // ANYRES16: ANYRES16 (resource) // } // union ANYUNION { // ANYRESHEX: ANYRES64 (resource) // } // union ANYUNION { // ANYRES64: ANYRES64 (resource) // } // } // } // chdir: int8 = 0xfe (1 bytes) // size: len = 0x67e5 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x67e5) // } // ] // returns fd_dir memcpy((void*)0x20000000, "bcachefs\000", 9); memcpy((void*)0x20006780, "./file0\000", 8); sprintf((char*)0x20000440, "%020llu", (long long)-1); *(uint16_t*)0x20000454 = -1; sprintf((char*)0x20000456, "%023llo", (long long)-1); *(uint16_t*)0x2000046d = -1; sprintf((char*)0x2000046f, "0x%016llx", (long long)-1); *(uint64_t*)0x20000481 = -1; memcpy( (void*)0x2000cf80, "\x78\x9c\xec\xdd\x0d\x94\x1c\x75\x9d\x37\xfa\xaa\xe9\xce\x64\x26\xc3\x90" "\x04\x83\x06\x41\x0c\x89\xbc\xec\xfa\x42\x50\x88\x89\xa8\x8c\x08\x04\xc2" "\x8b\x88\xe0\xc2\x85\x35\x04\x32\x68\x24\x04\xc8\x8b\xb0\xbc\x48\x16\x17" "\x41\x61\x57\x10\x58\xd1\x5d\x65\x39\x77\x95\x83\xdc\xeb\x9e\x7b\xbc\xdc" "\x05\xbd\x8f\xab\xf8\x2c\x8a\x70\xf0\x39\xa2\xfb\xc2\x8a\xa2\xe8\x2a\x82" "\x06\x04\x41\x11\x98\xe7\x4c\xa6\x2b\xe9\xfe\x77\xd7\x54\x77\xcf\xbf\x92" "\x46\x3f\x9f\x73\x48\xf3\xef\xf9\xd5\xaf\xfe\xfd\xed\xaa\x9a\xaa\x9e\x9e" "\xe9\x04\x00\x00\x80\x3f\x0a\x77\x5d\xb6\xee\xe9\x33\xee\xbb\xfa\x96\xff" "\x7c\xff\xa9\xdf\xde\xf8\x96\x67\x36\x25\x43\x95\xcd\xf7\x0f\xd4\xbe\x3e" "\x90\xfd\xcf\xf9\xdb\x6d\x8a\x94\xe8\xb8\x27\xbe\xdb\x5f\x3f\x1e\xae\x0e" "\x57\x93\x16\xdb\xc5\x19\x0f\xdc\xfe\xfd\xdf\x8e\x2e\x3d\xfd\xe6\xef\x5c" "\xfa\xf1\x73\x2f\x1d\x5c\x74\xeb\xe2\x5b\xdf\x7b\xe3\x65\x6f\xff\xdc\x6d" "\x5f\x38\xef\xcf\x77\xba\xf4\x8b\x3f\x2d\x5a\x4f\xb6\x19\xcd\xd9\x3a\x4e" "\xbf\x93\x26\xc9\xcf\x9e\xdf\x7b\xd6\x3f\xfd\xf5\x09\x73\xc7\xef\x4b\x93" "\x24\x99\x9e\x56\x37\x26\xb3\x67\xff\x65\xdf\xd7\x66\xa7\x41\x8b\x79\xcf" "\x26\x49\xb2\xb2\x56\x37\x5c\xdd\x7d\xf3\xbf\x0f\x7d\x6d\xe2\x8b\x17\x7f" "\xe9\x43\xef\x1b\xbf\xdd\x78\xe5\xf4\x86\x85\x66\x06\x4d\x6c\xef\x7f\xdc" "\xc6\xb7\xbf\xa1\x24\x49\xae\xae\x8d\x0f\x7f\xed\x3d\xa3\x5f\x9d\xbb\xf4" "\x89\x2b\xbf\x7f\xf8\xf3\x07\x5c\xb6\xe1\x97\x49\x5f\x56\x39\x92\x8c\x6f" "\x49\x17\xd5\xb6\xab\x64\x64\xc7\x53\x63\xcf\x23\xf3\xd0\x7f\xf5\x25\xe3" "\x5b\xe1\xe2\xda\x76\x98\x4e\x61\x5e\xc7\x26\x49\x32\xa3\x6e\xbc\xb8\x60" "\x1e\xfb\xb4\x39\xdf\x05\x39\xe3\x97\x07\xf7\x0f\x17\xf4\xc9\xbe\xbe\x77" "\x41\x7d\xb8\xf3\x67\x2a\xc1\xed\x40\xc1\xfa\xa6\x2a\x6f\x1e\xdd\xd6\x15" "\xd9\x31\x52\x9f\x3c\x45\xf3\xcc\x8e\x97\xff\x58\xbb\x9d\xd3\x45\xff\x1d" "\x6a\xff\x15\x6d\x0b\x53\x31\xfe\xfc\x0f\x26\x49\xf2\xb6\xda\x38\xdb\x0e" "\x66\xd6\x32\x1c\xac\xce\x0b\x96\xd8\x21\x39\x2a\x39\x3a\x39\x26\x39\x24" "\x39\x34\x39\x2c\x59\x9a\x1c\x9e\x2c\x4b\x8e\x48\x8e\x4c\x8e\x4d\x66\x34" "\xd5\x0e\xe7\xd4\xce\x4e\x8f\x4d\x76\x68\xaa\x4e\x93\x59\x69\xa5\x36\xa7" "\x4a\x9a\xf4\xa5\x49\x75\x4b\xcc\x87\xa4\x49\x52\xff\x0d\x76\x60\xcb\x32" "\x7d\xc9\xb4\xba\xfb\xc7\x77\xef\xe9\x2d\x1e\x67\x76\x7f\xd6\xf0\x8a\xda" "\x71\x60\xa8\x76\xdf\x50\xba\x53\xd3\x32\x63\x2d\x64\x5f\xbb\xfc\xc1\x6b" "\x3e\xff\xc0\x2e\x17\xec\x3b\xab\x55\xa8\xe3\x3d\x2f\x4a\x6b\xfd\xd3\xae" "\xfa\x7f\xfd\xac\x47\x87\xa7\x1f\x74\xcf\x0d\xb9\xfd\x57\x66\xfd\xfb\xba" "\xea\x7f\xee\x6e\x4b\x0e\xdb\xb0\x72\xe1\xca\xdc\xfe\xe7\x64\xfd\x2b\x5d" "\xf5\xff\xf0\x85\xd7\x9c\x75\xc7\x37\xee\xbf\x2e\xb7\xff\x15\x59\xff\x6a" "\x57\xfd\xaf\x3a\xee\xdc\x23\xaf\xb8\x7e\xe3\x63\x79\xc7\xdd\x74\x9f\xac" "\xff\x40\x77\xf3\x5f\x7d\xd7\x2d\x17\x9d\xb0\xec\x7b\xb9\xf3\x3f\x31\xeb" "\x3f\xd8\x55\xff\xb1\x3b\x0e\x1e\x9a\xf9\x6c\xff\x65\xb9\xfd\x8f\xca\xfa" "\xcf\xe8\xaa\xff\x57\x7e\x78\xf1\x4d\x77\x3f\x7c\xe3\xa6\xdc\xfe\x0b\xb3" "\xfe\x43\x5d\xf5\xbf\xf3\xe8\xdb\xef\x5f\xba\x60\xcf\x4b\x72\xfb\xef\x9f" "\xf5\x1f\xee\xaa\xff\xbd\x37\x3f\x72\xf2\xbd\x77\xdd\xf3\x5c\x6e\xff\x53" "\xb2\xfe\x33\xbb\xea\x3f\xf0\xf9\x1f\xbc\xe3\xe0\xbb\x0f\xfd\x54\x6e\xff" "\x91\xac\xff\xac\xae\xfa\xef\xf1\x89\x19\xa7\xfd\xfe\xd6\x35\x37\xe4\x7d" "\x5f\x4d\xcf\xcf\xfa\xcf\xe9\x72\xfb\xdf\x75\xcd\xc8\x9d\x95\x27\x72\xe7" "\xbf\x38\xd6\x77\x52\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x60\xbb\xfb\xd4\xf9\x4f\xd5\x0f\x87" "\xab\xc3\xd5\xf1\xdb\xbb\x2e\x5b\xf7\xf4\x19\xf7\x5d\x7d\xcb\x7f\xbe\xff" "\xd4\x6f\x6f\x7c\xcb\x33\x9b\xce\x78\xe0\xf6\xef\xff\x76\x74\xe9\xe9\x37" "\x7f\xe7\xd2\x8f\x9f\x7b\xe9\xe0\xa2\x5b\x17\xdf\xfa\xde\x1b\x2f\x7b\xfb" "\xe7\x6e\xfb\xc2\x79\x7f\xbe\xd3\xa5\x5f\xfc\x69\xd1\x6a\x06\x06\x26\x6e" "\xe7\x64\xe3\x24\x49\xbf\x93\x26\xc9\xcf\x9e\xdf\x7b\xd6\x3f\xfd\xf5\x09" "\x73\xc7\xef\x4b\x93\x24\x99\x9e\x56\x37\x26\xb3\x67\xff\x65\xdf\xd7\x66" "\xa7\x41\x8b\x79\xcf\x26\x49\xb2\xb2\x56\x37\x5c\xdd\x7d\xf3\xbf\x0f\x7d" "\x6d\xe2\x8b\x17\x7f\xe9\x43\xef\x1b\xbf\xdd\x78\xe5\xf4\x86\x85\x66\x06" "\x4d\xc2\xc7\x95\x0c\x55\xb2\xf9\x34\xcc\x33\x39\xbf\x9d\xf0\x78\xb1\x19" "\xdf\xfe\x86\x92\x24\xb9\xba\x36\x3e\xfc\xb5\xf7\x8c\x7e\x75\xee\xd2\x27" "\xae\xfc\xfe\xe1\xcf\x1f\x70\xd9\x86\x5f\x26\x7d\x59\xe5\x48\x32\xbe\x25" "\x5d\x54\xdb\xae\x92\x91\x1d\x4f\x8d\x3d\x8f\xcc\x43\xff\xd5\x97\x8c\x6f" "\x85\x8b\x6b\xdb\x61\x3a\x85\x79\x1d\x9b\x24\xc9\x8c\xba\xf1\xe2\x82\x79" "\xec\xd3\xe6\x7c\x17\xe4\x8c\x5f\x1e\xdc\x3f\x5c\xd0\x27\xfb\xfa\xde\x05" "\xf5\xe1\xce\x9f\xa9\x04\xb7\x03\x05\xeb\x9b\xaa\xbc\x79\x74\x5b\x57\x64" "\xc7\x48\x7d\xf2\x14\xcd\x33\x3b\x5e\xfe\x63\xed\x76\x4e\x17\xfd\x77\xa8" "\xfd\x57\xb4\x2d\x4c\xc5\xf8\xf3\x3f\x98\x24\xc9\xdb\x6a\xe3\x6c\x3b\x98" "\x59\xcb\x70\xb0\x3a\x2f\x58\x62\x87\xe4\xa8\xe4\xe8\xe4\x98\xe4\x90\xe4" "\xd0\xe4\xb0\x64\x69\x72\x78\xb2\x2c\x39\x22\x39\x32\x39\x36\x99\xd1\x54" "\x3b\x9c\x53\x3b\x3b\x3d\x36\xd9\xa1\xa9\x3a\x4d\x66\xa5\x95\xda\x9c\x2a" "\x69\xd2\x97\x26\xd5\x2d\x31\x1f\x92\x26\x49\x7f\x5d\xed\xc0\x96\x65\xfa" "\x92\x69\x75\xf7\x8f\xef\xde\xd3\x5b\x3c\xce\xec\xfe\xac\xe1\x15\xb5\xe3" "\xc0\x50\xed\xbe\xa1\x74\xa7\xa6\x65\xc6\x5a\xc8\xbe\x76\xf9\x83\xd7\x7c" "\xfe\x81\x5d\x2e\xd8\x77\x56\xb0\xcc\xcf\xf7\xab\xcd\xeb\xa2\xb4\xd6\x3f" "\xed\xaa\xff\xd7\xcf\x7a\x74\x78\xfa\x41\xf7\xdc\x10\xf6\xdf\x92\xd5\xca" "\xac\x7f\x5f\x57\xfd\xcf\xdd\x6d\xc9\x61\x1b\x56\x2e\x5c\x99\xdb\xff\x9c" "\xac\x7f\xa5\xab\xfe\x1f\xbe\xf0\x9a\xb3\xee\xf8\xc6\xfd\xd7\xe5\xf6\xbf" "\x22\xeb\x5f\xed\xaa\xff\x55\xc7\x9d\x7b\xe4\x15\xd7\x6f\x7c\x2c\xef\xb8" "\x9b\xee\x93\xf5\x1f\xe8\x6e\xfe\xab\xef\xba\xe5\xa2\x13\x96\x7d\x2f\x77" "\xfe\x27\x66\xfd\x07\xbb\xea\x3f\x76\xc7\xc1\x43\x33\x9f\xed\xbf\x2c\xb7" "\xff\x51\x59\xff\x19\x5d\xf5\xff\xca\x0f\x2f\xbe\xe9\xee\x87\x6f\xdc\x94" "\xdb\x7f\x61\xd6\x7f\xa8\xab\xfe\x77\x1e\x7d\xfb\xfd\x4b\x17\xec\x79\x49" "\x6e\xff\xfd\xb3\xfe\xc3\x5d\xf5\xbf\xf7\xe6\x47\x4e\xbe\xf7\xae\x7b\x9e" "\xcb\xed\x7f\x4a\xd6\x7f\x66\x57\xfd\x07\x3e\xff\x83\x77\x1c\x7c\xf7\xa1" "\x9f\xca\xed\x3f\x92\xf5\x9f\xd5\x55\xff\x3d\x3e\x31\xe3\xb4\xdf\xdf\xba" "\xe6\x86\xbc\xef\xab\xe9\xf9\x59\xff\x39\x79\xfd\x2b\x93\xf5\xbf\xea\xb8" "\x5d\xd7\x8c\xdc\x59\x79\x22\x77\xfe\x8b\x63\x7d\x27\x05\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xe0\xc5\x60\xdd\x1b\x77\xfc\xd7\xfa\xf1\xf1\x1f\x7d" "\xe0\x92\x25\xc7\xee\xbc\x34\xad\x8d\x87\xab\x49\xb2\x47\x92\x24\x37\xef" "\xd8\xb8\x5c\x35\x49\x92\xc1\x24\x49\x4e\x3b\xfd\x7d\xaf\x5f\xbe\x72\xf4" "\x03\xcb\x37\xac\x5b\xf1\xde\xd1\xe5\xab\xd6\xac\x5a\xdf\x50\x37\x90\xcc" "\x99\xb8\x4d\xe7\x27\xd3\x92\x24\x49\xeb\xbe\x56\x69\x35\xa1\xbe\xd6\xf3" "\x6c\x58\xdf\xfa\xb5\x2b\xd6\xac\x5b\x7e\xd6\x8a\xb5\x67\x6e\x5e\xf5\xba" "\xd3\xb6\xd6\x4d\x4b\xaa\xc9\x8c\xf1\xdb\xb4\xbd\xc7\x3f\xbc\xb9\x73\x92" "\x0c\xa7\xbb\xb6\x55\x9f\xb5\x5d\x50\x1b\x8d\x04\xf7\x17\xad\xb6\x3e\x8f" "\x97\x34\xe5\xd1\xbc\x74\x76\xcf\xc8\x24\x7d\x76\x6b\x23\xd7\xb1\x9a\xf0" "\xfe\x58\xb9\x86\x77\x17\xe5\x1a\xd6\xc7\xcc\xf5\xad\x91\x72\x5d\xda\x03" "\xb9\x86\xbb\x43\x51\xae\x61\x7d\xcc\x5c\x57\x45\xca\x75\x6d\x0f\xe4\x1a" "\xae\xb3\x28\xd7\xb0\x3e\x66\xae\xd7\x45\xca\xf5\xd3\x3d\x90\x6b\x35\x18" "\x17\xe5\x1a\xd6\xc7\xcc\xf5\x5f\x22\xe5\xfa\xcd\x1e\xc8\x75\x5a\x30\x2e" "\xca\x35\xac\x8f\x99\xeb\x2f\x22\xe5\xfa\x64\x0f\xe4\xda\x1f\x8c\x8b\x72" "\x0d\xeb\x63\xe6\xba\x73\x1a\x27\xd7\xdd\x9b\xfa\x34\x2b\x3b\xd7\xe9\xc1" "\xb8\x28\xd7\xb0\x3e\x66\xae\x23\x91\x72\x3d\xa2\x07\x72\x1d\x08\xc6\x45" "\xb9\x86\xf5\x31\x73\x3d\x33\x52\xae\xeb\x7b\x20\xd7\xc1\x60\x5c\x94\x6b" "\x58\x1f\x33\xd7\xbf\x8d\x94\xeb\x8d\x3d\x90\xeb\x8c\x60\x5c\x94\x6b\x58" "\x1f\x33\xd7\xaf\x45\xca\xf5\x5b\x31\x72\x5d\xbf\x76\x74\x74\xf9\x86\x73" "\x56\xae\x58\x3f\xba\x7c\xcd\xd9\x2b\x47\xd7\x2d\x3f\x6f\xed\xaa\xf5\xeb" "\x47\xd7\x14\x3c\x20\xe8\x54\xda\xfe\x76\x57\xb4\x3f\x2f\x0b\xc6\x45\xfb" "\x73\x58\xdf\xb8\x3f\x57\x3a\xde\x9f\x87\x92\xea\xe6\x9a\xa1\x74\xa7\xa6" "\xaf\x8d\xb5\x90\x7d\xed\xaa\xe3\xce\x3d\xf2\x8a\xeb\x37\x3e\x16\x7e\x3f" "\xdc\x32\xaf\x7d\x26\xd6\x3c\x98\x0c\x4f\xdc\xa6\xbb\xe5\x54\x36\x3e\xa2" "\x6a\x3a\xb1\xf7\x8f\xe4\xac\xbf\xbf\x76\xdc\xe8\x4f\xe7\x27\xef\xec\x6b" "\x7c\x7c\x7d\x95\xb4\xe9\xe1\x66\x79\xd4\x2f\x77\x62\xb0\x5c\x7f\x78\xd1" "\x54\xb7\x5c\xfd\x71\x6a\x79\x5f\x78\x9c\x6a\x3e\x52\xb5\x73\xbc\x7b\x5f" "\x53\x9f\x66\x65\x7f\x1f\x19\x0a\xc6\x45\xdb\x5d\x58\x1f\xf3\xfb\xc8\x47" "\x9b\xf2\xe8\xee\xfb\xc8\xb5\xb1\x72\xcd\x5e\xf4\xe9\x22\xd7\x1d\x82\x71" "\x51\xae\x61\x7d\xcc\x5c\x6f\x8b\x94\x6b\xd2\x03\xdb\xeb\x70\xd3\x78\xf2" "\x5c\xc3\xfa\x98\xb9\x3e\x14\x29\xd7\x47\x7a\x20\xd7\xe0\xc7\x10\x85\xb9" "\x86\xf5\x31\x73\x1d\xaa\xc4\xc9\x75\x4e\x53\x9f\x66\x65\xe7\x3a\x33\x18" "\x17\xe5\x1a\xd6\xc7\xcc\x75\x51\xa4\x5c\x0f\xea\x81\x5c\x67\x05\xe3\xa2" "\x5c\xc3\xfa\x98\xb9\xae\x88\x94\xeb\xfb\x7b\x20\xd7\xd9\xc1\xb8\x28\xd7" "\xb0\x3e\x66\xae\x57\x45\xca\xf5\xfa\x1e\xc8\x35\x3c\xab\x2e\xca\x35\xac" "\x8f\x99\xeb\x3f\x47\xca\xf5\xab\x3d\x90\xeb\x4b\x82\x71\x51\xae\x61\x7d" "\xcc\x5c\x7f\x1c\x29\xd7\x47\x7b\x20\xd7\x39\xc1\xb8\x28\xd7\xb0\x3e\x66" "\xae\xc3\xd5\x38\xb9\xbe\xb4\xa9\x4f\xb3\xb2\x73\xdd\x39\x18\x17\xe5\x1a" "\xd6\xc7\xcc\x75\x71\xa4\x5c\xdf\xd6\x03\xb9\xbe\x34\x18\x17\xe5\x1a\xd6" "\xc7\xcc\xf5\xf4\x48\xb9\xae\xee\x81\x5c\x5f\x16\x8c\x8b\x72\x0d\xeb\x63" "\xe6\xfa\x37\x91\x72\xfd\x44\x0f\xe4\x3a\x37\x18\x17\xe5\x1a\xd6\xc7\xcc" "\xf5\x8e\x48\xb9\xde\xd9\x03\xb9\xee\x12\x8c\x8b\x72\x0d\xeb\x63\xe6\xfa" "\x93\x48\xb9\xfe\xb2\x07\x72\x7d\x79\x30\x2e\xca\x35\xac\x8f\x99\xeb\xcc" "\x69\x71\x72\x9d\xdb\xd4\xa7\x59\xd9\xb9\x86\xe9\x15\xe5\x1a\xde\x1b\x33" "\xd7\x37\x45\xca\xf5\xed\x3d\x90\x6b\xf8\x53\x86\xa2\x5c\xc3\xfa\x98\xb9" "\x8e\x46\xca\x75\x4d\x0f\xe4\xfa\x8a\x60\x5c\x94\x6b\x58\x1f\x33\xd7\xab" "\x23\xe5\xfa\xc9\x1e\xc8\x75\xf7\x60\x5c\x94\x6b\x58\x1f\x33\xd7\x2f\x47" "\xca\xf5\x7f\xf6\x40\xae\xaf\x0c\xc6\x45\xb9\x86\xf5\x31\x73\xfd\xef\x48" "\xb9\x6e\xea\x81\x5c\xe7\x05\xe3\xa2\x5c\xc3\xfa\x98\xb9\xce\xee\x8f\x93" "\xeb\xcb\x9b\xfa\x34\x2b\x3b\xd7\x3d\x82\x71\x51\xae\x61\x7d\xcc\x5c\xdf" "\x1c\x29\xd7\x43\x7b\x20\xd7\xf9\xc1\xb8\x28\xd7\xb0\x3e\x66\xae\xef\x8d" "\x94\xeb\x39\x3d\x90\xeb\x82\x60\x5c\x94\x6b\x58\x1f\x33\xd7\x8f\x47\xca" "\xf5\xef\x7a\x20\xd7\x57\x05\xe3\xa2\x5c\xc3\xfa\x98\xb9\xfe\x8f\x48\xb9" "\xde\xd5\x03\xb9\xee\x19\x8c\x8b\x72\x0d\xeb\x63\xe6\xfa\xf3\x48\xb9\x3e" "\xd1\x03\xb9\xee\x15\x8c\x8b\x72\x0d\xeb\x63\xe6\xfa\x92\xe9\x71\x72\xdd" "\xad\xa9\x4f\xb3\xb2\x73\xdd\x3b\x18\x17\xe5\x1a\xd6\x6f\xc9\xf5\x85\xb1" "\x29\xe7\xfa\xd6\x48\xb9\x2e\xed\x81\x5c\xf7\x09\xc6\x45\xb9\x86\xf5\x31" "\xb7\xd7\x55\x91\x72\x5d\xdb\x03\xb9\xfe\x49\x30\x2e\xca\x35\xac\x8f\x99" "\xeb\x75\x91\x72\xfd\x74\x0f\xe4\xfa\xa7\xc1\xb8\x28\xd7\xb0\x3e\x66\xae" "\xff\x12\x29\xd7\x6f\xf6\x40\xae\xaf\x0e\xc6\x45\xb9\x86\xf5\x31\x73\xfd" "\x45\xa4\x5c\x9f\xec\x81\x5c\x5f\x13\x8c\x8b\x72\x0d\xeb\x63\xe6\xba\xf3" "\x40\x9c\x5c\x77\x6f\xea\xd3\xac\xec\x5c\x5f\x1b\x8c\x8b\x72\x0d\xeb\x63" "\xe6\x3a\x12\x29\xd7\x23\x7a\x20\xd7\xd7\x05\xe3\xa2\x5c\xc3\xfa\x98\xb9" "\x9e\x19\x29\xd7\xf5\x3d\x90\xeb\xbe\xc1\xb8\x28\xd7\xb0\x3e\x66\xae\x7f" "\x1b\x29\xd7\x1b\x7b\x20\xd7\x85\xc1\xb8\x28\xd7\xb0\x3e\x66\xae\x5f\x8b" "\x94\xeb\xb7\x7a\x20\xd7\xfd\x82\x71\x51\xae\x61\x7d\xcc\x5c\x1f\x8b\x94" "\xeb\x6f\x7a\x20\xd7\xd7\x07\xe3\xa2\x5c\xc3\xfa\x98\xb9\xbe\x6c\x30\x4e" "\xae\xf3\x9a\xfa\x34\x2b\x3b\xd7\x37\x04\xe3\xa2\x5c\xc3\xfa\x98\xb9\x1e" "\x1c\x29\xd7\x23\x7b\x20\xd7\xfd\x83\x71\x51\xae\x61\x7d\xcc\x5c\xcf\x8a" "\x94\xeb\x07\x7a\x20\xd7\x03\x82\x71\x51\xae\x61\x7d\x6e\xae\xe1\x1f\x0e" "\xc8\x51\x9f\xc7\x0d\x91\x72\xbd\xa9\x07\x72\x5d\x14\x8c\x8b\x72\x0d\xeb" "\x63\x6e\xaf\x5f\x8f\x94\xeb\xbd\x3d\x90\xeb\x1b\x83\x71\x51\xae\x61\x7d" "\xcc\x5c\x7f\x15\x29\xd7\x67\x7a\x20\xd7\xc5\xc1\xb8\x28\xd7\xb0\x3e\x66" "\xae\xbb\xcc\x88\x93\xeb\xfc\xa6\x3e\xcd\xca\xce\x75\x49\x30\x2e\xca\x35" "\xac\x8f\x99\xeb\x21\x91\x72\x3d\xba\x07\x72\x7d\x53\x30\x2e\xca\x35\xac" "\x8f\x99\xeb\xd9\x91\x72\x3d\xbf\x07\x72\x3d\x30\x18\x17\xe5\x1a\xd6\xc7" "\xcc\xf5\x53\x91\x72\xfd\x3f\x7b\x20\xd7\x37\x07\xe3\xa2\x5c\xc3\xfa\x98" "\xb9\xfe\x6b\xa4\x5c\xef\x2b\x39\xd7\xfe\x36\x72\x7d\x4b\x30\x2e\xca\x35" "\xac\x4f\x93\x74\x63\x12\x29\xd7\xc7\x23\xe5\xfa\xbb\x1e\xd8\x5e\xdf\x1a" "\x8c\x8b\x72\x0d\xeb\x63\x6e\xaf\xbb\x0e\xc5\xc9\xf5\x55\x4d\x7d\x9a\x95" "\x9d\xeb\x41\xc1\xb8\x28\xd7\xb0\x3e\x66\xae\x87\x45\xca\xf5\x1d\x3d\x90" "\x6b\x38\xbf\xa2\x5c\xc3\xfa\x30\xd7\x81\xe0\xfe\x4e\x72\x3d\xb7\x83\x5c" "\xb3\xf5\x2c\x6e\xd1\xe7\x82\x1e\xc8\xf5\xa1\xe0\xfe\xa2\x5c\xc3\xfa\x98" "\xdb\xeb\xdf\x47\xda\x5e\x3f\xdb\x03\xb9\xfe\xa8\xc3\x5c\xc3\xfa\x98\xb9" "\x7e\x23\x52\xae\xff\xab\x07\x72\xfd\x71\x87\xb9\x86\xf5\x31\x73\xfd\x75" "\xa4\x5c\x7f\xdf\x03\xb9\x3e\xdc\x61\xae\x61\x7d\xcc\x5c\x5f\xb1\x43\x9c" "\x5c\xf7\x6a\xea\xd3\xac\xec\x5c\x7f\xd2\x61\xae\x0d\xf5\xfd\x71\x73\x3d" "\x3c\x52\xae\xef\xec\x81\x5c\x7f\xda\x61\xae\x61\x7d\xcc\x5c\xd7\x45\xca" "\xf5\xa2\x1e\xc8\xf5\xbf\x3b\xcc\x35\xac\x8f\x99\xeb\x67\x22\xe5\x7a\x73" "\x0f\xe4\xfa\xb3\x0e\x73\x0d\xeb\x63\xe6\x7a\x77\xa4\x5c\xbf\xd3\x03\xb9" "\xfe\xbc\xc3\x5c\xc3\xfa\x98\xb9\x3e\x15\x29\xd7\xe7\x7b\x20\xd7\x47\x3a" "\xcc\x35\xac\x8f\x99\xeb\x2b\x87\xe3\xe4\xba\x4f\x53\x9f\x66\x65\xe7\xfa" "\x8b\x0e\x73\x0d\xeb\x63\xe6\xba\x2c\x52\xae\xef\xea\x38\xd7\xc1\x77\x65" "\xf7\xc7\xca\xf5\xd1\x0e\x73\x0d\xeb\x63\xe6\xba\x21\x52\xae\x1f\x6c\xec" "\x53\x6d\xb5\xde\xb2\xb7\xd7\xc7\x3a\xcc\x35\xac\x8f\x99\xeb\x3f\x44\xca" "\xf5\x96\x1e\x38\x0e\xfc\xb2\xc3\x5c\xc3\xfa\x98\xb9\xde\x13\x29\xd7\xef" "\xf6\x40\xae\xbf\xea\x30\xd7\xb0\x3e\x66\xae\x4f\x47\xca\x75\xac\x07\x72" "\xdd\xd4\x61\xae\x61\x7d\xcc\x5c\xf7\xd8\x31\x4e\xae\x7f\xda\xd4\xa7\x59" "\xd9\xb9\x3e\xde\x61\xae\x61\x7d\xcc\x5c\x8f\x8a\x94\xeb\x09\x3d\x90\xeb" "\x13\x1d\xe6\x1a\xd6\xc7\xcc\xf5\xbc\x48\xb9\x6e\x9c\x42\xae\x69\xed\x6f" "\xde\x5f\xf4\xa5\x0f\xbd\x6f\x62\xdc\xd7\xf0\xd9\x6a\x7d\x2d\x3e\xbb\xaa" "\xfe\xfe\xa2\xc7\x0b\x00\x00\xdb\xd2\x4b\x7f\x73\xe3\x3b\xeb\xc7\xd9\xe7" "\xff\x67\x1f\x29\x95\xfd\x4d\xfb\xff\xaa\x9d\xf4\x66\xe7\xb3\xb1\xae\x37" "\x7e\xdd\xe1\xf5\x46\x58\x9f\xcd\x33\xc6\xf5\xc6\xb4\xe0\xf3\xd3\xbb\xbd" "\xde\xd8\xb1\xa9\x4f\xb3\xb2\xaf\xe3\x9e\xec\x30\xd7\xb0\x3e\x66\xae\x0b" "\x23\xe5\xba\xa4\x07\x72\x7d\xaa\xfd\x5c\x2b\xad\xea\x63\xe6\x7a\x72\xa4" "\x5c\x57\xf6\x40\xae\xbf\xe9\x70\x7b\x0d\xeb\x63\xe6\xfa\xe1\x48\xb9\x7e" "\xac\x07\x72\x7d\xba\xc3\x5c\xc3\xfa\x98\xb9\xfe\x3f\x91\x72\xfd\x52\x0f" "\xe4\xfa\x4c\x87\xb9\x86\xf5\x31\x73\xfd\x7e\xa4\x5c\x7f\xda\x03\xb9\xfe" "\xb6\xc3\x5c\xc3\xfa\x98\xb9\x4e\x4f\xe3\xe4\x3a\xab\xa9\x4f\xb3\xb2\x73" "\xfd\x5d\x87\xb9\x86\xf5\x31\x73\x7d\x7d\x5b\xb9\x8e\x6d\xbe\x73\xb2\x5c" "\x0f\xec\x81\x5c\x9f\xed\x30\xd7\xb0\x3e\x66\xae\x7f\x1e\x69\x7b\x3d\xa3" "\x07\x72\xfd\x7d\x87\xb9\x86\xf5\x31\x73\xbd\x22\x52\xae\xd7\xf4\x40\xae" "\xcf\x75\x98\x6b\x58\x1f\x33\xd7\x2f\x46\xca\xf5\xff\xef\x81\x5c\x9f\xef" "\x30\xd7\xb0\x3e\x66\xae\x3f\x88\x94\xeb\xcf\x7a\x20\xd7\x17\x3a\xcc\x35" "\xac\x8f\x99\xeb\x60\x5f\x9c\x5c\x77\x6a\xea\xd3\xac\xec\x5c\xc7\x3a\xcc" "\x35\xac\x8f\x99\xeb\xfe\x91\x72\x7d\x4b\x0f\xe4\xfa\xb6\x60\x5c\x94\x6b" "\x58\xdf\x98\x6b\xdf\x94\x72\x5d\xde\x94\x47\x5f\x53\x7d\x3b\xb9\xbe\xaf" "\x07\x72\x3d\x38\x18\x17\xe5\x1a\xd6\xc7\xcc\xf5\xa3\x91\x72\xbd\xb6\x07" "\x72\x7d\x7b\x30\x2e\xca\x35\xac\x8f\x99\xeb\x6d\x91\x72\xfd\xca\x36\xce" "\xf5\x99\x16\xbd\x0e\x09\xfa\x16\xe5\x1a\xd6\xc7\xcc\xf5\xa1\x48\xb9\x3e" "\xd2\x55\xae\x5b\xdf\x7e\x1b\x63\x7b\x3d\x34\x18\x17\xe5\x1a\xd6\xc7\xcc" "\x75\xa8\x12\x27\xd7\x39\x4d\x7d\x9a\x95\x7d\x1c\x38\x2c\x18\x17\xe5\x1a" "\xd6\xc7\xcc\x75\x51\xa4\x5c\x0f\xea\x81\x5c\x97\x06\xe3\xa2\x5c\xc3\xfa" "\xa2\x5c\x27\x6c\x6c\xbd\xf2\x20\x8f\x15\x91\x72\x7d\x7f\x0f\xe4\x7a\x78" "\x30\x2e\xca\x35\xac\x8f\xb9\xbd\x5e\x15\x29\xd7\xeb\x63\xe5\x3a\x1e\xe6" "\x19\x6b\x47\x47\xd7\x9d\xb3\xe2\xf4\xd1\xe5\xab\xd6\xac\x5a\xbf\xa5\x6e" "\x5a\x32\x34\x69\xae\xcb\x82\xf1\x78\xfd\xe6\xdb\x74\x97\x96\x8f\x27\xac" "\x8f\x35\x8f\xf0\xef\x25\xe4\xcd\xe3\xfa\xb4\x75\x7d\xc3\x3c\x4e\x5b\xbf" "\x76\x74\x7c\xfd\xeb\x46\xd7\xae\x6f\x7a\x7c\x33\x27\x9d\x47\x78\x77\x7f" "\x32\x73\xe2\x36\x0d\x3f\x81\xaf\x75\x7d\x5a\x7b\xce\xb6\xcc\x67\xf3\x54" "\x36\x9c\xb3\x72\xc5\xfa\xd1\xe5\x6b\xce\x5e\x39\xba\x6e\xf9\x79\x6b\x57" "\xad\x5f\x3f\xba\x26\x9b\xcf\xe4\xdb\xfd\xd1\xc1\xb8\x68\xbb\x0f\xeb\x1b" "\xb7\xfb\x4a\xc7\xdb\x7d\xd1\xf3\x16\xae\x2f\xef\x79\xeb\x9b\xa4\x7e\x46" "\x07\xcf\x73\x5e\xff\x8f\xe7\xd4\x0f\x25\x43\x9b\x1f\xe3\x50\xba\x53\xd3" "\xdc\xc7\x5a\xc8\xbe\x76\xe7\xd1\xb7\xdf\xbf\x74\xc1\x9e\x97\x0c\xb4\x7e" "\xd8\x49\xba\xff\xc4\x8a\x06\x93\xe1\x89\xdb\x34\xfc\xa4\xd6\xa4\xe5\x23" "\x1e\x4a\x27\xf6\xf2\x91\x9c\xf5\xf7\xd7\x8e\x0f\xfd\xe9\xfc\x24\xad\x36" "\x1e\x1f\xfa\x2a\x69\xd3\xb3\x90\x3d\x9f\xf5\xcb\x0d\x04\xcb\xf5\x0f\x35" "\xcf\x2a\x5b\xae\xfe\x78\x14\x3e\xd6\x4a\x8b\x23\x52\x3b\xc7\xb5\xb9\xd5" "\x48\xc7\xb5\x49\xf7\xe3\xc1\xc9\x5f\xef\x08\x7a\xef\x90\x4c\xfc\x21\xd6" "\x1d\xd2\xf0\x13\xf6\x5b\xd7\x87\x47\xf4\xb4\xcd\xf7\x76\xc7\xda\xef\x8f" "\x0d\xc6\x45\xfb\x7d\x58\x5f\xb4\xdf\xe7\x9f\x41\x64\xf3\x9b\x7c\xbf\x0f" "\xd7\x57\xb4\xdf\xb7\xaa\x6f\xb5\xdf\xe7\xed\xc7\x79\xfd\x3f\x96\xbb\xdf" "\xcf\xec\x6a\xbf\x1f\xf8\xfc\x0f\xde\x71\xf0\xdd\x87\x7e\x2a\x77\xbf\x1f" "\x69\x77\xbf\x6f\x7c\xc4\x33\x3b\xd8\xef\x37\x76\xb9\xdf\x5f\x1e\xee\xf7" "\x33\x9b\x67\xd5\x6a\xbf\xff\x9b\xa6\xfd\xb5\xbb\xfd\xfe\x13\xdb\x64\xbf" "\x1f\xe8\xe8\xfb\xf7\x8c\xda\x51\x6d\x46\xba\x73\x5b\xf5\xd9\x1c\x93\x59" "\xad\xfb\x37\xcd\x77\x8a\xfb\xf9\xbb\x82\x71\xd1\x7e\x1e\xd6\x17\xed\xe7" "\x45\x07\xad\xa2\xfd\x3c\x5c\x5f\xd1\x7e\xde\xaa\xbe\xd5\x7e\x9e\xb7\xdf" "\xe6\xf5\xbf\x2a\x77\x3f\x1f\xec\x6a\x3f\x1f\xbb\xe3\xe0\xa1\x99\xcf\xf6" "\x5f\x96\xbb\x9f\x1f\xd5\xee\x7e\xde\xf8\x88\x07\x3b\xd8\xcf\x9f\xef\x72" "\x3f\xaf\x4e\x0b\xf6\xf3\x16\x7f\x63\xbc\xd5\x7e\x3e\x34\x2d\xce\x7e\x3e" "\xa7\xa9\x4f\xb3\xa9\xef\xe7\x69\xee\x76\xd9\x6a\xff\x9c\x5d\x9b\xf9\xec" "\x34\xfc\x64\xf7\xd6\xf5\xd9\xfc\x5f\xb3\xe1\x9a\x13\x16\xff\xe8\xa9\xc5" "\x49\xb2\xf0\xa5\xf7\xef\xde\xf2\x57\xc7\x37\xdb\x34\x7a\xc4\xe9\x07\xb6" "\xf8\xb7\x49\xad\x71\xfd\xf3\x75\xcc\xb4\xe6\xf3\x89\x50\xf6\x30\x1b\xf2" "\x39\x63\xdd\xe6\x8b\xa8\x55\x2b\x56\xaf\xba\x60\xb4\xb1\xbe\x28\x9f\x34" "\x78\xbc\x3b\xd5\xd6\xb0\x53\x4e\x3e\x61\x7d\x36\xdf\x8f\x6d\xb8\xf0\xd7" "\xb7\xbf\xe1\xb6\x67\x93\x64\xe1\xce\x95\xdd\xa6\x9c\x4f\x3a\x32\xf6\xaa" "\x79\xf7\x5d\xf7\xdb\xcf\x3e\x55\xdb\x68\x66\xd7\x1e\x47\xaf\x3c\x6f\xdb" "\x6f\x3b\xea\x6b\xd9\x78\x5a\xd2\x37\xe9\xf3\xbc\x25\xcd\xda\xbc\x06\x6a" "\x0b\x0e\xa4\x33\xda\xaa\xcf\x9e\xf7\xea\xea\xb3\xd7\xad\x7f\xf5\x19\x67" "\x6f\x58\xb3\x72\xf3\xb8\x7e\xfb\x5d\xdb\xc1\xf6\x3b\x94\x54\xbb\x3a\x1e" "\x5f\x75\xdc\xb9\x47\x5e\x71\xfd\xc6\xc7\x72\x8f\xc7\xfb\xa4\xb5\xf5\x4c" "\x54\x4c\xf5\xf7\x33\x37\xb6\x73\x32\xff\x07\xe8\xe9\xdf\xa5\xcf\xd4\x8f" "\xb3\xf7\xff\x67\xc7\xf0\xec\xfd\xff\xef\xec\x9f\x18\x37\x1d\x97\xa6\x78" "\xbe\xf3\xee\x60\x5c\x74\xbe\x13\xd6\x67\xf3\xcc\xbd\xae\x99\xe2\xf9\x4e" "\xb8\xbe\xa2\xf3\x9d\x56\xf5\xad\xce\x77\xf2\xce\x5f\xf2\xfa\x7f\x24\xf7" "\x7c\x67\xa0\xab\xfd\xeb\xc3\xab\xef\xba\xe5\xa2\x13\x96\x7d\x2f\x77\xff" "\x3a\xb1\xdd\xf3\x9d\xc6\x47\x3c\xd0\xc1\xf9\xce\xae\xc1\xb9\x42\xbb\xe7" "\x3b\xf3\x83\xe5\xfa\x5b\x3c\x88\x56\xe7\x3b\x7f\x12\x2c\xd7\xed\xf9\xce" "\xeb\x9b\xfa\x34\x2b\x3c\xdf\x99\xe2\x7e\x73\x52\x30\x2e\xda\x6f\x4e\xaa" "\xcd\xe7\x92\x60\xce\x65\xed\x37\xe1\xfc\x8a\xf6\x9b\x56\xf5\xad\xf6\x9b" "\xbc\xfd\x20\xaf\xff\x87\x73\xf7\x9b\xb4\xab\xfd\xe6\xeb\x67\x3d\x3a\x3c" "\xfd\xa0\x7b\x6e\xc8\xdd\x6f\x56\xb6\xbb\xdf\x34\x3e\xe2\xb4\x83\xfd\xe6" "\xd2\x2e\xf7\x9b\x8f\x84\xfb\x4d\x8b\xe7\xae\xd5\x7e\x73\x75\xa4\xfd\xe6" "\x93\x3d\xb0\xdf\x9c\x12\x8c\x8b\xf6\x9b\xb0\xbe\xec\xfd\x26\x5c\x5f\xd1" "\x7e\xd3\xaa\xbe\xd5\x7e\x93\xb7\x1f\xe4\xf5\xff\x50\xee\x7e\xd3\xd7\xd5" "\x7e\x73\xee\x6e\x4b\x0e\xdb\xb0\x72\xe1\xca\xdc\xfd\xe6\x9c\x76\xf7\x9b" "\xc6\x47\xdc\xd7\xc1\x7e\xf3\x48\x97\xfb\xcd\xe3\xe1\x7e\xd3\xe2\xe4\xb7" "\xd5\x7e\xf3\x4c\xa4\xfd\x66\xbc\x68\xaa\xfb\xcd\xf2\xe5\x9b\xaf\x20\x4f" "\x5f\x3b\xba\x62\xfd\x68\x8b\xe5\x6b\xd7\x8f\x7d\x7b\xe7\x5c\x57\xf4\x75" "\x78\xfd\x18\xd6\x67\x73\x7e\x6e\xfe\xde\xf7\x1d\xf5\xab\x0f\xde\x3c\x7e" "\xfd\x38\xd9\x75\xd1\x3b\x3e\xfa\x8b\xf7\x1f\xd8\xe2\xdf\x40\x3a\x32\x76" "\xde\xac\xb7\xdd\x76\xea\x63\xff\x7e\xc4\xc4\x1d\xdb\xef\xfa\xb1\xf5\xf5" "\x5a\x78\xfd\x58\x29\x98\x4f\xa5\xab\xf9\xd4\x27\x94\xcd\xa7\xda\x72\x3e" "\x45\xd7\x8f\x5b\xd2\xac\xcd\x6b\x7a\x6d\xc1\xe9\x39\xd7\x8f\x61\x7d\xf6" "\xbc\x57\xcf\x58\xb5\x7a\x74\x61\xe3\x7e\xf4\xa6\xb4\xf5\xb6\x5b\x2f\xbc" "\xbe\x68\x73\xbb\xcd\x7d\x3c\x95\x0e\xb7\xdb\xb0\x3e\x9b\xef\x01\x0f\x2e" "\xdc\xf4\xc2\x37\x4f\xb8\x77\x62\xbb\xcd\x3b\x8a\xb5\xbd\xdd\x0e\x8e\x8c" "\x0d\xfe\xd5\x59\x87\x3d\x7f\xe4\xc6\xfd\xb6\xce\x6b\x46\x0f\xee\x4f\xbd" "\xba\x9f\x17\x6d\xc7\x59\xba\x7d\x6d\x6e\xc7\x61\x7d\xb6\x1d\x0c\xb4\xd8" "\x8e\xaf\xd9\x0e\xdb\x71\x35\xc8\x79\xc7\xda\x1a\x76\xcc\x79\x5e\xc2\xfa" "\xbf\x78\x78\xe2\x76\xc9\x07\x5e\xf7\xe9\x1f\x1f\x7f\xe2\x9e\x1b\x93\x85" "\xd5\x27\x5f\xd9\x9c\x45\x26\xef\x79\xa9\xcf\xe1\x17\x1d\xe4\x30\xad\x76" "\x80\x08\xcf\x33\xf2\xe6\xdb\xf0\xba\xe7\xf8\x19\xde\xe8\xf2\x55\x6b\x56" "\x8e\x9e\xbf\x7c\xe5\xe8\x19\x2b\x36\xac\xde\xf2\xf2\xf0\xb4\xcd\x3f\xd3" "\xc9\xcf\x2d\xdb\x53\xb3\xfe\xd9\x23\x9e\x91\xce\x6e\xa8\x1d\xc8\xa9\xdf" "\x77\xfd\x59\xe7\xec\xbb\xee\x2f\x2e\x78\xed\xaa\xb3\x56\xbc\x77\xf4\xbd" "\xa3\x6b\xf6\x5f\xb8\xe8\x8d\x0b\x17\x2d\x5a\xb4\xdf\xe2\x7d\x37\x6f\x1a" "\x13\xff\x6e\x7e\x3e\x66\x74\xf0\x7c\x64\xb9\x4d\xf5\xf9\xe8\x74\x3b\xc8" "\x5b\x6f\xf6\xb8\xf7\x6e\x73\xbd\xb1\xce\xc7\x97\x07\xe3\xa2\xf3\xf1\xb0" "\xbe\xec\xf3\xf1\x70\x7d\x45\xe7\xe3\xad\xea\x5b\x9d\x8f\xe7\x9d\x5f\xe7" "\xf5\xdf\x98\x7b\x3e\x9e\x74\x75\x3e\x7e\xf9\x83\xd7\x7c\xfe\x81\x5d\x2e" "\xd8\x37\xf7\x7c\xfc\xa2\x76\xcf\xc7\x83\x47\xdc\xc1\xf9\xf8\xc9\x7d\xdd" "\x9d\x8f\x9f\x16\x2c\xd7\xdf\x62\x56\xad\xce\xc7\x57\xf5\xc5\x39\x1f\x5f" "\xdb\xd4\xa7\x59\x9b\xe7\xe3\xab\x57\xad\x39\xb3\xc5\xd2\xce\x07\x3a\x9d" "\x57\xac\xe3\x6f\xa7\xc7\xc1\xa2\x3c\x8a\xd6\x3b\x9e\x47\x37\xeb\x0d\x0c" "\x8e\x8c\xed\xfc\xa6\x93\xaa\xe7\x8f\xf5\xbd\x67\xe2\x8e\xa2\xf3\xa3\x9d" "\xdf\x74\xd2\x9e\xe3\xd5\xed\x9e\x1f\x85\xf5\x5b\xbe\x9f\x8e\x7f\xfb\xdb" "\x6f\xcb\xf7\xf7\x96\x3f\x16\x9a\xec\xfb\xfb\x54\xcf\x8b\xa6\x75\x78\x7e" "\x1f\xd6\x67\xcf\xc7\x4d\xdf\x7a\x6a\xd1\xa9\x3f\xf8\xf9\xf7\x23\x9d\xdf" "\xa7\x23\x63\xcb\x7e\xf3\xcc\xc7\xbe\xb1\xe8\x82\x0f\x4e\xdc\xd1\xe9\x75" "\x69\xe1\x75\x60\xb0\x0b\x75\x7a\x1d\xd8\xe9\xcf\x35\xb7\xf7\x75\xe9\x96" "\x34\xdb\xdc\x5e\xc3\xfa\x69\xf5\xe7\xf3\xfb\x35\x7e\x3f\x19\xae\x74\x7e" "\x3e\xbf\x79\xab\x3d\x7f\xc5\xfa\xf5\x6b\x97\xaf\x1b\x5d\xbf\xfc\x7d\x2b" "\xd6\xac\x5c\x3d\xba\x76\x6b\x7d\xd1\xf1\x7b\x7b\x6d\x87\xdb\x66\xff\xf8" "\xf6\x17\xae\x5c\xdb\xd9\xbc\xa6\x25\x95\x49\x9f\xff\x03\x0e\xfc\xd0\x85" "\x17\xfd\xf5\x8e\x97\x4c\xdb\xf2\xfc\x4f\xcc\x6c\x7a\xda\xfc\x66\xd6\x56" "\xf5\x49\x7f\x7f\xb2\xf9\xe9\xda\x6f\xe2\xdf\x58\xe7\xaf\xa7\x05\xe3\xa2" "\xf3\xd7\xb0\xbe\xe8\xfc\x75\xa0\xe0\x07\xed\x45\xe7\xaf\xe1\xfa\x8a\xce" "\x5f\x5b\xd5\xb7\x3a\x7f\xcd\x3b\x1f\xcd\xeb\x7f\x71\xee\xf9\x6b\xa5\xbb" "\x9f\x5f\x5e\x78\xcd\x59\x77\x7c\xe3\xfe\xeb\x72\xcf\x5f\xaf\x68\xf7\xfc" "\xb5\xf1\x11\x57\x3a\x38\x7f\xfd\x62\xa5\xbb\xf3\xd7\x2f\x05\xcb\xf5\xb7" "\x38\xf8\xb4\x3a\x7f\xfd\x5a\x25\xce\xf9\xeb\xb7\x9a\xfa\x34\x2b\x3a\x7f" "\xed\x8d\xe3\x5f\xe7\xc7\x99\x17\xeb\xf1\xef\x1f\xde\xbf\xf8\xc0\x1f\xdd" "\xba\xd3\x2b\xda\x3d\xfe\x85\xf5\x5b\x8e\x7f\xaf\x9f\xf8\x37\xd6\xf9\x57" "\x7f\x87\xe7\x5f\x61\x7d\x96\xef\xd8\x82\xbe\x79\xc7\xfc\xc7\xad\xbb\x15" "\xe5\x3b\x91\x6c\xf3\xbf\x81\x74\x64\xec\x5f\x5e\xfd\xc2\x9b\x3f\x79\xe5" "\x99\xb5\xb7\x27\x44\x3f\xff\x0a\xf4\xe6\xf9\x57\x7d\x42\x53\x3b\xff\xda" "\x92\x66\x9b\xe7\x5f\x61\x7d\x7f\xfd\xf9\xd7\xeb\x1b\x8f\x87\x6f\xa9\x76" "\xfd\x7a\x6a\xee\xf5\xf3\xb6\x79\xbe\xdb\xcf\xb7\xd7\x9e\xef\xa2\xe3\xf3" "\xf6\xda\x4f\xb7\xdf\xf1\xa3\x2f\x98\xd7\xbc\xeb\x56\xef\x7f\xe6\xae\xf3" "\x4f\x9e\xb8\xa3\x68\xff\xd8\x52\xdd\xe6\xfe\x11\xd6\x37\xec\x1f\x6f\x88" "\x77\x7d\x3c\xbd\xc3\xe3\x73\x58\x9f\xe5\xbb\xfc\x81\x17\xbe\xfa\xb9\x53" "\x1e\xbf\x2b\xde\xf3\x7e\xe3\x77\xcf\x3e\xf7\xb3\x4f\x0d\xd6\xfe\xa0\x84" "\xfd\x75\x6a\xc7\xe7\x2d\x69\xb6\xf9\xbe\xdf\xb0\x7e\x7a\xfd\xf6\xf7\xba" "\xd3\xcf\x5e\x3d\xf1\xb6\xdf\x86\xe3\xf4\x13\x5d\x1c\xa7\x1b\x7e\x7e\x73" "\xf6\xca\xa6\x4d\xb8\xe8\x38\xb4\x4d\x5f\x3f\xdb\x73\xeb\xeb\x67\x3d\xf5" "\xba\x5e\xdd\xbc\x62\xff\x5c\x6c\xeb\xf9\x64\xed\xb6\xe0\xe7\x62\x59\xfd" "\xba\xbf\xb8\xe0\xcc\x15\xab\x57\x8f\xae\x5d\xb7\x35\xaf\x3f\xe4\xf3\xfd" "\x6c\x66\xe1\xde\xd4\xed\xbc\x62\xed\x1f\xdb\x6b\xfe\x65\xe7\x5a\x7f\x64" "\x9c\x72\xae\x53\xd8\x3f\xb2\xe3\x62\xf6\xea\xc4\x4e\x05\xfb\xc7\xf4\xa6" "\xfd\xa3\xbc\xff\x49\xda\xd8\x3e\xb6\xd7\xf7\xf3\x58\xe7\x19\xd9\xcc\x56" "\x16\xce\xab\xe5\x77\xa6\xa6\x79\x95\xfd\xfb\x28\x65\xff\xfe\x61\xd9\x7f" "\xbf\xa0\xec\xdf\x93\x4e\x23\x7d\x9e\x5a\xd1\xeb\xa2\x00\x00\x00\x00\x00" "\x00\x00\x7f\x6c\xae\x5c\x9e\x5e\x5d\x3f\xce\xfe\xfe\x5f\xf6\x2e\xb4\xec" "\xef\xff\xbd\xa5\xf6\xf3\xd6\x49\xdf\xdf\xd5\xe2\x7d\x16\x00\x2f\x76\xb1" "\xdf\x57\x56\x69\x7a\xdf\x65\xe3\x5f\x31\x08\xdf\x57\x96\xd5\xef\xbe\x63" "\x32\xed\x75\x97\x7f\xfd\xbe\xf4\xba\xda\xfb\xab\x0a\xde\xff\xb5\x3d\xff" "\x9e\x51\xd2\xc1\xbc\xaa\x39\xf3\xca\x66\xf6\xf2\x6a\x9c\x79\x15\xfd\x3e" "\x67\xf8\x06\xcc\xa2\xdf\xe7\x0c\xeb\xb3\x69\x2e\xa8\x8d\xb2\xf9\xc7\xfa" "\x7d\xce\x70\x7d\x45\xbf\xcf\xd9\xaa\xbe\xd5\xef\x73\xe6\xfd\x7e\x66\x5e" "\xff\x0b\x72\xea\x8b\x7f\xdf\xb2\x75\x62\x79\xdb\x7b\xfd\xfb\xcf\xff\xef" "\xe0\xdd\xf1\x7d\xd5\xe6\xdf\xb7\xcc\x96\xaf\x5f\xee\xff\x0d\x96\x9b\xd6" "\xe2\x17\x1b\x07\xb6\xdc\x6e\xfd\x3d\xc9\x2f\x07\xcb\x0d\x84\x1b\x6d\xfd" "\xf3\x1a\xdc\x4e\xab\xbd\xa3\xb5\xd5\xdf\x3b\x4a\x1a\x53\x98\x35\xfe\xc8" "\x1b\x7e\x3f\x33\x58\x6f\x25\xfc\x9d\x80\x16\xeb\x5d\xdc\x62\xfe\xf7\x37" "\xf5\x69\xd6\xd6\xef\x79\x4e\xe1\x78\x37\xb7\xf6\xff\xfd\x05\xc7\xbb\xb9" "\x39\xf5\xef\x79\xdd\xc4\xdb\x03\xff\xb2\xcd\xe3\xdd\xf6\xfa\xfd\xa0\x4e" "\x7f\x6f\xa9\x9a\x33\xaf\xec\xf1\xef\xb3\x20\xce\xbc\x86\x6b\xc7\xbb\x6d" "\x75\xfc\x9a\xea\xf1\x72\x5e\x87\xeb\x2b\x3c\xde\xcc\x6b\x5e\xe3\xbc\x49" "\xb6\xb7\xfa\xe3\xc6\x91\x69\xf1\xf1\x66\xcb\xf2\x75\xcb\x1d\x97\x16\x1f" "\x6f\xb2\xe5\xea\xf7\xd7\x93\x82\xe5\x06\xc2\x8d\xa6\x2e\x97\xb9\xc1\xed" "\xd6\xe3\x4d\xcb\x14\x9a\x8e\x37\x1d\x1c\x9f\x46\xc2\xe3\xd3\x9a\xb4\xf8" "\xf8\x14\x3e\xce\x9f\xd7\x8e\x33\x65\xff\xbd\xaa\xb2\xff\xae\x73\xd9\x7f" "\xff\xb6\xec\xbf\x87\x50\xfe\xfb\xdf\xcb\xfd\x7b\xf4\xde\x5f\x9f\xd3\xdf" "\xfb\xeb\x01\x00\x00\x98\xc4\x0d\x4f\xfe\xfb\x55\xf5\xe3\xec\xe7\xff\xd9" "\x35\xe3\x70\x35\x49\xf6\x48\x92\xe4\xc2\x60\xb9\xc6\xbf\x9f\xb9\xe6\xec" "\x95\xa3\xb5\x57\x89\xcf\x3b\x7b\x6d\xfd\x5f\xe4\x9a\xea\xeb\x0d\xf3\x72" "\xe6\xbd\xf5\xf5\x06\xaf\x27\xb5\xec\xbf\xcd\x5e\x4f\xf2\x7a\x4f\xcb\xfe" "\xdb\xf8\xf5\x9e\x8b\xa7\xf8\x7a\xcf\x15\x5e\xef\x01\x00\x80\x3f\x78\x9f" "\xf9\xd1\x97\x2e\xad\x1f\x67\xd7\xff\xd9\xbb\xb3\xb2\xeb\xff\x67\x83\xf7" "\x95\xc4\xfa\xfc\x8c\xa3\x1a\x87\xbf\x2c\x7a\xff\x50\x50\xbf\xe5\xb3\xbf" "\xf2\x3e\x3f\xa3\xe8\xba\xa6\xe8\xfd\x96\xe1\xfa\xf2\xde\x0f\x99\x4e\x52" "\xdf\xea\xfd\x96\xd9\xb4\x8e\xce\xed\xdf\x7a\x3e\x61\xfd\x78\xf7\x6e\xae" "\x2f\xbf\xf2\xc3\x8b\x6f\xba\xfb\xe1\x1b\x37\xe5\x5e\x5f\x2e\x6c\xf7\xf3" "\x33\x1a\x1f\xf1\x8c\x0e\x3f\xff\xbf\xfe\x5d\x80\x9d\x7c\xfe\x7f\xfd\x72" "\xfd\x2d\x3e\x36\x31\xef\xf3\xff\xeb\x97\x9b\xca\xe7\xff\x37\xf6\x69\x16" "\xe6\x9d\x89\xb5\xdf\xfc\x59\x30\x2e\xda\x6f\xc2\xfa\x78\xfb\x4d\xfb\x9f" "\xe7\x9f\x4c\xb2\xdf\x84\xf5\x43\xc9\x70\x57\xdb\xf5\xbd\x37\x3f\x72\xf2" "\xbd\x77\xdd\xf3\x5c\xee\x76\x7d\x4a\xbb\xdb\x75\x63\x62\xc3\x1d\x7e\x3e" "\x7f\x37\xdb\xf5\x47\xc2\xed\x7a\xb8\x79\x56\x79\x9f\xcf\x1f\x63\xbb\xfe" "\x64\x0f\x6c\xd7\xef\x09\xc6\x45\xdb\x75\x58\xdf\x9f\x24\xbb\xee\x5a\xf7" "\x08\x62\x7f\x3f\x08\xd7\x57\xb4\x5d\xb7\xaa\x9f\x6c\xbf\xc9\xff\xbc\xd1" "\xd6\xf3\x09\xeb\x87\x92\x59\x5d\xed\x37\x7b\x7c\x62\xc6\x69\xbf\xbf\x75" "\x4d\xfe\xeb\xd5\xe7\xb7\xbb\xdf\x34\x3e\xe2\x59\x1d\xec\x37\x0f\x76\xb9" "\xdf\xfc\x24\xdc\x6f\x9a\xdf\x36\xdb\x72\xbf\x79\x34\xd2\x7e\xf3\x54\x0f" "\xec\x37\xc7\x04\xe3\xa2\xfd\x26\xac\x2f\xfb\xfb\xc1\xb1\x2d\xea\x93\x49" "\xf6\x9b\xb0\x7e\x28\x99\xd3\xe5\xcf\x91\x76\x5d\x33\x72\x67\xe5\x89\xdc" "\xed\x7a\x71\xbb\xdb\x75\x63\x62\x73\x3a\xd8\xae\x0f\x49\xbb\xdb\xae\x8f" "\x0c\x96\xeb\x9f\xd3\x3c\xab\x56\xdb\xf5\x71\x69\x9c\xed\xfa\xe4\xa6\x3e" "\xcd\xf2\xb6\x6b\x3f\x97\xcb\xe9\xff\x22\x79\x9f\x77\xf1\xcf\x5d\xfd\xdc" "\xaf\x65\x7f\x3f\xf7\x03\x00\x00\x00\x7a\xcc\xe5\xbb\xee\xdb\xf0\x01\xda" "\xd9\xcf\xff\xb3\xd7\x0e\xb2\xbf\xff\xf7\xe3\xda\x38\xbb\xbf\xfd\xf7\xff" "\x4f\xed\x75\xdb\x16\x2f\xe5\x6f\x96\xbd\x6e\xdb\xfe\x3c\xa6\xf6\xf3\xc4" "\xdc\x79\x9c\xd2\xe9\x3c\xa6\xf6\xba\x62\xee\x3c\xce\xe9\x74\x1e\x53\x7b" "\xfd\x34\x77\x1e\x2b\x3b\x9d\xc7\xd4\x5e\x47\xcc\x9d\xc7\x89\x9d\xce\x63" "\x6a\xaf\x37\xe6\xce\xe3\xa8\x4e\xe7\x31\xb5\xd7\x0d\x27\xe6\xf1\xd1\xe6" "\x79\x8c\x74\x3a\x8f\xa9\xbd\x3e\x9a\x9b\xc7\xfe\x9d\xce\x63\x6a\xaf\x93" "\xe7\xce\xe3\x8a\x4e\xe7\x31\xb5\x9f\x67\xe4\xce\xe3\xa2\x4e\xe7\x31\xb5" "\xd7\xf5\xf7\xc9\x9b\xc7\x3e\x9d\xce\x63\x6a\xef\x3b\xca\xcd\x63\x61\xf6" "\xfa\x79\xb9\x3f\xc7\xf6\xfa\x39\x00\xf0\xc7\xea\x84\xfb\x1e\x6e\x78\xab" "\x47\x76\xfd\x9f\x9d\x3f\x65\xd7\xff\x37\xd7\xc6\xe1\x79\x55\xd9\xe7\xc5" "\x65\x5f\xa7\x96\x7d\x3d\x5e\xf6\xf5\x4b\xd9\xd7\x03\x65\x5f\x9f\x97\x7d" "\xdd\x5d\xfe\x75\x4a\xb9\xd7\xc9\x65\xbf\x6e\x15\xe7\xf5\x86\x16\xfd\x47" "\xb6\xcd\x75\x5c\xd9\xaf\x2f\xba\x4e\x04\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\x71\xfa\xf2\xfe\x97" "\x9d\x54\x3f\xbe\xf6\xc1\xbd\x46\x37\x2e\x39\xfe\xc9\x6a\x9a\x24\x69\xce" "\x32\x63\x2d\x64\x5f\xab\xf4\x8f\x8c\xcc\xeb\x62\x1e\x57\x1d\x77\xee\x91" "\x57\x5c\xbf\xf1\xb1\x6c\x3c\xbe\xee\xe1\x6a\x17\x8d\x00\x00\x00\x80\x26" "\xff\x7c\xc0\x35\x2b\xea\xc7\xd9\x75\x78\x76\xe9\x9d\x26\x03\xc9\x70\xf5" "\x89\xea\x50\xb2\x6b\xcb\xe5\xb3\xd7\x08\x16\xd4\x46\x23\xc1\xfd\x79\xaf" "\x21\x64\xb2\xbe\x61\x5d\xac\xbe\x7d\x25\xf5\xad\x94\xd4\x37\x7c\xc9\x23" "\x56\xdf\x69\x25\xf5\xed\x2f\xa9\xef\xf4\x92\xfa\x0e\x94\xd4\x77\xb0\xa4" "\xbe\x33\x4a\xea\x3b\x54\x52\xdf\x1d\x4a\xea\x3b\x5c\x52\xdf\x1d\x4b\xea" "\x3b\xb3\xa4\xbe\xb3\x4a\xea\x3b\xbb\xa4\xbe\x3b\x95\xd4\xf7\x25\x25\xf5" "\x9d\x53\x52\xdf\x9d\x4b\xea\xfb\xd2\x92\xfa\xbe\xac\xa4\xbe\x73\x4b\xea" "\xbb\x4b\x49\x7d\x5f\x5e\x52\xdf\xf0\x6c\x2a\x56\xdf\xdd\x4a\xea\xfb\x8a" "\x92\xfa\xee\x5e\x52\xdf\x57\x96\xd4\x37\xfc\xd9\x56\xac\xbe\x7b\x94\xd4" "\x77\x7e\x49\x7d\x17\x94\xd4\xf7\x55\x25\xf5\xdd\xb3\xa4\xbe\x7b\x95\xd4" "\x77\xef\x92\xfa\xee\x53\x52\xdf\x3f\x29\xa9\xef\x9f\x96\xd4\xf7\xd5\x25" "\xf5\x7d\x4d\x49\x7d\x5f\x5b\x52\xdf\xd7\x95\xd4\x77\xdf\x92\xfa\x2e\x2c" "\xa9\xef\x7e\x25\xf5\x7d\x7d\x49\x7d\xdf\x50\xdc\xf7\x5b\x7f\xd7\x45\xdf" "\xfd\x4b\x9a\xef\x01\x25\xf5\x5d\x54\x52\xdf\x37\x96\xd4\x77\x71\x49\x7d" "\x97\x94\xd4\xf7\x4d\x25\xf5\x3d\xb0\xa4\xbe\x6f\x2e\xa9\xef\x5b\x4a\xea" "\xfb\xd6\x92\xfa\x1e\x54\x52\xdf\x91\x82\xbe\x03\x5d\xf6\x7d\x5b\x70\x7f" "\x5f\x43\xdf\xbe\xae\xe7\x7b\x70\x49\x7d\xdf\x5e\x52\xdf\x43\x4a\xea\x7b" "\x68\x49\x7d\x0f\x2b\xa9\xef\xd2\x92\xfa\x1e\x5e\x52\xdf\x65\xc1\xfd\x8d" "\xfb\x45\xa5\xeb\xbe\x47\x4f\x3a\xdf\xee\xfb\x1e\xdb\x61\xdf\x8d\x6d\xf6" "\x7d\x57\x87\x7d\x8b\x26\x9c\xf5\x7d\x77\x70\x7f\xa5\x68\xbe\x6d\xf6\x3d" "\xa9\xa4\xbe\xa7\x94\xd4\x77\x79\x49\x7d\x4f\xeb\xb0\xef\x40\xf8\x83\xb5" "\x9c\xbe\xa3\xc1\xfd\xd5\x86\xbe\xd5\xa6\xef\x17\xed\xf6\x7d\x28\x78\x5c" "\xb1\xbe\xbf\xfd\xa8\xa4\xbe\x3f\x2e\xa9\xef\xc3\x25\xf5\xfd\x49\x49\x7d" "\x7f\x5a\x52\xdf\xff\x2e\xa9\xef\xcf\x4a\xea\xfb\xf3\x92\xfa\x3e\x52\x52" "\xdf\x5f\x94\xd4\xf7\xd1\x92\xfa\x3e\x56\x52\xdf\x5f\x96\xd4\xf7\x57\x25" "\xf5\xdd\x54\x52\xdf\xc7\x4b\xea\xfb\x44\x49\x7d\x7f\x1d\x14\xf6\x45\xea" "\xfb\x64\x49\x7d\x9f\x2a\xa9\xef\x6f\x4a\xea\xfb\x74\x49\x7d\x9f\x29\xa9" "\xef\x6f\x4b\xea\xfb\xbb\x92\xfa\x3e\x5b\x52\xdf\xdf\x97\xd4\xf7\xb9\x92" "\xfa\x3e\x5f\x52\xdf\x17\x4a\xea\x3b\x16\xb9\x2f\x00\xc0\x54\xdd\xf2\xa9" "\xc7\x1b\x5e\xb2\xcd\xde\xff\x9f\xbd\xaf\x3b\x4d\xe6\x25\xc3\xd5\x37\x6e" "\x39\x9f\x39\x2a\x58\x3e\xab\xcb\x7b\x9d\xf0\x8a\x36\x5f\xcf\x3b\xa6\xa4" "\xbe\x7f\x56\x52\xdf\xf7\x94\xd4\xb7\xe8\xf5\xd2\x79\x41\xdf\xa2\xd7\x4b" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5e\x2c\x1e\xfa\xcf\xea\x2f" "\xeb\xc7\xd7\x3e\xb8\xd7\xe8\xc6\x25\xc7\x3f\x39\x23\x4d\x92\x34\x67\x99" "\xb1\x16\xb2\xaf\x55\xfa\x47\x46\xe6\x75\x31\x8f\xaf\xfc\xf0\xe2\x9b\xee" "\x7e\xf8\xc6\x4d\xd9\x78\x7c\xdd\xc3\xd5\x2e\x1a\x01\x00\x00\x00\x4d\xfe" "\xaf\xe1\x0b\x3f\x59\x3f\xce\xae\xc3\xb3\x4b\xef\x34\x19\x48\x86\xab\x95" "\xa4\x92\xec\xb2\x79\x3c\xba\xb5\x74\x24\x49\xb6\x5e\xf7\x03\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xc0\x1f\xb2\x4f\x5e\x7e\xec\x40\xfd\x38\xfb\xfc\xff" "\xa1\x6d\xfc\xf9\xff\x77\x1e\x7d\xfb\xfd\x4b\x17\xec\x79\x49\x36\xf6\xf9" "\xff\x00\x00\x00\x10\xcf\xd3\xdf\xfe\xb7\xab\xea\xc7\xd9\x75\x78\x7f\x6d" "\x3c\xf1\xf9\xff\x6f\x4c\xa6\xa5\xbb\x34\x2c\x97\xbd\x36\xb0\x2c\xe8\x37" "\x77\xb8\x75\xdd\x51\x41\x5d\x5e\xbf\x63\x0b\xea\xfa\x6a\xb7\xef\x6a\xb3" "\xee\xdd\x6d\xae\xf7\xa4\x36\xfb\x9d\xd2\x66\xbf\xf7\xb4\xd9\xef\xb4\x36" "\xeb\x46\x0b\xea\x2e\xa8\xad\xf8\xa1\xbc\x17\x6d\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x98\x92\x57\x2f\x7a\xd9\xcd\xf5\xe3\xec\xf3\xff\xab\x95\x6d" "\xfb\xf9\xff\x57\x1d\xb7\xeb\x9a\x91\x3b\x2b\x4f\x64\x63\x9f\xff\x0f\x00" "\x00\x00\xf1\x6c\xfa\xbb\xd3\x5f\x59\x3f\xce\xae\xc3\x1b\x3f\xff\xff\x33" "\x49\x7f\x3a\x3f\x79\xa2\x9a\x24\x95\x82\x7e\x03\xd9\x6d\x3a\x3f\x39\x39" "\x4d\x92\xfe\xba\xaf\xb5\x5a\xf6\x23\x39\x2f\x32\x8c\xaf\xef\xb4\xbe\xc6" "\x65\xfa\x5b\xd4\x8d\xd4\xd5\x7f\x24\x58\x47\x7f\x8b\xde\xf5\xf5\x8f\x87" "\xf5\x7d\x93\xd7\x7f\xa9\x12\xd4\xb7\x78\x40\xf5\xf5\x27\xf6\x35\xbe\x86" "\xd2\xdf\xe2\xf5\x8c\xfa\xfa\xf9\xe1\x7c\x06\x26\xaf\xaf\x4e\x4b\x92\xfa" "\x29\xf7\x0f\x16\xf7\xaf\xcf\xb0\x7f\xc6\xe4\xf5\x03\xd5\xa0\xff\xd0\xe4" "\xf5\x1f\x09\xfb\x0f\x4f\x5e\x7f\x79\xd8\x7f\xe6\xe4\xf5\x3f\x09\xfb\xcf" "\x9a\xbc\xfe\xc8\x60\xfb\xeb\x9f\x93\x5f\x3f\xbe\xbd\xee\xdf\xd7\x38\x9f" "\x4a\x8b\x57\xc0\x56\x64\xf5\x73\x27\x6e\x17\xd7\x2d\x7f\x55\x25\x5c\xbe" "\x79\x83\x1a\xc8\xb6\x81\xe0\x4b\xe3\xcb\x1f\xd7\xb4\xbf\x34\x6f\x60\x59" "\xa4\x23\x95\xe6\xe5\xd7\xa4\x49\x52\x6d\x58\xbe\x79\x83\xcb\x1e\xd1\xbc" "\xe0\x76\x7c\xf9\x2f\x27\x8d\xcb\x0f\x54\x9a\x03\xce\x96\x1f\x08\x6f\xd3" "\xf9\xc9\x49\xc1\xfa\x07\x5a\x3c\x41\xd9\xf2\x73\x83\xdb\xf1\xe7\xeb\x90" "\xe0\xf1\xf7\x55\xd2\xa6\x27\x20\x7b\xdc\xd9\xf3\x5b\xbf\xbe\xbe\x6a\x73" "\xfd\xbc\xba\xfe\xc7\x05\xf5\xd3\xea\x5f\xb8\x0c\xea\x01\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x68" "\xed\xf4\xd1\xab\x66\xd5\x8f\xaf\x7d\x70\xaf\xd1\x8d\x4b\x8e\x7f\x72\x66" "\x9a\x24\x69\xce\x32\x63\x2d\x64\x5f\xab\xf4\x8f\x8c\xcc\xeb\x62\x1e\x03" "\x9f\xff\xc1\x3b\x0e\xbe\xfb\xd0\x4f\x65\xe3\xf1\x75\x0f\x57\xbb\x68\x04" "\x00\x00\x00\x34\x79\xe3\xbf\x2d\x7b\xbc\x7e\x9c\x5d\x87\xf7\xd5\xc6\x69" "\x32\x90\x0c\x57\xab\x49\x35\x79\x65\x6d\xdc\x28\xad\xbd\x1e\xb0\xad\xe6" "\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xb0\xbd\xec\xf4\x91\xb1\x9b\xea\xc7\xd7\x3e\xb8\xd7\xe8\xc6\x25\xc7" "\x3f\x39\x98\x26\x49\x9a\xb3\xcc\x58\x0b\xd9\xd7\x2a\xfd\x23\x23\xf3\xba" "\x98\xc7\xd8\x1d\x07\x0f\xcd\x7c\xb6\xff\xb2\x6c\x3c\xbe\xee\xe1\x6a\x17" "\x8d\x00\x00\x00\x80\x26\x47\x1f\x72\xf1\xd3\xf5\xe3\xec\x3a\xbc\xaf\x36" "\x4e\x93\x81\x64\xb8\x3a\x23\x99\x91\xbc\x74\xe2\xeb\x75\xd7\xfa\xe3\xfa" "\x82\x7e\x69\x92\xff\xba\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xc0\x8b\xd9\xae\x2f\x79\xf4\xac\xfa\xf1\xb5" "\x0f\xee\x35\xba\x71\xc9\xf1\x4f\x0e\xa4\x49\x92\xe6\x2c\x33\xd6\x42\xf6" "\xb5\x4a\xff\xc8\xc8\xbc\x2e\xe6\xf1\xe1\xd5\x77\xdd\x72\xd1\x09\xcb\xbe" "\x97\x8d\xc7\xd7\x3d\x5c\xed\xa2\x11\x00\x00\x00\xd0\xe4\x57\xbf\xfb\x9b" "\xf3\xeb\xc7\xd9\x75\x78\x5f\x6d\x9c\x26\x03\xc9\x70\x75\x20\x19\x48\x76" "\xae\x8d\x9b\x6d\xbe\xfe\x9f\xb5\x2d\x66\x0b\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xdb\xc7\xff\x71\xd9\xbd\x07\xd6\x8f\xb3\xcf\xff\x1f\xde\xc6\x9f" "\xff\x7f\xef\xcd\x8f\x9c\x7c\xef\x5d\xf7\x3c\x97\x8d\x7d\xfe\x3f\x00\x00" "\x00\xc4\x73\xf5\xb4\x43\xff\xbf\xfa\x71\x76\x1d\xde\x5f\x1b\x4f\x7c\xfe" "\xff\xaa\x64\x7a\xb2\x5b\xed\x9e\x65\x0d\xcb\x57\xd3\xca\xe6\xdb\x91\x9c" "\xd7\x05\xb6\x2e\x77\x54\xc3\x72\x33\xda\x5e\xee\xe8\x86\xe5\x86\xda\x5e" "\xee\x98\x86\xe5\xe6\xb4\xbd\xdc\xb1\x0d\xcb\xcd\x6c\x7b\xb9\x77\x35\x2c" "\x37\xd8\xf6\x72\xef\x6e\x58\x6e\xa0\xed\xe5\xfe\xac\x61\xb9\xe1\xb6\x97" "\x3b\xa9\x61\xb9\xb4\xed\xe5\x4e\x69\x58\xae\xaf\xed\xe5\xde\xd3\xb0\xdc" "\xac\xb6\x97\x5b\x9e\x34\x4e\xb4\xdd\xe5\x4e\x6b\x58\xac\xd2\xf6\x72\xa3" "\x8d\xeb\x4b\x26\x5e\x7c\x1a\xa8\x2d\x37\x90\xf5\x9b\x35\x71\xbb\x65\xb9" "\x79\xcd\xcb\xcd\x4b\x92\x64\x6e\x6d\xb9\xb9\xb5\x7b\xfb\x67\x25\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xf0\xa2\xf7\x99\x4d\x7f\xbf\xa9\x7e\x7c\xed\x83\x7b\x8d\x6e\x5c" "\x72\xfc\x93\x69\x9a\x24\x69\xce\x32\x63\x2d\x64\x5f\xab\xf4\x8f\x8c\xcc" "\xeb\x62\x1e\x5f\x3f\xeb\xd1\xe1\xe9\x07\xdd\x73\x43\x36\x1e\x5f\xf7\x70" "\xb5\x8b\x46\x00\x00\x00\x40\x93\xfe\x67\x57\xec\x59\x3f\xce\xae\xc3\xb3" "\x4b\xef\x34\x19\x48\x86\xab\x97\x24\x33\x93\x57\x6c\xbe\xee\x4f\x66\x35" "\x2e\x5f\xa9\xdd\xbe\x66\xc3\x35\x27\x2c\xfe\xd1\x53\x8b\x93\x64\xe1\x4b" "\xef\xdf\x3d\xff\xc2\x7d\xd3\xe8\x11\xa7\x1f\x98\x7c\xfb\x0b\x57\xae\xcd" "\xfe\x9d\xb8\x27\x49\x82\x65\xfa\x26\x6e\x66\xd5\xd6\x9b\xce\x6a\xf9\xe5" "\xe4\x63\x1b\x2e\xfc\xf5\xed\x6f\xb8\xed\xd9\x24\x59\xb8\x73\x65\xb7\xa2" "\xf5\x36\xff\x1b\x48\x47\xc6\x5e\x35\xef\xbe\xeb\x7e\xfb\xd9\xa7\x2a\x8d" "\xeb\xef\xcb\x79\xdc\xcf\xcd\xdf\xfb\xbe\xa3\x7e\xf5\xc1\x9b\xc7\xd7\x3f" "\xd9\xe3\x7e\xc7\x47\x7f\xf1\xfe\x03\x5b\xfc\xdb\xbc\xfe\xf3\x66\xbd\xed" "\xb6\x53\x1f\xfb\xf7\x23\x1a\xd7\x5f\x09\xd6\x9f\xad\xe9\x80\x07\x17\x6e" "\x7a\xe1\x9b\x27\xdc\x3b\xb1\xfe\x81\x64\xa0\x76\xff\xcb\xab\x5d\xad\x7f" "\x70\x64\x6c\xf0\xaf\xce\x3a\xec\xf9\x23\x37\xee\xd7\xb8\xfe\x6a\xce\xe3" "\x5f\xf2\x81\xd7\x7d\xfa\xc7\xc7\x9f\xb8\xe7\xf8\xfa\x9f\x7c\xe5\x8c\x2d" "\xeb\xdf\xbb\xbb\xc7\x3f\x38\x32\xb6\xf3\x9b\x4e\xda\xf3\xfc\xb1\xbe\xf7" "\x34\xae\x7f\x5a\xce\xfa\x6f\xfa\xd6\x53\x8b\x4e\xfd\xc1\xcf\xbf\x1f\x3e" "\xfe\x19\x41\xe3\xfa\x2d\x6e\xf2\xfc\x97\xfd\xe6\x99\x8f\x7d\x63\xd1\x05" "\x1f\x6c\x5c\x7f\x7f\x4e\xfe\x63\x0b\xfa\xe6\x1d\xf3\x1f\xb7\xee\x96\xad" "\x7f\x6e\xed\xfe\x7d\x16\xe4\xaf\xbf\xfe\xdf\xad\x5b\x72\xb6\xfe\x79\xd7" "\xad\xde\xff\xcc\x5d\xe7\x9f\xdc\xb8\xfe\xe9\x39\x8f\x7f\xf9\x03\x2f\x7c" "\xf5\x73\xa7\x3c\x7e\x57\xf8\xf8\x57\x4e\xf2\xf8\x1b\xd7\x1f\x3e\xfe\x1b" "\xbf\x7b\xf6\xb9\x9f\x7d\x6a\xf0\xed\xe1\x97\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf8\xdf\xec\xdd\x4b\x68\x5c\x55" "\x1c\x07\xe0\x73\x73\x67\x26\xd3\xe8\x94\x58\x14\xea\x3b\x8a\x66\x61\x31" "\x8f\x5a\x63\x63\x45\x46\xc4\x80\xba\x0d\xa2\x08\xd5\x68\x27\x25\x66\x92" "\xd8\x4c\x82\xcd\x54\x34\x3e\xb0\x88\x8a\x84\x04\xd4\x95\x2e\xcc\xc6\xe2" "\x4a\x5c\xb8\x72\xa1\x50\x05\xa9\x0b\x05\xa1\x90\x85\x4b\xc1\x5d\x2a\x0a" "\xa2\x91\xe9\xdc\x9b\x5c\x4d\x62\x61\xd4\x48\xe1\xfb\x16\xf7\x9c\x3f\xe7" "\x77\x1e\x21\x30\x70\xee\xe6\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x34\xcc\x3e\xfc\xc3\x63\xd9\x7a\x71\xa5" "\xbb\x32\x3f\x38\xbc\xda\x16\x85\x10\x6d\x33\x67\x6d\x0b\xe9\x58\x5c\x28" "\x97\xbb\x5a\x38\xc7\xb1\x6b\x06\x87\x66\x8f\xf4\x1d\x49\xeb\xc6\xde\xa5" "\x5c\x0b\x0b\x01\x00\x00\x00\x9b\xbc\x7a\xe9\xf2\x17\xd9\x3a\xbd\x87\xc7" "\x49\x1d\x85\x62\x28\xe5\x6e\x09\x85\xd0\x71\xfe\xde\x7f\x53\xd7\x99\xa5" "\x5f\x96\xcf\xc5\xa1\x33\x19\x4f\xda\x5c\x75\xaa\x36\xb3\x6f\x74\x6a\x76" "\xb2\x79\x85\x4f\xf3\xef\x7e\x3b\x75\x6c\xf9\xdc\xae\x7b\xd3\x7c\x7b\xd2" "\x16\x47\xc7\xaa\x95\x9e\x27\xa7\xaa\xc9\x8d\x3f\x9f\xe4\x9f\xe9\xbc\xe7" "\xe3\xc7\x7f\xfc\xee\xfe\x34\xdf\x96\xae\xdf\xc8\xf7\x6d\xe4\x3e\xdd\xf7" "\xfb\x5d\xef\xbc\x36\xfe\x50\x9a\x2b\x64\xd7\xdd\xbf\x91\xeb\x5a\xaa\x1e" "\x18\xbf\xfa\xc6\x47\xb7\xcc\xdd\xb6\x91\x7b\xe0\xa7\x9f\xdf\x3c\x3d\x50" "\x7f\x2e\xcd\xe5\xb3\xb9\xfe\x8d\xdc\xae\x97\x27\x86\x7e\x7b\x70\xbe\x3f" "\x3d\x57\x9c\xcd\x65\xce\x77\xc5\x9d\x8f\xdc\x7c\x7c\xad\xed\xf0\xfa\xf9" "\x93\xb6\x23\x59\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\x62\x33\x54\xbb\xef\xfd\x6c\xbd" "\xb8\xd2\x5d\x99\x1f\x1c\x5e\x0d\x71\x08\xd1\x36\x73\xd6\xb6\x90\x8e\xc5" "\x85\x72\xb9\xab\x85\x73\xdc\xf0\x56\xc7\x13\xbf\x9e\x9a\x7c\x3b\xad\x1b" "\x7b\x97\x72\x2d\x2c\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x2d\xf8\xf0\xee\x2f\xbf\xce\xd6\xeb\xdf\xff\x8f\x76\xf6\xfb\xff\x27" "\x57\x16\x3e\x38\x7b\x65\xbd\x37\xad\x7d\xff\x1f\x00\x00\x00\xfe\x3d\x5f" "\x5d\x7e\xd5\xf5\xd9\x3a\xbd\x87\xa7\x57\xef\x28\x14\x43\x29\xd7\x1f\xda" "\xa3\xc2\x9f\xe6\x15\x93\xf7\x00\xc5\xa4\x8e\x3b\x9b\xed\x75\xbb\x43\xbe" "\xe7\xe4\x67\x67\xa2\xa5\xe6\xdb\x83\x8e\xe8\xb2\xbf\x9d\x97\x4b\xe6\xf5" "\xce\x4c\x3c\xdd\x5b\x9b\xab\xdf\x3a\x36\x31\x72\xb4\x72\xb4\x32\x79\xa0" "\x6f\xe0\x8e\xbe\x81\x81\x81\xfe\x83\xbd\xa3\x63\xd5\x4a\x5f\xf3\x19\xda" "\x2f\xb0\x5e\x3e\x59\xaf\x36\x57\x1f\x1f\xa9\x56\x2b\xd3\xb5\x66\xfd\xd7" "\xf3\xef\x4d\xe6\xed\x4d\xea\x42\x32\xef\x70\x4f\xc8\x37\xda\x17\x92\xf3" "\xef\xb9\xc0\x7e\xed\x9b\xf6\xfb\xef\x3a\xdb\xfe\x13\x01\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x1d\x31\xf4\x79" "\xf9\x6c\xb6\x5e\x5c\xe9\xae\xcc\x0f\x0e\xaf\xc6\x51\x08\xd1\x36\x73\xd6" "\xb6\x90\x8e\xc5\x85\x72\xb9\xab\x85\x73\xbc\x72\x62\x61\xe2\x93\xd3\xdf" "\x2c\xa5\x75\x63\xef\x52\xae\x85\x85\x00\x00\x00\x80\x4d\x3e\x5a\x78\xf1" "\xf5\x6c\x9d\xde\xc3\xe3\xa4\x8e\x42\x31\x94\x72\x1d\x21\x1f\x2e\x39\x7f" "\xef\x7f\xef\xa9\x83\x87\xbe\x3f\xb5\xe7\xda\x7c\x67\x12\x28\x14\xc2\xf1" "\x91\x99\x99\xe9\xfd\xcd\x67\x9a\xbb\xfd\xd0\x4b\x27\x9e\x7d\x63\xf7\xf3" "\x9b\x72\xfd\xcd\xe7\xce\xfe\x95\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x5c\x6d\xae\x3e\x3e\x52\xad\x56" "\xa6\x75\x74\x74\x74\xd6\x3b\xff\xf7\x2f\x13\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\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\xc1\x0e\x1c" "\x08\x00\x00\x00\x00\x00\xf9\xbf\x36\x42\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x15\x76\xe0\x40\x00\x00\x00\x00\x00\xc8\xff\xb5\x11\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xb0\x57\x77\x21\x52\x95\x61\x1c\xc0\x9f\x33\x33" "\xb9\xb3\x3b\x8e\xbb\x2b\x5e\x18\x45\x18\x12\x7a\x13\x79\x51\xb1\x5d\x44" "\x9b\x5f\x6b\x7e\x94\x04\x42\x50\x81\xd4\x6a\x11\x29\x49\x48\x52\x4a\xeb" "\xc6\xd6\x82\x05\x1a\x45\xd2\x8d\x04\x91\xe8\x42\x5d\x44\xa0\x5d\x44\x1a" "\x6c\xc8\x4a\x81\xd2\x45\x66\x25\x44\x44\x64\x88\x37\x15\x96\x6c\x4c\x7b" "\x8e\xac\xb3\x1e\x46\x8e\x1b\x41\xfc\x7e\xb0\xfb\xf2\xbe\xe7\x39\xff\x79" "\xe6\x9c\x77\xce\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xe0\xdf\x36\xa3\x6b\xc9\xd9\xc9\xf3\x7a\xa5" "\x5e\x69\x8c\xa3\x43\xcf\xfe\xb6\xf1\x8b\xdd\x07\xbe\x7e\x6a\xfd\x97\x03" "\x77\xff\x7e\x6e\xe3\xa9\x43\xa7\xff\xd8\xd0\xf7\xf8\xfe\x13\x83\xaf\x6f" "\x19\x6c\xbf\x73\xa4\x67\xe4\x89\x7d\x43\x4b\xde\xfb\xe8\xfd\xe7\x1e\x9d" "\x3d\xf8\xe1\x8f\x2d\x3f\x68\xdb\xc4\x30\x27\x9d\x56\x23\x92\x13\x49\xc4" "\x4f\x17\x17\x74\x7d\xf0\xda\xba\xb9\x8d\xb5\x24\x22\xda\x92\xca\x40\x74" "\x77\xef\x2c\x1d\xe9\x4e\x9a\x12\xe6\x5d\x88\x88\xfe\xb4\xae\x5e\xb9\xe9" "\x9f\xff\x67\x8e\x4c\x1c\xdc\xf1\xf1\x4b\x4f\x36\xc6\x81\x5d\x6d\x97\x9d" "\xd4\xd9\x14\xd2\xfc\xbd\xa2\x56\xce\xfa\x99\x18\xab\x97\xf7\xcb\xff\x4b" "\x63\xff\xd5\x22\x62\x77\x3a\x5f\x71\xeb\xd8\x86\x4f\xe7\xf6\x9d\xdf\x75" "\x7a\xc5\xc5\x3b\x86\xb6\xfe\x1a\xa5\xac\xb2\x37\x1a\x3b\x69\x7b\xba\xaf" "\xa2\x77\xd6\xfa\xe9\xee\x23\x73\xe6\x9b\x52\x34\x76\x61\x4f\xba\x0f\x93" "\x6b\xe8\x6b\x6d\x44\x74\x4c\x9a\xf7\xb4\xe8\x63\xe1\x55\xf6\x3b\x3f\x67" "\xbe\x73\x7c\x7c\x7c\xf2\x7a\xbd\x45\x4e\x76\x7c\x41\x8b\xfa\xe6\x1f\x7f" "\xa6\xdc\x34\x56\x5b\x7c\xde\xb5\xca\xeb\xa3\x68\x5d\x2b\xb3\xa6\x29\x27" "\x4f\xab\x3e\xb3\xe7\xe5\xbb\xe9\x38\xa7\x40\xfe\xcc\x89\xbf\xae\x02\xed" "\x5d\xb5\xc6\xfd\x6f\x8f\x88\x7b\xd3\x79\xb6\x0f\x3a\xd3\x6b\xd8\x5e\x99" "\xd7\x74\xc6\xcc\x58\x1d\x6b\xe2\xfe\x58\x1a\xcb\x62\x79\xf4\xc5\x8a\x58" "\x19\xf7\xc5\xaa\x58\x1b\x1d\x53\x6a\xeb\x39\xb5\xdd\xc9\xda\x98\x39\xa5" "\x3a\x89\xae\xa4\x9c\xf6\x54\x4e\xa2\x94\x44\xe5\xd2\x65\x5e\x9a\x44\xcc" "\x98\x54\x5b\xbd\x74\x4e\x29\xae\x9b\xb4\xde\xf8\x79\xb7\x5d\xe1\x7b\x66" "\xeb\x59\xe0\x70\xfa\x1c\xa8\xa5\x6b\xb5\x64\xf6\x94\x73\xc6\xaf\x20\x3b" "\xf6\xca\xb7\x7b\x0e\x9e\xba\xfe\xf9\xdb\xf2\x6e\x4e\xb2\x3d\x49\xf3\x93" "\x42\xf9\x9f\x6d\xfa\xa5\xde\x76\xcf\xd8\xde\xdc\xfc\xfe\x2c\xbf\x54\x28" "\x7f\xcb\x8d\x77\x2d\xdf\xda\xbf\xa8\x3f\x37\xff\x99\x2c\xbf\x5c\x28\xff" "\xe5\x17\xf6\x6c\x3a\xfc\xf9\xc9\x37\xa6\xe4\xa7\x37\x20\x19\xce\xf2\x2b" "\x85\xf2\x5f\x7d\x70\xcb\xaa\xe1\x37\x07\xce\xe6\x3d\x77\x93\x85\x59\x7e" "\xb5\x58\xff\x4f\x8f\x1e\xd8\xbe\x6e\xe5\x57\xb9\xd7\xe7\xa1\x2c\xbf\xbd" "\x50\xfe\xf8\xe1\xc5\xb5\xce\x0b\x33\x86\x72\xf3\x57\x67\xf9\x1d\x85\xf2" "\x3f\xf9\x7e\xc7\x3b\xc7\x7e\xd8\x77\x2e\xf7\xe1\xb1\x28\xcb\xaf\x15\xca" "\x3f\xba\xe6\xd0\xc9\xbe\xf9\xb7\xbc\x98\xdb\xff\xed\x59\x7e\xbd\x50\xfe" "\xf1\xfd\x3f\x3f\x7c\x7c\x74\xec\xaf\xdc\xfc\x47\xb2\xfc\xce\x42\xf9\xd5" "\x83\xdf\x3d\xb0\xf8\xd8\xb2\xb7\x73\xf3\x7b\xb3\xfc\xae\x42\xf9\x37\xbf" "\xd5\xf1\xd8\x9f\x23\x9b\xf7\xe6\xbd\x57\x93\x6d\x59\xfe\x9c\x82\xfb\xff" "\x86\xcd\xbd\x47\xcb\xe7\x73\xfb\xef\x99\xae\x37\x29\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0" "\x5f\xfb\x3b\x00\x00\xff\xff\x90\x4c\xa4\x4e", 26597); syz_mount_image(/*fs=*/0x20000000, /*dir=*/0x20006780, /*flags=MS_SILENT|MS_DIRSYNC*/ 0x8080, /*opts=*/0x20000440, /*chdir=*/0xfe, /*size=*/0x67e5, /*img=*/0x2000cf80); // openat$cgroup_ro arguments: [ // fd: fd_cgroup (resource) // file: ptr[in, buffer] { // buffer: {63 70 75 73 65 74 2e 65 66 66 65 63 74 69 76 65 5f 6d 65 6d // 73 00} (length 0x16) // } // flags: const = 0x275a (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd memcpy((void*)0x20000240, "cpuset.effective_mems\000", 22); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000240ul, /*flags=*/0x275a, /*mode=*/0); if (res != -1) r[0] = res; // write$binfmt_script arguments: [ // fd: fd_binfmt (resource) // data: ptr[in, binfmt_script] { // binfmt_script { // hdr: buffer: {23 21 20} (length 0x3) // bin: buffer: {} (length 0x0) // args: array[binfmt_script_arg] { // } // nl: const = 0xa (1 bytes) // data: buffer: {} (length 0x0) // } // } // len: bytesize = 0x208e24b (8 bytes) // ] memcpy((void*)0x20000040, "#! ", 3); *(uint8_t*)0x20000043 = 0xa; syscall(__NR_write, /*fd=*/r[0], /*data=*/0x20000040ul, /*len=*/0x208e24bul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; do_sandbox_none(); return 0; }