// https://syzkaller.appspot.com/bug?id=190c12d5d8688f71031e8d66a95155671c6e5028 // 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 #ifndef __NR_memfd_create #define __NR_memfd_create 319 #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 void netlink_nest(struct nlmsg* nlmsg, int typ) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_type = typ; nlmsg->pos += sizeof(*attr); nlmsg->nested[nlmsg->nesting++] = attr; } static void netlink_done(struct nlmsg* nlmsg) { struct nlattr* attr = nlmsg->nested[--nlmsg->nesting]; attr->nla_len = nlmsg->pos - (char*)attr; } static int netlink_send_ext(struct nlmsg* nlmsg, int sock, uint16_t reply_type, int* reply_len, bool dofail) { if (nlmsg->pos > nlmsg->buf + sizeof(nlmsg->buf) || nlmsg->nesting) exit(1); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_len = nlmsg->pos - nlmsg->buf; struct sockaddr_nl addr; memset(&addr, 0, sizeof(addr)); addr.nl_family = AF_NETLINK; ssize_t n = sendto(sock, nlmsg->buf, hdr->nlmsg_len, 0, (struct sockaddr*)&addr, sizeof(addr)); if (n != (ssize_t)hdr->nlmsg_len) { if (dofail) exit(1); return -1; } n = recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); if (reply_len) *reply_len = 0; if (n < 0) { if (dofail) exit(1); return -1; } if (n < (ssize_t)sizeof(struct nlmsghdr)) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type == NLMSG_DONE) return 0; if (reply_len && hdr->nlmsg_type == reply_type) { *reply_len = n; return 0; } if (n < (ssize_t)(sizeof(struct nlmsghdr) + sizeof(struct nlmsgerr))) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type != NLMSG_ERROR) { errno = EINVAL; if (dofail) exit(1); return -1; } errno = -((struct nlmsgerr*)(hdr + 1))->error; return -errno; } static int netlink_send(struct nlmsg* nlmsg, int sock) { return netlink_send_ext(nlmsg, sock, 0, NULL, true); } static int netlink_query_family_id(struct nlmsg* nlmsg, int sock, const char* family_name, bool dofail) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = CTRL_CMD_GETFAMILY; netlink_init(nlmsg, GENL_ID_CTRL, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, CTRL_ATTR_FAMILY_NAME, family_name, strnlen(family_name, GENL_NAMSIZ - 1) + 1); int n = 0; int err = netlink_send_ext(nlmsg, sock, GENL_ID_CTRL, &n, dofail); if (err < 0) { return -1; } uint16_t id = 0; struct nlattr* attr = (struct nlattr*)(nlmsg->buf + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg->buf + n; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == CTRL_ATTR_FAMILY_ID) { id = *(uint16_t*)(attr + 1); break; } } if (!id) { errno = EINVAL; return -1; } recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); return id; } static void netlink_add_device_impl(struct nlmsg* nlmsg, const char* type, const char* name, bool up) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; netlink_init(nlmsg, RTM_NEWLINK, NLM_F_EXCL | NLM_F_CREATE, &hdr, sizeof(hdr)); if (name) netlink_attr(nlmsg, IFLA_IFNAME, name, strlen(name)); netlink_nest(nlmsg, IFLA_LINKINFO); netlink_attr(nlmsg, IFLA_INFO_KIND, type, strlen(type)); } static void netlink_device_change(struct nlmsg* nlmsg, int sock, const char* name, bool up, const char* master, const void* mac, int macsize, const char* new_name) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; hdr.ifi_index = if_nametoindex(name); netlink_init(nlmsg, RTM_NEWLINK, 0, &hdr, sizeof(hdr)); if (new_name) netlink_attr(nlmsg, IFLA_IFNAME, new_name, strlen(new_name)); if (master) { int ifindex = if_nametoindex(master); netlink_attr(nlmsg, IFLA_MASTER, &ifindex, sizeof(ifindex)); } if (macsize) netlink_attr(nlmsg, IFLA_ADDRESS, mac, macsize); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static struct nlmsg nlmsg; #define WIFI_INITIAL_DEVICE_COUNT 2 #define WIFI_MAC_BASE \ { \ 0x08, 0x02, 0x11, 0x00, 0x00, 0x00 \ } #define WIFI_IBSS_BSSID \ { \ 0x50, 0x50, 0x50, 0x50, 0x50, 0x50 \ } #define WIFI_IBSS_SSID \ { \ 0x10, 0x10, 0x10, 0x10, 0x10, 0x10 \ } #define WIFI_DEFAULT_FREQUENCY 2412 #define WIFI_DEFAULT_SIGNAL 0 #define WIFI_DEFAULT_RX_RATE 1 #define HWSIM_CMD_REGISTER 1 #define HWSIM_CMD_FRAME 2 #define HWSIM_CMD_NEW_RADIO 4 #define HWSIM_ATTR_SUPPORT_P2P_DEVICE 14 #define HWSIM_ATTR_PERM_ADDR 22 #define IF_OPER_UP 6 struct join_ibss_props { int wiphy_freq; bool wiphy_freq_fixed; uint8_t* mac; uint8_t* ssid; int ssid_len; }; static int set_interface_state(const char* interface_name, int on) { struct ifreq ifr; int sock = socket(AF_INET, SOCK_DGRAM, 0); if (sock < 0) { return -1; } memset(&ifr, 0, sizeof(ifr)); strcpy(ifr.ifr_name, interface_name); int ret = ioctl(sock, SIOCGIFFLAGS, &ifr); if (ret < 0) { close(sock); return -1; } if (on) ifr.ifr_flags |= IFF_UP; else ifr.ifr_flags &= ~IFF_UP; ret = ioctl(sock, SIOCSIFFLAGS, &ifr); close(sock); if (ret < 0) { return -1; } return 0; } static int nl80211_set_interface(struct nlmsg* nlmsg, int sock, int nl80211_family, uint32_t ifindex, uint32_t iftype) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = NL80211_CMD_SET_INTERFACE; netlink_init(nlmsg, nl80211_family, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, NL80211_ATTR_IFINDEX, &ifindex, sizeof(ifindex)); netlink_attr(nlmsg, NL80211_ATTR_IFTYPE, &iftype, sizeof(iftype)); int err = netlink_send(nlmsg, sock); if (err < 0) { } return err; } static int nl80211_join_ibss(struct nlmsg* nlmsg, int sock, int nl80211_family, uint32_t ifindex, struct join_ibss_props* props) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = NL80211_CMD_JOIN_IBSS; netlink_init(nlmsg, nl80211_family, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, NL80211_ATTR_IFINDEX, &ifindex, sizeof(ifindex)); netlink_attr(nlmsg, NL80211_ATTR_SSID, props->ssid, props->ssid_len); netlink_attr(nlmsg, NL80211_ATTR_WIPHY_FREQ, &(props->wiphy_freq), sizeof(props->wiphy_freq)); if (props->mac) netlink_attr(nlmsg, NL80211_ATTR_MAC, props->mac, ETH_ALEN); if (props->wiphy_freq_fixed) netlink_attr(nlmsg, NL80211_ATTR_FREQ_FIXED, NULL, 0); int err = netlink_send(nlmsg, sock); if (err < 0) { } return err; } static int get_ifla_operstate(struct nlmsg* nlmsg, int ifindex) { struct ifinfomsg info; memset(&info, 0, sizeof(info)); info.ifi_family = AF_UNSPEC; info.ifi_index = ifindex; int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock == -1) { return -1; } netlink_init(nlmsg, RTM_GETLINK, 0, &info, sizeof(info)); int n; int err = netlink_send_ext(nlmsg, sock, RTM_NEWLINK, &n, true); close(sock); if (err) { return -1; } struct rtattr* attr = IFLA_RTA(NLMSG_DATA(nlmsg->buf)); for (; RTA_OK(attr, n); attr = RTA_NEXT(attr, n)) { if (attr->rta_type == IFLA_OPERSTATE) return *((int32_t*)RTA_DATA(attr)); } return -1; } static int await_ifla_operstate(struct nlmsg* nlmsg, char* interface, int operstate) { int ifindex = if_nametoindex(interface); while (true) { usleep(1000); int ret = get_ifla_operstate(nlmsg, ifindex); if (ret < 0) return ret; if (ret == operstate) return 0; } return 0; } static int nl80211_setup_ibss_interface(struct nlmsg* nlmsg, int sock, int nl80211_family_id, char* interface, struct join_ibss_props* ibss_props) { int ifindex = if_nametoindex(interface); if (ifindex == 0) { return -1; } int ret = nl80211_set_interface(nlmsg, sock, nl80211_family_id, ifindex, NL80211_IFTYPE_ADHOC); if (ret < 0) { return -1; } ret = set_interface_state(interface, 1); if (ret < 0) { return -1; } ret = nl80211_join_ibss(nlmsg, sock, nl80211_family_id, ifindex, ibss_props); if (ret < 0) { return -1; } return 0; } static int hwsim80211_create_device(struct nlmsg* nlmsg, int sock, int hwsim_family, uint8_t mac_addr[ETH_ALEN]) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = HWSIM_CMD_NEW_RADIO; netlink_init(nlmsg, hwsim_family, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, HWSIM_ATTR_SUPPORT_P2P_DEVICE, NULL, 0); netlink_attr(nlmsg, HWSIM_ATTR_PERM_ADDR, mac_addr, ETH_ALEN); int err = netlink_send(nlmsg, sock); if (err < 0) { } return err; } static void initialize_wifi_devices(void) { int rfkill = open("/dev/rfkill", O_RDWR); if (rfkill == -1) { if (errno != ENOENT && errno != EACCES) exit(1); } else { struct rfkill_event event = {0}; event.type = RFKILL_TYPE_ALL; event.op = RFKILL_OP_CHANGE_ALL; if (write(rfkill, &event, sizeof(event)) != (ssize_t)(sizeof(event))) exit(1); close(rfkill); } uint8_t mac_addr[6] = WIFI_MAC_BASE; int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock < 0) { return; } int hwsim_family_id = netlink_query_family_id(&nlmsg, sock, "MAC80211_HWSIM", true); int nl80211_family_id = netlink_query_family_id(&nlmsg, sock, "nl80211", true); uint8_t ssid[] = WIFI_IBSS_SSID; uint8_t bssid[] = WIFI_IBSS_BSSID; struct join_ibss_props ibss_props = {.wiphy_freq = WIFI_DEFAULT_FREQUENCY, .wiphy_freq_fixed = true, .mac = bssid, .ssid = ssid, .ssid_len = sizeof(ssid)}; for (int device_id = 0; device_id < WIFI_INITIAL_DEVICE_COUNT; device_id++) { mac_addr[5] = device_id; int ret = hwsim80211_create_device(&nlmsg, sock, hwsim_family_id, mac_addr); if (ret < 0) exit(1); char interface[6] = "wlan0"; interface[4] += device_id; if (nl80211_setup_ibss_interface(&nlmsg, sock, nl80211_family_id, interface, &ibss_props) < 0) exit(1); } for (int device_id = 0; device_id < WIFI_INITIAL_DEVICE_COUNT; device_id++) { char interface[6] = "wlan0"; interface[4] += device_id; int ret = await_ifla_operstate(&nlmsg, interface, IF_OPER_UP); if (ret < 0) exit(1); } close(sock); } #define MAX_FDS 30 //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, loopfd = -1, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } errno = err; return res; } static void setup_common() { 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); setsid(); 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); setup_common(); sandbox_common(); drop_caps(); if (unshare(CLONE_NEWNET)) { } write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535"); initialize_wifi_devices(); setup_binderfs(); loop(); exit(1); } static int inject_fault(int nth) { int fd; fd = open("/proc/thread-self/fail-nth", O_RDWR); if (fd == -1) exit(1); char buf[16]; sprintf(buf, "%d", nth); if (write(fd, buf, strlen(buf)) != (ssize_t)strlen(buf)) exit(1); return fd; } static void close_fds() { for (int fd = 3; fd < MAX_FDS; fd++) close(fd); } static void setup_fault() { static struct { const char* file; const char* val; bool fatal; } files[] = { {"/sys/kernel/debug/failslab/ignore-gfp-wait", "N", true}, {"/sys/kernel/debug/fail_futex/ignore-private", "N", false}, {"/sys/kernel/debug/fail_page_alloc/ignore-gfp-highmem", "N", false}, {"/sys/kernel/debug/fail_page_alloc/ignore-gfp-wait", "N", false}, {"/sys/kernel/debug/fail_page_alloc/min-order", "0", false}, }; unsigned i; for (i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].file, files[i].val)) { if (files[i].fatal) exit(1); } } } static void setup_binfmt_misc() { if (mount(0, "/proc/sys/fs/binfmt_misc", "binfmt_misc", 0, 0)) { } write_file("/proc/sys/fs/binfmt_misc/register", ":syz0:M:0:\x01::./file0:"); write_file("/proc/sys/fs/binfmt_misc/register", ":syz1:M:1:\x02::./file0:POC"); } static void setup_sysctl() { char mypid[32]; snprintf(mypid, sizeof(mypid), "%d", getpid()); struct { const char* name; const char* data; } files[] = { {"/sys/kernel/debug/x86/nmi_longest_ns", "10000000000"}, {"/proc/sys/kernel/hung_task_check_interval_secs", "20"}, {"/proc/sys/net/core/bpf_jit_kallsyms", "1"}, {"/proc/sys/net/core/bpf_jit_harden", "0"}, {"/proc/sys/kernel/kptr_restrict", "0"}, {"/proc/sys/kernel/softlockup_all_cpu_backtrace", "1"}, {"/proc/sys/fs/mount-max", "100"}, {"/proc/sys/vm/oom_dump_tasks", "0"}, {"/proc/sys/debug/exception-trace", "0"}, {"/proc/sys/kernel/printk", "7 4 1 3"}, {"/proc/sys/kernel/keys/gc_delay", "1"}, {"/proc/sys/vm/oom_kill_allocating_task", "1"}, {"/proc/sys/kernel/ctrl-alt-del", "0"}, {"/proc/sys/kernel/cad_pid", mypid}, }; for (size_t i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].name, files[i].data)) printf("write to %s failed: %s\n", files[i].name, strerror(errno)); } } #define NL802154_CMD_SET_SHORT_ADDR 11 #define NL802154_ATTR_IFINDEX 3 #define NL802154_ATTR_SHORT_ADDR 10 static void setup_802154() { int sock_route = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock_route == -1) exit(1); int sock_generic = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock_generic < 0) exit(1); int nl802154_family_id = netlink_query_family_id(&nlmsg, sock_generic, "nl802154", true); for (int i = 0; i < 2; i++) { char devname[] = "wpan0"; devname[strlen(devname) - 1] += i; uint64_t hwaddr = 0xaaaaaaaaaaaa0002 + (i << 8); uint16_t shortaddr = 0xaaa0 + i; int ifindex = if_nametoindex(devname); struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = NL802154_CMD_SET_SHORT_ADDR; netlink_init(&nlmsg, nl802154_family_id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, NL802154_ATTR_IFINDEX, &ifindex, sizeof(ifindex)); netlink_attr(&nlmsg, NL802154_ATTR_SHORT_ADDR, &shortaddr, sizeof(shortaddr)); int err = netlink_send(&nlmsg, sock_generic); if (err < 0) { } netlink_device_change(&nlmsg, sock_route, devname, true, 0, &hwaddr, sizeof(hwaddr), 0); if (i == 0) { netlink_add_device_impl(&nlmsg, "lowpan", "lowpan0", false); netlink_done(&nlmsg); netlink_attr(&nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); int err = netlink_send(&nlmsg, sock_route); if (err < 0) { } } } close(sock_route); close(sock_generic); } void loop(void) { memcpy((void*)0x20005d00, "jfs\000", 4); memcpy((void*)0x20005d40, "./file0\000", 8); memcpy( (void*)0x20000800, "\x00\x96\xa3\xd4\xbd\x78\xed\x8c\xcb\x49\xf6\x0a\x4a\xf0\x75\x26\x63\x61" "\x65\x1a\xe8\xd0\x5c\x85\x82\xb4\x5a\x00\x00\x00\x00\xdf\x51\x12\x28\x92" "\xc2\xb2\x83\x87\x58\xeb\x5a\x78\x65\xa6\x9f\x31\xa8\x20\xb0\xa5\xdc\x08" "\xcc\x71\x13\xa3\xde\x3e\xc1\x8a\xa6\x33\x16\x62\x84\x83\x7d\xad\x87\xe4" "\x49\x8a\xc1\x9c\x0c\x40\x2f\x24\x48\x07\xb3\x4c\x99\xe2\x1d\x98\x02\x23" "\xad\x8c\x31\xc4\x00\xf7\xa0\x65\xc2\x01\x00\x00\x00\x01\x00\x00\x00\x44" "\x87\xfb\x15\x36\x91\x8e\x1a\x56\x31\x07\xb1\x70\xb7\xd9\xdc\x64\xba\x13" "\x93\xfc\x00\x9f\x3f\x40\xfe\x8c\x36\xa2\x8d\x60\xb5\xc4\x10\x39\x58\x9c" "\x75\x09\x83\x26\x11\x4c\xc8\xa9\x9a\xff\xc2\xde\x1e\xbf\xba\x25\xb1\x7e" "\xb5\xb9\x7f\xbf\x77\x30\x4c\xc1\x47\x7a\x65\xd4\x89\xe2\x7b\x83\x00\xfa" "\x42\x7f\x0d\x07\x55\xb2\xd8\x90\x1e\xbf\xae\x9a\x29\xef\x15\x47\xf2\xf4" "\xf9\x21\x67\xef\x03\x2c\xe1\xfc\xd9\xbe\x1c\xa3\x1d\x6a\x3d\x03\x03\x87" "\x5f\x27\x7a\xd4\x58\x08\xad\xac\x6d\x41\x55\x21\x05\x2a\x9a\x7a\xe7\x0a" "\xcd\xb4\x42\xf0\xd8\x4c\x38\x90\x38\xf3\xfb\x68\xe8\x07\x00\x00\x00\x11" "\xdd\x83\xe8\xd9\x8e\x86\xa1\xc8\xca\xbd\xd1\x5f\x8a\x71\x4c\x4b\xd0\x48" "\xd6\x0e\xf5\xc5\x26\x4e\x65\xe3\x8d\x00\xe4\x9e\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x2d\xf8\x8f\xb4\x0f\x10\x02\x67" "\x10\xd3\x92\x0a\x71\x6b\x16\x4f\x60\xe0\x93\x29\x88\xea\x0a\xcb\x56\xe0" "\x3c\xce\xc1\xb0\xe0\xbb\xbe\x62\xfb\xba\x65\xb6\x09\xca\x85\x75\x04\xdf" "\x2b\xb5\xc2\xea\x8d\x41\x20\xb9\x86\x19\x47\x09\x86\x17\x3f\x41\x95\x5c" "\xc9\x1c\xc0\xbe\x0b\xe7\x20\xca\x64\xc6\xc6\xd9\x7a\xf1\x19\x78\x2c\xe9" "\xfc\x2c\x4f\x74\x14\xb4\x70\x38\x30\xb2\xd5\x1a\xc0\x59\x98\x89\xa3\x64" "\x97\xbd\x46\x67\x86\xcb\xff\x12\xc6\xe9\x7f\x91\x58\x52\xe7\xd8\x1a\x60" "\x3a\xba\xab\xfb\x46\xe1\x06\xec\xc6\x93\x2c\x4d\x90\x67\xb7\x1c\x85\x7b" "\xfe\x8f\x78\xab\xf9\xd2\x68\x3b\x1c\xf3\xe8\xa3\xee\x51\x42\x38\xe7\x43" "\xa3\xf6\xb8\x49\x44\xd7\x2a\x7a\x2a\x51\xbe\xec\xc8\x48\xa9\x62\xff\xdd" "\x56\xa5\x0a\xcd\xe5\xc6\x11\xe4\xd0\x1a\x56\xdb\x64\x38\xc7\x04\xfc\xb9" "\x63\xd8\x45\xed\x67\xa9\xdb\xb0\xca\x90\x7d\x42\xfb\x76\x59\xfa\x83\xcc" "\x9f\x52\x06\xe7\x1a\xc7\xfa\xdf\x48\x8d\xde\x71\x73\x13\x48\x71\x4f\x64" "\x2d\xfe\x13\x5c\xd5\xe7\x8f\x29\x95\x05\x45\x36\x24\x3d\x00\x00\x00\x00" "\x00\xda\xdc\x7d\xbe\xbe\x07\x26\x06\x00\x00\xb6\x6e\x0b\xb3\x6c\xd3\xaa" "\x00\xbf\x32\x9f\x2c\xf3\xcb\x13\x48\x45\x4c\xa1\xd7\xac\xa8\xda\xbb\x4f" "\x94\xbb\x06\x38\x6c\x60\xfd\x59\x6e\x61\x45\x4f\x72\xca\xc4\xdf\x8f\xef" "\x6e\x62\xef\x89\x2d\xbc\x82\x8a\xe4\x6c\xbc\x49\x2d\xfd\x5f\x68\x3d\x71" "\x46\x6d\x2e\x54\x90\xfa\xfd\x46\xd2\xcb\x73\xac\x39\x33\x00\xf1\x70\x64" "\x99\xdb\xee\x4b\x54\xd8\x68\xd8\x20\xb2\xbb\xba\x51\x33\x1d\x85\xba\x4f" "\xed\x95\x88\x75\xc7\x18\x24\xf6\x92\xe5\x88\xbf\x22\xb2\xa2\x3b\xd9\x48" "\xa0\xfb\xd1\x46\xa9\x47\xfc\x2d\xf4\x5a\x4b\x87\x2b\x9e\x5b\x81\x7e\x25" "\x4c\x8e\x1d\x63\xa0\xe4\x34\x04\x9c\xca\x1f\x9a\x9b\x90\x8d\x69\xf6\xa5" "\x79\xbe\x4d\x87\xe4\xb8\xd6\xf1\x88\x61\x5f\x0d\x32\x09\x00\x00\x00\x30" "\xce\x1a\xdf\x98\xa7\x93\x36\x91\xeb\x62\xcd\x99\x01\xff\x94\x4f\x17\x9b" "\xac\xc2\x03\x0d\x47\x3f\xf4\xb4\xb8\x6e\xac\x81\x09\x4f\x1b\x00\x00\x64" "\x4e\x8e\x63\x02\xce\x6f\x23\xdb\x76\xfd\xbf\x92\x64\xe0\x48\x30\xd3\xed" "\x3f\x48\x3d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x0f\x6d\x6c\x41\x4a\x7c\xa2\x99\xd3\x13\xb3\xf5\x51\x30\x43\xd4\x74\xe5" "\x03\x62\x7a\x73\x1d\x46\x8e\x9f\xec\x17\x8c\x67\xe6\xc3\x95\xc3\xfe\x5f" "\x7e\x6d\x18\x08\x58\x4f\x33\x9a", 836); sprintf((char*)0x20000b44, "%020llu", (long long)-1); sprintf((char*)0x20000b58, "0x%016llx", (long long)-1); memcpy( (void*)0x20011840, "\x78\x9c\xec\xdd\x4d\x6f\x1d\x57\x19\x07\xf0\xe7\xbe\xf8\xfa\xa5\xb4\x8d" "\x2a\x54\x85\x88\x45\x9a\x42\x69\x29\xcd\x7b\x02\xe5\xad\x29\x0b\x16\xb0" "\x00\x09\x65\x4d\x22\xd7\xad\x02\x29\xa0\xc4\x20\x5a\x59\xc4\x95\x17\x88" "\x15\x5f\x01\x36\xdd\xb0\xe8\x57\xe0\x03\xf4\x33\x20\x3e\x00\x91\x6c\x56" "\x5d\x50\x06\x8d\x7d\x4e\x32\x1e\x5f\xe7\x3a\x24\xbe\x73\xed\xf3\xfb\x49" "\xce\xcc\x33\xe7\x8e\xef\x99\xfc\x3d\x9e\x7b\x3d\x33\xf7\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\x10\x3f\xfa\xe1\xcf\x2e\xf4\x22" "\xe2\xc6\xef\xd2\x82\x13\x11\x5f\x88\x41\x44\x3f\x62\xb1\xae\x4f\x47\x3d" "\x73\x2d\x3f\x7e\x18\x11\x27\x63\xbb\x39\x5e\x8c\x88\xc1\x7c\x44\xbd\xfe" "\xf6\x3f\xcf\x47\x5c\x8e\x88\x4f\x9f\x8b\xd8\xdc\x5a\x5b\xae\x17\x5f\x3c" "\x60\x3f\xae\x9c\x5f\xbd\xf3\xf9\x8f\x7f\xf0\x8f\x3f\xfe\x79\xe3\xe4\x2f" "\xde\xf9\xf9\xc7\xed\xf6\x9f\x7e\xf1\xd2\x27\x7f\xba\x17\x71\xe2\x27\x6f" "\x7e\xf2\xf9\xbd\xa7\xb3\xed\x00\x00\x00\x50\x8a\xaa\xaa\xaa\x5e\x7a\x9b" "\x7f\x2a\xbd\xbf\xef\x77\xdd\x29\x00\x60\x2a\xf2\xf1\xbf\x4a\xf2\x72\xb5" "\x5a\xad\x56\xab\xd5\xc7\xaf\x6e\xaa\xc6\xbb\xd7\x2c\x22\x62\xbd\xb9\x4e" "\xfd\x9a\xc1\xe9\x78\x00\x38\x62\xd6\xe3\xb3\xae\xbb\x40\x87\xe4\x5f\xb4" "\x61\x44\x3c\xd3\x75\x27\x80\x99\xd6\xeb\xba\x03\x1c\x8a\xcd\xad\xb5\xe5" "\x5e\xca\xb7\xd7\x3c\x1e\x9c\xde\x69\xcf\xd7\x82\xec\xca\x7f\xbd\xf7\xe0" "\xfe\x8e\xfd\xa6\x93\xb4\xaf\x31\x99\xd6\xcf\xd7\x46\x0c\xe2\x85\x7d\xfa" "\xb3\x38\xa5\x3e\xcc\x92\x9c\x7f\xbf\x9d\xff\x8d\x9d\xf6\x51\x7a\xdc\x61" "\xe7\x3f\x2d\xfb\xe5\x3f\xda\xb9\xf5\xa9\x38\x39\xff\x41\x3b\xff\x96\xe3" "\x93\x7f\x7f\x6c\xfe\xa5\xca\xf9\x0f\x1f\x2b\xff\x81\xfc\x01\x00\x00\x00" "\x00\x60\x86\xe5\xbf\xff\x9f\xe8\xf8\xfc\xef\xfc\x93\x6f\xca\x81\x3c\xea" "\xfc\xef\xe9\x29\xf5\x01\x00\x00\x00\x00\x00\x00\x00\x9e\xb6\x27\x1d\xff" "\xef\x01\xe3\xff\x01\x00\x00\xc0\xcc\xaa\xdf\xab\xd7\xfe\xf2\xdc\xc3\x65" "\xfb\x7d\x16\x5b\xbd\xfc\x7a\x2f\xe2\xd9\xd6\xe3\x81\xc2\xa4\x9b\x65\x96" "\xba\xee\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x94\x64\xb8\x73\x0d" "\xef\xf5\x5e\xc4\x5c\x44\x3c\xbb\xb4\x54\x55\x55\xfd\xd5\xd4\xae\x1f\xd7" "\x93\xae\x7f\xd4\x95\xbe\xfd\x50\xb2\xae\x7f\xc9\x03\x00\xc0\x8e\x4f\x9f" "\x6b\xdd\xcb\xdf\x8b\x58\x88\x88\xeb\xe9\xb3\xfe\xe6\x96\x96\x96\xaa\x6a" "\x61\x71\xa9\x5a\xaa\x16\xe7\xf3\xeb\xd9\xd1\xfc\x42\xb5\xd8\x78\x5f\x9b" "\xa7\xf5\xb2\xf9\xd1\x01\x5e\x10\x0f\x47\x55\xfd\xcd\x16\x1a\xeb\x35\x4d" "\x7a\xbf\x3c\xa9\xbd\xfd\xfd\xea\xe7\x1a\x55\x83\x03\x74\x6c\x3a\x3a\x0c" "\x1c\x00\x22\x62\xe7\x68\xb4\xe9\x88\x74\xcc\x54\xd5\xf3\xd1\xf5\xab\x1c" "\x8e\x06\xfb\xff\xf1\x63\xff\xe7\x20\xba\xfe\x39\x05\x00\x00\x00\x0e\x5f" "\x55\x55\x55\x2f\x7d\x9c\xf7\xa9\x74\xce\xbf\xdf\x75\xa7\x00\x80\xa9\xc8" "\xc7\xff\xf6\x79\x01\xb5\x5a\xad\x56\xab\xd5\xc7\xaf\x6e\xaa\xc6\xbb\xd7" "\x2c\x22\x62\xbd\xb9\x4e\xfd\x9a\xc1\x70\xfc\x00\x70\xc4\xac\xc7\x67\x5d" "\x77\x81\x0e\xc9\xbf\x68\xc3\x88\x38\xd9\x75\x27\x80\x99\xd6\xeb\xba\x03" "\x1c\x8a\xcd\xad\xb5\xe5\x5e\xca\xb7\xd7\x3c\x1e\xa4\xf1\xdd\xf3\xb5\x20" "\xbb\xf2\x5f\xef\x6d\xaf\x97\xd7\x1f\x37\x9d\xa4\x7d\x8d\xc9\xb4\x7e\xbe" "\x36\x62\x10\x2f\xec\xd3\x9f\x17\xa7\xd4\x87\x59\x92\xf3\xef\xb7\xf3\xbf" "\xb1\xd3\x3e\x4a\x8f\x3b\xec\xfc\xa7\x65\xbf\xfc\xeb\xed\x3c\xd1\x41\x7f" "\xba\x96\xf3\x1f\xb4\xf3\x6f\x39\x3e\xf9\xf7\xc7\xe6\x5f\xaa\x9c\xff\xf0" "\xb1\xf2\x1f\xc8\x1f\x00\x00\x00\x00\x00\x66\x58\xfe\xfb\xff\x09\xe7\x7f" "\xf3\x26\x03\x00\x00\x00\x00\x00\x00\xc0\x91\xb3\xb9\xb5\xb6\x9c\xef\x7b" "\xcd\xe7\xff\xbf\x3c\xe6\x71\xee\xff\x3c\x9e\x72\xfe\x3d\xf9\x17\x29\xe7" "\xdf\x6f\xe7\xdf\xba\x20\x67\xd0\x98\xbf\xff\xf6\xc3\xfc\xff\xbd\xb5\xb6" "\xfc\xf1\xea\xbf\xbe\x94\xa7\x33\x9f\xff\xdc\x60\x54\x3f\xf7\x5c\xaf\x3f" "\x18\xa6\x6b\x7e\xaa\xb9\x77\xe3\x56\xdc\x8e\x95\x38\xbf\xe7\xf1\xc3\x5d" "\xed\x17\xf6\xb4\xcf\xed\x6a\xbf\x38\xa1\xfd\xd2\x9e\xf6\x51\xdd\xbe\x98" "\xdb\xcf\xc6\x72\xfc\x3a\x6e\xc7\x3b\x0f\xda\xe7\x27\x5c\x18\xb5\x30\xa1" "\xbd\x9a\xd0\x9e\xf3\x1f\xd8\xff\x8b\x94\xf3\x1f\x36\xbe\xea\xfc\x97\x52" "\x7b\xaf\x35\xad\xdd\xff\xa8\xbf\x67\xbf\x6f\x4e\xc7\x3d\xcf\xb5\xbf\xfd" "\xe7\x95\xbd\x7b\xd7\xf4\x6d\xc4\xe0\xc1\xb6\x35\xd5\xdb\x77\xa6\x83\xfe" "\x6c\xff\x9f\x3c\x33\x8a\xdf\xde\x5d\xb9\x73\xf6\xf7\x37\x57\x57\xef\x5c" "\x88\x34\xd9\xb5\xf4\x62\xa4\xc9\x53\x96\xf3\x9f\x4b\x5f\x39\xff\x57\x5f" "\xde\x69\xcf\xbf\xf7\x9b\xfb\xeb\xfd\x8f\x46\x8f\x9d\xff\xac\xd8\x88\xe1" "\xbe\xf9\xbf\xdc\x98\xaf\xb7\xf7\xb5\x29\xf7\xad\x0b\x39\xff\x51\xfa\xca" "\xf9\xe7\x23\xd0\xf8\xfd\xff\x28\xe7\xbf\xff\xfe\xff\xfa\xc1\xbe\xc5\xdc" "\xd3\xee\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xec\xa7\xaa" "\xaa\xed\x5b\x44\xaf\x45\xc4\xd5\x74\xff\x4f\x57\xf7\x66\x02\x00\xd3\x95" "\x8f\xff\x55\x92\x97\xab\xd5\x6a\xb5\x5a\xad\x3e\x7e\x75\x53\x35\xde\x5b" "\xcd\x22\x22\xfe\xde\x5c\xa7\x7e\xcd\xf0\x87\x71\xdf\x0c\x00\x98\x65\xff" "\x8d\x88\x7f\x76\xdd\x09\x3a\x23\xff\x82\xe5\xcf\xfb\xab\xa7\x5f\xe9\xba" "\x33\xc0\x54\xdd\xfd\xe0\xc3\x5f\xde\xbc\x7d\x7b\xe5\xce\xdd\xae\x7b\x02" "\x00\x00\x00\x00\x00\x00\x00\xfc\xbf\xf2\xf8\x9f\xa7\x1b\xe3\x3f\x6f\x5f" "\x07\xd4\x1a\x37\x7a\xd7\xf8\xaf\x6f\xc7\xe9\x23\x3b\xfe\x67\x7f\x34\xd8" "\x1e\xeb\x3c\x6d\xd0\x4b\xf1\xe8\xf1\xbf\xcf\xc4\xa3\xc7\xff\x1e\x4e\x78" "\xbe\x49\x83\x85\x8e\x26\xb4\xcf\x4f\x68\x5f\x98\xd0\x3e\xf6\x46\x8f\x86" "\x9c\xff\x4b\x29\xe3\x9c\xff\xa9\xb4\x61\x25\x8d\xff\xfa\x6a\x07\xfd\xe9" "\x5a\xce\xff\x4c\x1a\xeb\x39\xe7\xff\xb5\xd6\xe3\x9a\xf9\x57\x7f\x3d\xca" "\xf9\xf7\x77\xe5\x7f\x6e\xf5\xfd\xdf\x9c\xbb\xfb\xc1\x87\x6f\xdc\x7a\xff" "\xe6\x7b\x2b\xef\xad\xfc\xea\xc2\xf9\xab\x97\x2f\x5d\xb9\x7c\xe9\xca\x95" "\x73\xef\xde\xba\xbd\x72\x7e\xe7\xdf\x0e\x7b\x7c\xb8\x72\xfe\x79\xec\x6b" "\xd7\x81\x96\x25\xe7\x9f\x33\x97\x7f\x59\x72\xfe\x5f\x4d\xb5\xfc\xcb\x92" "\xf3\x7f\x25\xd5\xf2\x2f\x4b\xce\x3f\xbf\xde\x93\x7f\x59\x72\xfe\xf9\xbd" "\x8f\xfc\xcb\x92\xf3\x7f\x2d\xd5\xf2\x2f\x4b\xce\xff\xeb\xa9\x96\x7f\x59" "\x72\xfe\xaf\xa7\x5a\xfe\x65\xc9\xf9\x7f\x23\xd5\xf2\x2f\x4b\xce\xff\x8d" "\x54\xcb\xbf\x2c\x39\xff\xb3\xa9\x96\x7f\x59\x72\xfe\xe7\x52\x2d\xff\xb2" "\xe4\xfc\xf3\x19\x2e\xf9\x97\x25\xe7\x9f\xaf\x6c\x90\x7f\x59\x72\xfe\x17" "\x53\x2d\xff\xb2\xe4\xfc\x2f\xa5\x5a\xfe\x65\xc9\xf9\x5f\x4e\xb5\xfc\xcb" "\x92\xf3\xbf\x92\x6a\xf9\x97\x25\xe7\x7f\x35\xd5\xf2\x2f\x4b\xce\xff\x9b" "\xa9\x96\x7f\x59\x72\xfe\xdf\x4a\xb5\xfc\xcb\x92\xf3\x7f\x33\xd5\xf2\x2f" "\x4b\xce\xff\xdb\xa9\x96\x7f\x59\x72\xfe\xdf\x49\xb5\xfc\xcb\x92\xf3\xff" "\x6e\xaa\xe5\x5f\x96\x9c\xff\xf7\x52\x2d\xff\xb2\xe4\xfc\xbf\x9f\x6a\xf9" "\x97\x25\xe7\xff\x56\xaa\xe5\x5f\x96\x87\x9f\xff\x6f\xc6\x8c\x19\x33\x79" "\xa6\xeb\xdf\x4c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\xdb\x34\x2e" "\x27\xee\x7a\x1b\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xff\xb1\x03\x07\x02\x00" "\x00\x00\x00\x40\xfe\xaf\x8d\x50\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x85" "\x1d\x38\x10\x00\x00\x00\x00\x00\xf2\x7f\x6d\x84\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\x2a\xec\xdd\x5b\x8c\x5c\x77\x7d\x07\xf0\xb3\x37\x7b\xed\x04" "\xe2\x92\x10\x42\x30\xc4\x76\x2e\x18\xb2\xc9\xee\xfa\x96\x98\x60\x62\xae" "\x4d\x43\x2f\x69\x20\xb4\xb4\xa1\x8e\xb1\xd7\x8e\xc1\xb7\x7a\xd7\xb9\x29" "\x6a\x96\x26\x6d\x83\x88\xd4\x48\xed\x43\xfa\x50\x0a\x88\xa2\x48\x6d\x95" "\xa8\x42\x2a\x95\x52\x14\xa9\x48\xed\x5b\x79\x2a\xca\x0b\x02\x89\x07\x3f" "\x24\x95\x89\xa0\x12\x55\x92\xad\xce\xcc\xff\xff\xf7\xcc\xec\x78\xce\x3a" "\xf6\xc4\x33\xe7\xff\xf9\x20\xfb\xe7\xdd\x39\x67\xe6\x3f\x67\xce\xcc\xee" "\x77\xc3\x77\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x56\x1b\x3f\x3e\xf7\x17\x23\x45\x51\x94\x7f\x1a\x7f\xad\x2b\x8a" "\x4b\xcb\x7f\xaf\x29\x76\x97\x1f\x2e\xee\xb8\xd8\x2b\x04\x00\x00\x00\xce" "\xd7\xeb\x8d\xbf\xff\xf1\xb2\xf4\x89\xdd\x2b\xd8\xa9\x65\x9b\xff\x78\xdf" "\x7f\x7d\x77\x69\x69\x69\xa9\xf8\xe2\xab\xa7\xde\xf8\xab\xa5\xa5\x74\xc1" "\x86\xa2\x18\x5b\x5d\x14\x8d\xcb\xa2\xff\xfc\xd5\x2f\x97\x5a\xb7\x09\x1e" "\x2f\x26\x47\x46\x5b\x3e\x1e\xad\xb8\xf9\xb1\x8a\xcb\xc7\x2b\x2e\x9f\xa8" "\xb8\x7c\x55\xc5\xe5\xab\x2b\x2e\x9f\xac\xb8\x7c\xd9\x01\x58\x66\x4d\xf3" "\xe7\x31\x8d\x2b\xbb\xae\xf1\xcf\x75\xcd\x43\x5a\x5c\x51\x4c\x34\x2e\xbb" "\xae\xcb\x5e\x8f\x8f\xac\x1e\x1d\x8d\x3f\xcb\x69\x18\x69\xec\xb3\x34\x71" "\xa0\x38\x54\x1c\x2e\xe6\x8a\x99\x65\xfb\x8c\x34\xfe\x57\x14\x2f\x6c\x2c" "\x6f\xeb\x8e\x22\xde\xd6\x68\xcb\x6d\xad\x2f\x8a\xe2\xf4\xcf\x1f\xdd\x17" "\xd7\x30\x12\x8e\xf1\x75\x45\xdb\x8d\x35\xb4\x3e\x76\xaf\x7c\xb4\xd8\xf0" "\xea\xcf\x1f\xdd\xf7\x9d\x85\x97\xdf\xdd\x6d\x56\x1e\x86\x65\x2b\x2d\x8a" "\xcd\x9b\xca\x75\x3e\x51\x14\x67\x7e\x5c\x55\x8c\x14\xab\xd3\x31\x89\xeb" "\x1c\x6d\x59\xe7\xfa\x2e\xeb\x1c\x6b\x5b\xe7\x48\x63\xbf\xf2\xdf\x9d\xeb" "\x3c\xbd\xc2\x75\xc6\xfb\x3d\x19\xd6\xf9\xc3\x1e\xeb\x5c\x1f\x3e\xf7\xd0" "\xb5\x45\x51\x2c\x16\x67\xdd\xa6\xd3\xe3\xc5\x68\xb1\xb6\xe3\x56\xd3\xf1" "\x9e\x6c\x9e\x11\xe5\x75\x94\x0f\xe5\x3b\x8a\xf1\x73\x3a\x4f\x36\xae\xe0" "\x3c\x29\xf7\xf9\xd9\xb5\xed\xe7\x49\xe7\x39\x19\x8f\xff\xc6\x70\x4c\xc6" "\xcf\xb2\x86\xd6\x87\xe3\x95\xaf\xac\x5a\x76\xdc\xdf\xec\x79\x52\xde\xeb" "\x41\x38\x57\xcb\xeb\xbe\xab\xbc\xd1\xc9\xc9\xd6\x1f\xad\xb6\x9d\xab\xe5" "\x36\x8f\x5e\x7f\xf6\x73\xa0\xeb\x63\xd7\xe5\x1c\x48\xe7\x72\xcb\x39\xb0" "\xa9\xea\x1c\x18\x5d\x35\xd6\x38\x07\x46\xcf\xac\x79\x53\xdb\x39\x30\xbb" "\x6c\x9f\xd1\x62\xa4\x71\x5b\xa7\xae\xef\x7d\x0e\x4c\x2f\x1c\x39\x3e\x3d" "\xff\xf0\x23\x37\x1d\x3a\xb2\xf7\xe0\xdc\xc1\xb9\xa3\xb3\x33\x3b\xb6\x6d" "\xdd\xbe\x6d\xeb\xf6\xed\xd3\x07\x0e\x1d\x9e\x9b\x69\xfe\x7d\x6e\x87\x74" "\x88\xac\x2d\x46\xd3\x39\xb8\x29\xbc\xd6\xc4\x73\xf0\xfd\x1d\xdb\xb6\x9e" "\x92\x4b\xdf\xbc\x70\xcf\x83\xc9\x01\x79\x1e\x94\xf7\xfd\xb3\x37\x94\x0b" "\xba\x74\xb4\x38\xcb\x39\x5e\x6e\xf3\xc4\xe6\xf3\x7f\x1e\xa4\xaf\xfb\x2d" "\xcf\x83\xf1\x96\xe7\x41\xd7\xd7\xd4\x2e\xcf\x83\xf1\x15\x3c\x0f\xca\x6d" "\x4e\x6f\x5e\xd9\xd7\xcc\xf1\x96\x3f\xdd\xd6\xd0\xaf\xd7\xc2\x75\x2d\xe7" "\xc0\xc5\xfc\x7a\x58\xde\xe6\xbd\x1f\x38\xfb\x6b\xe1\xfa\xb0\xae\x27\x3f" "\x78\xae\x5f\x0f\xc7\x96\x9d\x03\xf1\x6e\x8d\x84\xe7\x5e\xf9\x99\xf4\xfd" "\xde\xe4\xad\xe1\xb8\x2c\x3f\x2f\xae\x2e\x2f\xb8\x64\x55\x71\x72\x7e\xee" "\xc4\xcd\x0f\xed\x5d\x58\x38\x31\x5b\x84\xf1\x96\xb8\xbc\xe5\xb1\xea\x3c" "\x5f\xd6\xb6\xdc\xa7\x62\xd9\xf9\x32\x7a\xce\xe7\xcb\xee\x7f\x78\xed\x86" "\xab\xbb\x7c\x7e\x5d\x38\x56\x93\x37\xf6\x7e\xac\xca\x6d\xb6\x4d\xf5\x7e" "\xac\x1a\xaf\xee\xdd\x8f\x67\xdb\x67\xb7\x14\x61\x5c\x60\x6f\xf5\xf1\xec" "\xf6\xd5\xac\x3c\x9e\x29\x4b\xf4\x38\x9e\xe5\x36\x4f\xdc\x74\xfe\xdf\x0b" "\xa6\x5c\xd2\xf2\xfa\x37\x51\xf5\xfa\x37\x36\x31\xde\x7c\xfd\x1b\x4b\x47" "\x63\xa2\xed\xf5\x6f\xf9\x43\x33\xd6\x58\x59\x51\x9c\xbe\x69\x65\xaf\x7f" "\x13\xe1\xcf\x5b\xfd\xfa\x77\xc5\x80\xbc\xfe\x95\xc7\xea\xde\x9b\x7b\x9f" "\x03\xe5\x36\x4f\x4e\x9f\xeb\x39\x30\xde\xf3\xf5\xef\xda\x30\x47\xc2\x7a" "\x3e\x10\x12\xc3\x64\x4b\xee\x7f\xa3\x71\xf9\x62\xf3\x34\x6d\x79\x2c\x2b" "\xcf\x9b\xf1\xf1\x89\x70\xde\x8c\xc7\x5b\x6c\x3f\x6f\xb6\x2e\xdb\xa7\xbc" "\xb6\xf2\xb6\x37\xcf\xbc\xb9\xf3\x66\xf3\xb5\xed\x8f\x55\xdb\xf7\x2d\x35" "\x3c\x6f\xca\x63\xf5\xd7\x33\xbd\xcf\x9b\x72\x9b\x17\x67\xcf\xff\xb5\x63" "\x4d\xfc\x67\xcb\x6b\xc7\xaa\xaa\x73\x60\x62\x6c\x55\xb9\xde\x89\x74\x12" "\x34\x5f\xef\x96\xd6\xc4\x73\xe0\xe6\x62\x5f\x71\xac\x38\x5c\xec\x4f\xfb" "\x94\x8f\x72\x79\x5b\x53\x5b\x56\x76\x0e\xac\x0a\x7f\xde\xea\xd7\x8e\xab" "\x06\xe4\x1c\x28\x8f\xd5\x33\x5b\x7a\x9f\x03\xe5\x36\x3f\xd8\x7a\x61\xbf" "\x77\xda\x1c\x3e\x93\xb6\x69\xf9\xde\xa9\xf3\xe7\x0b\x67\xcb\xfc\x57\x8f" "\x9f\xb9\xbe\xce\xc3\x76\xa1\x33\x7f\xb9\xce\x4f\x6c\xeb\xfd\xb3\xa1\x72" "\x9b\x97\xb7\x9d\x6b\xce\xe8\x7d\x9c\x6e\x0c\x9f\xb9\xa4\xcb\x71\xea\x7c" "\xfe\x9c\xed\x9c\xde\x5f\xbc\x35\xc7\xe9\xaa\xb0\xce\xc3\xdb\x7b\xff\x6c" "\xaa\xdc\xe6\x8a\x1d\x2b\x3c\x9f\x76\x17\x45\xf1\xd2\xec\x4b\x8d\x9f\x77" "\x85\x9f\xef\xfe\xf3\xc9\xff\xfe\x6e\xdb\xcf\x7d\xbb\xfd\x4c\xf9\xa5\xd9" "\x97\xee\x9c\xbe\xfb\x47\xe7\xb2\x7e\x00\x00\xde\xbc\x37\x1a\x7f\x2f\xae" "\x6a\x7e\xaf\xd9\xf2\x5f\xac\x57\xf2\xdf\xff\x01\x00\x00\x80\xa1\x10\x73" "\xff\x68\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\x58\x98\xe9\xff\x4b" "\x2f\xff\x03\x00\x00\x40\x6d\xc4\xdc\x3f\x1e\x66\x92\x49\xfe\xbf\xff\xd6" "\x9d\xcf\xbd\xfe\x58\x91\xde\x0d\x70\x29\x88\x97\xc7\xc3\x70\xd7\x47\x9a" "\xdb\xc5\x8e\xf7\x62\xf8\x78\xc3\xd2\x19\xe5\xe7\x3f\xf6\xed\x89\xe7\xbe" "\xfa\xd8\xca\x6e\x7b\xb4\x28\x8a\xd7\xee\x7c\x4f\xd7\xed\xef\xff\x48\x5c" "\x57\xd3\xf1\xb8\xce\x0f\xb5\x7f\x7e\x99\xab\xae\x59\xd1\xed\xdf\x77\xcf" "\x99\xed\x5a\xdf\x3f\xe1\xf4\xce\xe6\xf5\xc7\xfb\xb3\xd2\xd3\x20\x76\x95" "\x5f\x98\xde\xd2\xb8\xde\x0d\x0f\xcf\x36\xe6\x8b\x77\x16\x8d\x79\xf7\xe2" "\x93\x8f\x37\xaf\xbf\xf9\x71\xdc\xfe\xd4\xd6\xe6\xf6\x7f\x1b\xde\xb4\x64" "\xf7\x81\x91\xb6\xfd\x37\x87\xf5\x5c\x17\xe6\x86\xf0\x9e\x32\x77\xed\x3e" "\x73\x1c\xca\x19\xf7\x7b\x6e\xfd\xfb\xfe\xfd\xf2\xcf\x9d\xb9\xbd\xb8\xdf" "\xc8\xa6\xb7\x37\xee\xe6\x33\x7f\xd2\xbc\xde\xf8\x1e\x51\x4f\x5f\xde\xdc" "\x3e\xde\xef\xb3\xad\xff\xdf\xbe\xf6\xec\x73\xe5\xf6\x0f\x5d\xdf\x7d\xfd" "\x8f\x8d\x76\x5f\xff\xa9\x70\xbd\x3f\x0b\xf3\x57\xbb\x9a\xdb\xb7\x1e\xf3" "\xaf\xb6\xac\xff\xcf\xc2\xfa\xe3\xed\xc5\xfd\x6e\xfe\xd6\xf7\xbb\xae\xff" "\xf9\x77\x35\xb7\x7f\x3e\x9c\x17\xdf\x08\xb3\x73\xfd\x1f\xfd\xcb\xf7\xbe" "\xde\xed\xf1\x8a\xb7\xb3\xfb\xb6\xe6\x7e\xf1\xf6\x67\xfe\x77\x5b\x63\xbf" "\x78\x7d\xf1\xfa\x3b\xd7\x3f\xf9\xd8\x6c\xdb\xf1\xe8\xbc\xfe\x17\x5f\x6d" "\x5e\xcf\xae\x07\x7e\x31\xd6\xba\x7d\xfc\x7c\xbc\x9d\xe8\xbe\xdb\xda\xcf" "\xef\x91\xf0\xf8\xb6\xf5\xc8\x8b\xa2\x78\xf6\xcf\x8b\xb6\xe3\x5c\x7c\xb8" "\xb9\xdf\xbf\x76\xac\x3f\x5e\xdf\xf1\xdb\xba\xaf\xff\xc6\x8e\x75\x1e\x1f" "\xb9\xa6\xb1\xff\x99\xfb\xb3\xae\xed\x7e\x7d\xfd\xef\xb7\x74\xbd\xbf\x71" "\x3d\xbb\xff\x69\x5d\xdb\xfd\x79\xfa\x93\xe1\xf8\xbd\x3a\xfd\x83\xf2\x7a" "\x4f\xdd\x1d\xce\xc7\x70\xf9\xff\xfd\xb0\x79\x7d\x9d\xef\x65\xfa\xfc\x27" "\xdb\x5f\x6f\xe2\xf6\xdf\x58\xd7\x7c\xde\xc6\xeb\x9b\xee\x58\xff\xd3\x1d" "\xeb\x5f\xbc\xa6\x3c\x76\xd5\xeb\xbf\xe3\xd5\xe6\xfa\x9f\xbf\x7d\x75\xdb" "\xfa\x77\x7f\x2a\x9c\x4f\x77\x34\x67\xd5\xfa\x0f\xfe\xdd\x65\x6d\xfb\x7f" "\xf3\x3b\xcd\xc7\xe3\xc4\x83\x53\x47\x8f\xcd\x9f\x3c\xb4\xbf\xe5\xa8\xb6" "\x3e\x8f\x57\x4f\xae\x59\x7b\xc9\xa5\x6f\x7b\xfb\x65\xe1\xb5\xb4\xf3\xe3" "\x3d\xc7\x16\xee\x9f\x3b\xb1\x61\x66\xc3\x4c\x51\x6c\x18\xc2\xb7\x0c\xec" "\xf7\xfa\xbf\x15\xe6\xff\x34\xc7\xe2\x85\xbf\x85\xa6\x1f\xfd\xa2\x79\xde" "\x3d\xf5\xe9\xe6\xd7\xad\xf7\xff\xb2\xf9\xf1\xd3\xe1\xf3\xf7\x85\xc7\x33" "\x7e\x7d\xfc\xfa\xdf\x4c\xb4\x9d\xaf\x9d\x8f\xfb\xe2\xed\xcd\x79\xbe\xeb" "\xff\x60\x58\xc7\x4a\xbd\xeb\x6b\x3f\xbd\x66\x45\x1b\x9e\xfa\xc2\x0b\x27" "\xff\xe5\x4f\x5f\xee\xfc\xbe\x20\xde\x9f\xe3\xef\x9c\x6c\xdc\xbf\x67\x36" "\x5e\xd9\xb8\x6c\xe4\xc5\xe6\xe5\x9d\xaf\x57\x55\x7e\xf2\xce\xf6\xe7\xf5" "\x8f\xc7\x67\x1a\xf3\x7b\xe1\xb8\x2e\x85\x77\x66\xde\x74\x65\xf3\xf6\x3a" "\xaf\x3f\xbe\x37\xc9\x53\x9f\x69\x3e\x7f\xe3\x77\x72\x71\xff\xa2\xe3\xfd" "\x44\xd6\x8d\xb5\xdf\x8f\xf3\x5d\xff\x8f\xc3\xf7\x31\xdf\xbf\xaa\xfd\xf5" "\x2f\x9e\x1f\xdf\x7b\xac\xe3\xdd\x9c\xd7\x15\x23\xe5\x12\x16\xc3\xeb\x43" "\xb1\xd8\xbc\x3c\x6e\x15\x8f\xf7\x53\xa7\xaf\xec\x7a\x7b\xf1\x7d\x78\x8a" "\xc5\x77\x9f\xcb\x32\xcf\x6a\xfe\xe1\xf9\xe9\xc3\x87\x8e\x9e\x7c\x68\x7a" "\x61\x6e\x7e\x61\x7a\xfe\xe1\x47\xf6\x1c\x39\x76\xf2\xe8\xc2\x9e\xc6\x7b" "\x97\xee\xf9\x52\xd5\xfe\x67\x9e\xdf\x6b\x1b\xcf\xef\xfd\x73\x3b\xb6\x15" "\x8d\x67\xfb\xb1\xe6\xe8\xb3\x8b\xbd\xfe\xe3\xf7\xec\xdb\x7f\xcb\xcc\x0d" "\xfb\xe7\x0e\xec\x3d\x79\x60\xe1\x9e\xe3\x73\x27\x0e\xee\x9b\x9f\xdf\x37" "\xb7\x7f\xfe\x86\xbd\x07\x0e\xcc\x3d\x58\xb5\xff\xa1\xfd\xbb\x66\xb7\xec" "\xdc\x7a\xcb\x96\xa9\x83\x87\xf6\xef\xba\x75\xe7\xce\xad\x3b\xa7\x0e\x1d" "\x3d\x56\x2e\xa3\xb9\xa8\x0a\xab\x8a\x2f\x4f\x1d\x3d\xb1\xa7\xb1\xcb\xfc" "\xae\x6d\x3b\x67\xb7\x6f\xdf\x36\x33\x75\xe4\xd8\xfe\xb9\x5d\xb7\xcc\xcc" "\x4c\x9d\xac\xda\xbf\xf1\xb5\x69\xaa\xdc\xfb\x81\xa9\x13\x73\x87\xf7\x2e" "\x1c\x3a\x32\x37\x35\x7f\xe8\x91\xb9\x5d\xb3\x3b\x77\xec\xd8\x52\xf9\xee" "\x8f\x47\x8e\x1f\x98\xdf\x30\x7d\xe2\xe4\xd1\xe9\x93\xf3\x73\x27\xa6\x9b" "\xf7\x65\xc3\x42\xe3\xd3\xe5\xd7\xbe\xaa\xfd\xc9\xc3\xfc\xb1\xf0\x7a\xd7" "\x61\x24\x7c\x77\xfe\xf9\x1b\x77\xa4\xf7\xc7\x2d\x7d\xfb\x2b\x67\xbd\xaa" "\xe6\x26\xed\xdf\x9e\x16\xaf\x84\xf7\x82\x8a\x5f\xdf\xaa\x3e\x8e\xb9\x7f" "\x22\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\x3f\xbc\xf1\xff\x99\x0b" "\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x57\x87\x99\xc8\xff\x00\x00\x00\x50" "\x1b\x31\xf7\x4f\x86\x99\x64\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\xfb\x49\xff\x5f\xff\xbf\x17\xfd\x7f\xfd\xff\x61\x5e\xff\xc5" "\xee\xff\xef\x98\xd1\xff\x67\xf0\x0d\x5a\xff\x3f\xe6\xfe\x35\x45\x91\x65" "\xfe\x07\x00\x00\x80\x1c\xc4\xdc\xbf\x36\xcc\x44\xfe\x07\x00\x00\x80\xda" "\x88\xb9\xff\x92\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\x4b\xc3\x4c" "\x32\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfd\xa4\xff" "\xaf\xff\xdf\x8b\xfe\x7f\x46\xfd\xff\x9f\x5c\x90\x25\x5f\xbc\xf5\x77\xa1" "\xff\xaf\xff\x4f\xb5\x41\xeb\xff\xc7\xdc\xff\xb6\x30\x93\x4c\xf2\x3f\x00" "\x00\x00\xe4\x20\xe6\xfe\xb7\x87\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7" "\x5f\x16\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\xbf\x2e\xcc\x24\x93\xfc" "\xaf\xff\xaf\xff\x5f\xbc\xa6\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x3f\xfa\xff" "\xfa\xff\xbd\xe8\xff\x67\xd4\xff\xef\x83\x8b\xbd\x7e\xfd\x7f\xfd\x7f\xaa" "\x0d\x5a\xff\x3f\xe6\xfe\x5f\x0b\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62" "\xee\x7f\x47\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\xe5\x61\x26\xf2" "\x3f\x00\x00\x00\xd4\x46\xcc\xfd\x57\x84\x99\x64\x92\xff\xf5\xff\xf5\xff" "\xfd\xfe\x7f\xfd\x7f\xfd\x7f\xfd\xff\x7e\xd2\xff\xd7\xff\xef\x45\xff\x5f" "\xff\x7f\x98\xd7\xaf\xff\xaf\xff\x4f\xb5\x41\xeb\xff\xc7\xdc\xff\xce\x30" "\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe\x2b\xc3\x4c\xe4\x7f\x00\x00" "\x00\xa8\x8d\x98\xfb\xdf\x15\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\x7f" "\x55\x98\x49\x26\xf9\xbf\x5b\xff\x7f\xa2\xd0\xff\xd7\xff\xd7\xff\xd7\xff" "\x2f\xf4\xff\xf5\xff\x2f\x08\xfd\x7f\xfd\xff\x5e\xf4\xff\xf5\xff\x87\x79" "\xfd\xfa\xff\xfa\xff\x54\x1b\xb4\xfe\x7f\xcc\xfd\xef\x0e\x33\xc9\x24\xff" "\x03\x00\x00\x40\x0e\x62\xee\xbf\x3a\xcc\x44\xfe\x07\x00\x00\x80\xda\x88" "\xb9\xff\x3d\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\xeb\xc3\x4c\x32" "\xc9\xff\x7e\xff\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x3f\xe9\xff" "\xeb\xff\xf7\xa2\xff\xaf\xff\x3f\xcc\xeb\xd7\xff\xd7\xff\xa7\xda\xa0\xf5" "\xff\x63\xee\x7f\x6f\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\xfb" "\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\xaf\x09\x33\x91\xff\x01\x00" "\x00\xa0\x36\x62\xee\xdf\x10\x66\x92\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7" "\xff\xd7\xff\xd7\xff\xef\x27\xfd\x7f\xfd\xff\x5e\xf4\xff\xf5\xff\x87\x79" "\xfd\xfa\xff\xfa\xff\x54\x1b\xb4\xfe\x7f\xcc\xfd\x1b\xc3\x4c\x32\xc9\xff" "\x00\x00\x00\x90\x83\x98\xfb\x37\x85\x99\xc8\xff\x00\x00\x00\x50\x1b\x31" "\xf7\x5f\x1b\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\x7f\x5d\x98\x49\x26" "\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\x9f\xf4\xff\xf5" "\xff\x7b\xd1\xff\xd7\xff\x1f\xe6\xf5\xeb\xff\xeb\xff\x53\x6d\xd0\xfa\xff" "\x31\xf7\x5f\x1f\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\x7f\x43\x98" "\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\xfb\xc3\x4c\xe4\x7f\x00\x00\x00" "\xa8\x8d\x98\xfb\x37\x87\x99\x64\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff" "\xf5\xff\xf5\xff\xfb\x49\xff\x5f\xff\xbf\x17\xfd\x7f\xfd\xff\x61\x5e\xbf" "\xfe\xbf\xfe\x3f\xd5\x06\xad\xff\x1f\x73\xff\x07\xc2\x4c\x32\xc9\xff\x00" "\x00\x00\x90\x83\x98\xfb\x3f\x18\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc" "\x7f\x63\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\x54\x98\x49\x26\xf9" "\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\x9f\xf4\xff\xf5\xff" "\x7b\xd1\xff\xd7\xff\x1f\xe6\xf5\xeb\xff\xeb\xff\x53\x6d\xd0\xfa\xff\x31" "\xf7\xdf\x14\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\x7f\x73\x98\x89" "\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\x74\x98\x89\xfc\x0f\x00\x00\x00\xb5" "\x11\x73\xff\x4c\x98\x49\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff" "\x5f\xff\xbf\x9f\xf4\xff\xf5\xff\x7b\xd1\xff\xd7\xff\x1f\xe6\xf5\xeb\xff" "\xeb\xff\x53\x6d\xd0\xfa\xff\x31\xf7\xcf\x86\x99\x64\x92\xff\x01\x00\x00" "\x20\x07\x31\xf7\x6f\x09\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee\xdf\x1a" "\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\xbf\x2d\xcc\x24\x93\xfc\xaf\xff" "\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x4f\xf5\xee\xff\x9f\xf9\xbe" "\x41\xff\xbf\x79\xb9\xfe\x7f\x93\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x4d\x83" "\xd6\xff\x8f\xb9\x7f\x7b\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff" "\x8e\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\x5b\xc2\x4c\xe4\x7f\x00" "\x00\x00\xa8\x8d\x98\xfb\x6f\x0d\x33\xc9\x24\xff\xeb\xff\xeb\xff\xeb\xff" "\xeb\xff\xeb\xff\xeb\xff\xf7\x53\xbd\xfb\xff\x7e\xff\xbf\xfe\xbf\xfe\xbf" "\xfe\xbf\xfe\xbf\xfe\x3f\xbd\x0c\x5a\xff\x3f\xe6\xfe\x9d\x61\x26\x99\xe4" "\x7f\x00\x00\x00\xc8\x41\xcc\xfd\x1f\x0a\x33\x91\xff\x01\x00\x00\xa0\x36" "\x62\xee\xbf\x2d\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff\xc3\x61\x26" "\x99\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\x7e\xd2\xff" "\xd7\xff\xef\x45\xff\x5f\xff\x7f\x98\xd7\xaf\xff\xaf\xff\x4f\xb5\x41\xeb" "\xff\xc7\xdc\xbf\x2b\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff\x23" "\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\xb7\x87\x99\xc8\xff\x00\x00" "\x00\x50\x1b\x31\xf7\xef\x0e\x33\xc9\x24\xff\xeb\xff\x0f\x4b\xff\xbf\x59" "\x84\xd1\xff\xd7\xff\x2f\xf4\xff\xf5\xff\x87\x8c\xfe\xbf\xfe\x7f\x2f\xfa" "\xff\xfa\xff\xc3\xbc\x7e\xfd\x7f\xfd\x7f\xaa\x0d\x5a\xff\x3f\xe6\xfe\x8f" "\x86\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31\xf7\x7f\x2c\xcc\x44\xfe\x07" "\x00\x00\x80\xda\x88\xb9\xff\xe3\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc" "\xfd\x9f\x08\x33\xc9\x24\xff\xeb\xff\x0f\x4b\xff\xdf\xef\xff\xef\xb6\x7e" "\xfd\x7f\xfd\xff\x42\xff\x7f\xe0\xe9\xff\xeb\xff\xf7\xa2\xff\xaf\xff\x3f" "\xcc\xeb\xd7\xff\xd7\xff\xa7\xda\xa0\xf5\xff\x63\xee\xff\x64\x98\x49\x26" "\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\xa7\xc2\x4c\xe4\x7f\x00\x00\x00\xa8" "\x8d\x98\xfb\x7f\x3d\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff\x8e\x30" "\x93\x4c\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x3f\xe9" "\xff\xeb\xff\xf7\xa2\xff\xaf\xff\x3f\xcc\xeb\xd7\xff\xd7\xff\xa7\xda\xa0" "\xf5\xff\x63\xee\xff\x8d\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe" "\x3b\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x3f\x1d\x66\x22\xff\x03" "\x00\x00\x40\x6d\xc4\xdc\xff\x9b\x61\x26\x99\xe4\x7f\xfd\x7f\xfd\x7f\xfd" "\x7f\xfd\x7f\xfd\x7f\xfd\xff\x7e\xd2\xff\xd7\xff\xef\x45\xff\x5f\xff\x7f" "\x98\xd7\xaf\xff\xaf\xff\x4f\xb5\x41\xeb\xff\xc7\xdc\xff\x5b\x61\x26\x99" "\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\xbf\x1d\x66\x22\xff\x03\x00\x00\x40" "\x6d\xc4\xdc\xff\x3b\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\x77\x85" "\x99\x64\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xfb\x49" "\xff\x5f\xff\xbf\x17\xfd\x7f\xfd\xff\x61\x5e\xbf\xfe\xbf\xfe\x3f\xd5\x06" "\xad\xff\x1f\x73\xff\xef\x86\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31\xf7" "\xdf\x1d\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\xff\x99\x30\x13\xf9\x1f" "\x00\x00\x00\x6a\x23\xe6\xfe\xcf\x86\x99\x64\x92\xff\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\xf5\xff\xf5\xff\xfb\x49\xff\x5f\xff\xbf\x17\xfd\x7f\xfd\xff" "\x61\x5e\xbf\xfe\xbf\xfe\x3f\xd5\x06\xad\xff\x1f\x73\xff\x3d\x61\x26\x99" "\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\x9f\x0b\x33\x91\xff\x01\x00\x00\xa0" "\x36\x62\xee\xff\xbd\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\xdf\x0f" "\x33\xc9\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xf7\x93" "\xfe\xbf\xfe\x7f\x2f\xfa\xff\xfa\xff\xc3\xbc\x7e\xfd\x7f\xfd\x7f\xaa\x0d" "\x5a\xff\x3f\xe6\xfe\xcf\x87\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31\xf7" "\xff\x41\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\x1f\x86\x99\xc8\xff" "\x00\x00\x00\x50\x1b\x31\xf7\xdf\x1b\x66\x92\x49\xfe\xd7\xff\xd7\xff\xd7" "\xff\xd7\xff\xd7\xff\xd7\xff\xef\x27\xfd\x7f\xfd\xff\x5e\xf4\xff\xf5\xff" "\x87\x79\xfd\xfa\xff\xfa\xff\x54\x1b\xb4\xfe\x7f\xcc\xfd\x5f\x08\x33\xc9" "\x24\xff\x03\x00\x00\x40\x0e\x62\xee\xff\xa3\x30\x13\xf9\x1f\x00\x00\x00" "\x6a\x23\xe6\xfe\x3d\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\xf7\x85" "\x99\x64\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xfb\x49" "\xff\x5f\xff\xbf\x17\xfd\x7f\xfd\xff\x61\x5e\xbf\xfe\xbf\xfe\x3f\xd5\x06" "\xad\xff\x1f\x73\xff\xde\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe" "\x2f\x86\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\xef\x0b\x33\x91\xff\x01" "\x00\x00\xa0\x36\x62\xee\xdf\x1f\x66\x92\x49\xfe\xd7\xff\xd7\xff\xd7\xff" "\xd7\xff\xd7\xff\xd7\xff\xef\x27\xfd\x7f\xfd\xff\x5e\xf4\xff\xf5\xff\x87" "\x79\xfd\xfa\xff\xfa\xff\x54\x1b\xb4\xfe\x7f\xcc\xfd\x73\x61\x26\x99\xe4" "\x7f\x00\x00\x00\xc8\x41\xcc\xfd\x07\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8d" "\x98\xfb\x0f\x86\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\xdf\x1f\x66\x92" "\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x7f\x53\xfd\xff\xdb\x97\xaf\x47" "\xff\x5f\xff\xbf\x1b\xfd\x7f\xfd\xff\x5e\xf4\xff\xf5\xff\x87\x79\xfd\xfa" "\xff\xfa\xff\x54\x1b\xb4\xfe\x7f\xcc\xfd\x87\xc2\x4c\x32\xc9\xff\x00\x00" "\x00\x90\x83\x98\xfb\xbf\x14\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\xff" "\xe5\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\xc3\x61\x26\x99\xe4\x7f" "\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xbf\xff\x5f\xff\xbf\x9f\xf4\xff\xf5\xff" "\x7b\xd1\xff\xd7\xff\x1f\xe6\xf5\xeb\xff\xeb\xff\x53\x6d\xd0\xfa\xff\x31" "\xf7\x1f\x09\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee\x3f\x1a\x66\x22" "\xff\x03\x00\x00\x40\x6d\xc4\xdc\x7f\x2c\xcc\x44\xfe\x07\x00\x00\x80\xda" "\x88\xb9\xff\x78\x98\x49\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff" "\x5f\xff\xbf\x9f\xf4\xff\xf5\xff\x7b\xd1\xff\xd7\xff\x1f\xe6\xf5\xeb\xff" "\xeb\xff\x53\x6d\xd0\xfa\xff\x31\xf7\xff\x71\x98\x49\x26\xf9\x1f\x00\x00" "\x00\x72\x10\x73\xff\x89\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\xf9" "\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\x85\x30\x93\x4c\xf2\xbf\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x3f\xe9\xff\xeb\xff\xf7\x92" "\x5b\xff\xff\xa7\xcf\x36\xa7\xfe\xff\x85\x71\xb1\xd7\xbf\xf2\xfe\xff\x9e" "\x37\xba\xed\xaf\xff\x4f\x0e\x06\xad\xff\x1f\x73\xff\xc9\x30\x93\x4c\xf2" "\x3f\x00\x00\x00\xe4\x20\xe6\xfe\x07\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8d" "\x98\xfb\x1f\x0c\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee\x7f\x28\xcc\x24" "\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x4f\xfa\xff" "\xfa\xff\xbd\xe4\xd6\xff\xf7\xfb\xff\x2f\xac\x8b\xbd\x7e\xbf\xff\x5f\xff" "\x9f\x6a\x83\xd6\xff\x8f\xb9\xff\xe1\x30\x93\x4c\xf2\x3f\x00\x00\xff\xcf" "\xde\x5d\xb4\x88\x76\x26\x71\x1c\xee\x61\x60\x66\x60\xbe\xf1\xb8\xbb\xbb" "\xbb\xbb\xbb\xbb\xbb\xbb\xbb\x4f\x3c\x59\x84\xdc\x54\x15\x24\x81\x73\x42" "\x73\xcf\xbd\xef\xa9\x7a\x9e\x4d\x6d\x1a\xfa\xa5\x37\xcd\x7f\xf1\xe3\x00" "\x30\x41\xee\xfe\x87\xc5\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\xe1\x71" "\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\x7f\x44\xdc\x32\x64\xff\xeb\xff\xf5" "\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x7f\x24\xfd\xbf\xfe\x7f\x8b\xfe\x5f\xff" "\x7f\xe6\xf7\xeb\xff\xf5\xff\xec\x5b\xad\xff\xcf\xdd\xff\xc8\xb8\x65\xc8" "\xfe\x07\x00\x00\x80\x09\x72\xf7\x3f\x2a\x6e\xb1\xff\x01\x00\x00\xa0\x8d" "\xdc\xfd\x8f\x8e\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\x63\xe2\x96\x21" "\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x23\xe9\xff\xf5\xff" "\x5b\xf4\xff\xfa\xff\x33\xbf\x5f\xff\xaf\xff\x67\xdf\x6a\xfd\x7f\xee\xfe" "\xc7\xc6\x2d\x43\xf6\x3f\x00\x00\x00\x4c\x90\xbb\xff\x71\x71\x8b\xfd\x0f" "\x00\x00\x00\x6d\xe4\xee\x7f\x7c\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb" "\x9f\x10\xb7\x0c\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x1f" "\x49\xff\xaf\xff\xdf\xa2\xff\xd7\xff\x9f\xf9\xfd\xfa\x7f\xfd\x3f\xfb\x56" "\xeb\xff\x73\xf7\x3f\x31\x6e\x19\xb2\xff\x01\x00\x00\x60\x82\xdc\xfd\x4f" "\x8a\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\x93\xe3\x16\xfb\x1f\x00\x00" "\x00\xda\xc8\xdd\xff\x94\xb8\x65\xc8\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f" "\xfd\xbf\xfe\xff\x48\xfa\x7f\xfd\xff\x16\xfd\xbf\xfe\xff\xcc\xef\xd7\xff" "\xeb\xff\xd9\xb7\x5a\xff\x9f\xbb\xff\xa9\x71\xcb\x90\xfd\x0f\x00\x00\x00" "\x13\xe4\xee\x7f\x5a\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\x9f\x1e\xb7" "\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\x67\xc4\x2d\x43\xf6\xbf\xfe\x5f\xff" "\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x47\xd2\xff\xeb\xff\xb7\xe8\xff\xf5\xff" "\x67\x7e\xbf\xfe\x5f\xff\xcf\xbe\xd5\xfa\xff\xdc\xfd\xcf\x8c\x5b\x86\xec" "\x7f\x00\x00\x00\x98\x20\x77\xff\xb3\xe2\x16\xfb\x1f\x00\x00\x00\xda\xc8" "\xdd\xff\xec\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\x3f\x27\x6e\x19\xb2" "\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x3f\x92\xfe\x5f\xff\xbf" "\x45\xff\xaf\xff\x3f\xf3\xfb\xf5\xff\xfa\x7f\xf6\xad\xd6\xff\xe7\xee\x7f" "\x6e\xdc\x32\x64\xff\x03\x00\x00\xc0\x04\xb9\xfb\x9f\x17\xb7\xd8\xff\x00" "\x00\x00\xd0\x46\xee\xfe\xe7\xc7\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff" "\x05\x71\xcb\x90\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x91" "\xf4\xff\xfa\xff\x2d\xeb\xf4\xff\x0f\xbc\xd4\xfb\xf5\xff\xfa\x7f\xfd\xbf" "\xfe\x9f\x6d\xab\xf5\xff\xb9\xfb\x5f\x18\xb7\x0c\xd9\xff\x00\x00\x00\x30" "\x41\xee\xfe\x17\xc5\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\xc5\x71\x8b" "\xfd\x0f\x00\x00\x00\x6d\xe4\xee\x7f\x49\xdc\x32\x64\xff\xeb\xff\xf5\xff" "\xfa\x7f\xfd\xbf\xfe\x5f\xff\x7f\x24\xfd\xbf\xfe\x7f\xcb\x3a\xfd\xff\xe5" "\xde\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x6c\x5b\xad\xff\xcf\xdd\xff\xd2\xb8" "\x65\xc8\xfe\x07\x00\x00\x80\x09\x72\xf7\xbf\x2c\x6e\xb1\xff\x01\x00\x00" "\xa0\x8d\xdc\xfd\x2f\x8f\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\x2b\xe2" "\x96\x21\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x23\xe9\xff" "\xf5\xff\x5b\xf4\xff\xfa\xff\x33\xbf\x5f\xff\xaf\xff\x67\xdf\x6a\xfd\x7f" "\xee\xfe\x57\xc6\x2d\x43\xf6\x3f\x00\x00\x00\x4c\x90\xbb\xff\x55\x71\x8b" "\xfd\x0f\x00\x00\x00\x6d\xe4\xee\x7f\x75\xdc\x62\xff\x03\x00\x00\x40\x1b" "\xb9\xfb\x5f\x13\xb7\x0c\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7" "\xff\x1f\x49\xff\xaf\xff\xdf\xa2\xff\xd7\xff\x9f\xf9\xfd\xfa\x7f\xfd\x3f" "\xfb\x56\xeb\xff\x73\xf7\xbf\x36\x6e\x19\xb2\xff\x01\x00\x00\x60\x82\xdc" "\xfd\xaf\x8b\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\xeb\xe3\x16\xfb\x1f" "\x00\x00\x00\xda\xc8\xdd\xff\x86\xb8\x65\xc8\xfe\xd7\xff\xeb\xff\xf5\xff" "\xfa\x7f\xfd\xbf\xfe\xff\x48\xfa\x7f\xfd\xff\x16\xfd\xbf\xfe\xff\xcc\xef" "\xd7\xff\xeb\xff\xd9\xb7\x5a\xff\x9f\xbb\xff\x8d\x71\xcb\x90\xfd\x0f\x00" "\x00\x00\x13\xe4\xee\x7f\x53\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\xdf" "\x1c\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\xb7\xc4\x2d\x43\xf6\xbf\xfe" "\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x47\xd2\xff\xeb\xff\xb7\xe8\xff" "\xf5\xff\x67\x7e\xbf\xfe\x5f\xff\xcf\xbe\xd5\xfa\xff\xdc\xfd\x6f\x8d\x5b" "\x86\xec\x7f\x00\x00\x00\x98\x20\x77\xff\xdb\xe2\x16\xfb\x1f\x00\x00\x00" "\xda\xc8\xdd\xff\xf6\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\xbf\x23\x6e" "\x19\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x3f\x92\xfe\x5f" "\xff\xbf\x45\xff\xaf\xff\x3f\xf3\xfb\xf5\xff\xfa\x7f\xf6\xad\xd6\xff\xe7" "\xee\x7f\x67\xdc\x32\x64\xff\x03\x00\x00\xc0\x04\xb9\xfb\xdf\x15\xb7\xd8" "\xff\x00\x00\x00\xd0\x46\xee\xfe\x77\xc7\x2d\xf6\x3f\x00\x00\x00\xb4\x91" "\xbb\xff\x3d\x71\xcb\x90\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd" "\xff\x91\xf4\xff\xfa\xff\x2d\xfa\x7f\xfd\xff\x99\xdf\xaf\xff\xd7\xff\xb3" "\x6f\xb5\xfe\x3f\x77\xff\x7b\xe3\x96\x21\xfb\x1f\x00\x00\x00\x26\xc8\xdd" "\xff\xbe\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\xbf\x3f\x6e\xb1\xff\x01" "\x00\x00\xa0\x8d\xdc\xfd\x1f\x88\x5b\x86\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf" "\xff\xd7\xff\xeb\xff\x8f\xa4\xff\xd7\xff\x6f\xd1\xff\xeb\xff\xcf\xfc\x7e" "\xfd\xbf\xfe\x9f\x7d\xab\xf5\xff\xb9\xfb\x3f\x18\xb7\x0c\xd9\xff\x00\x00" "\x00\x30\x41\xee\xfe\x0f\xc5\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\xc3" "\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\xff\x48\xdc\x32\x64\xff\xeb\xff" "\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x7f\x24\xfd\xbf\xfe\x7f\x8b\xfe\x5f" "\xff\x7f\xe6\xf7\xeb\xff\xf5\xff\xec\x5b\xad\xff\xcf\xdd\xff\xd1\xb8\x65" "\xc8\xfe\x07\x00\x00\x80\x09\x72\xf7\x7f\x2c\x6e\xb1\xff\x01\x00\x00\xa0" "\x8d\xdc\xfd\x1f\x8f\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\x27\xe2\x96" "\x21\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x23\xe9\xff\xf5" "\xff\x5b\xf4\xff\xfa\xff\x33\xbf\x5f\xff\xaf\xff\x67\xdf\x6a\xfd\x7f\xee" "\xfe\x4f\xc6\x2d\x43\xf6\x3f\x00\x00\x00\x4c\x90\xbb\xff\x53\x71\x8b\xfd" "\x0f\x00\x00\x00\x6d\xe4\xee\xff\x74\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9" "\xfb\x3f\x13\xb7\x0c\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff" "\x1f\x49\xff\xaf\xff\xdf\xd2\xb6\xff\xbf\xeb\xf7\xe8\xff\xaf\xca\x1b\x57" "\x7e\xbf\xfe\x5f\xff\xcf\xbe\xd5\xfa\xff\xdc\xfd\x9f\x8d\x5b\x86\xec\x7f" "\x00\x00\x00\x98\x20\x77\xff\xe7\xe2\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd" "\xff\xf9\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\x7f\x21\x6e\x19\xb2\xff" "\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x3f\x92\xfe\x5f\xff\xbf\xa5" "\x6d\xff\xef\xfb\xff\xfa\x7f\xfd\xbf\xfe\x9f\x2b\x56\xeb\xff\x73\xf7\x7f" "\x31\x6e\x19\xb2\xff\x01\x00\x00\x60\x82\xdc\xfd\x5f\x8a\x5b\xec\x7f\x00" "\x00\x00\x68\x23\x77\xff\x97\xe3\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff" "\x95\xb8\x65\xc8\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xff\x48" "\xfa\x7f\xfd\xff\x16\xfd\xbf\xfe\xff\xcc\xef\xd7\xff\xeb\xff\xd9\xb7\x5a" "\xff\x9f\xbb\xff\xab\x71\xcb\x90\xfd\x0f\x00\x00\x00\x13\xe4\xee\xff\x5a" "\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\xbf\x1e\xb7\xd8\xff\x00\x00\x00" "\xd0\x46\xee\xfe\x6f\xc4\x2d\x43\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb" "\xff\xf5\xff\x47\xd2\xff\xeb\xff\xb7\xe8\xff\xf5\xff\x67\x7e\xbf\xfe\x5f" "\xff\xcf\xbe\xd5\xfa\xff\xdc\xfd\xdf\x8c\x5b\x86\xec\x7f\x00\x00\x00\x98" "\x20\x77\xff\xb7\xe2\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xed\xb8\xc5" "\xfe\x07\x00\x00\x80\x36\x72\xf7\x7f\x27\x6e\x19\xb2\xff\xf5\xff\xfa\xff" "\x6b\xd2\xff\x3f\xe8\xe2\xe2\x42\xff\xaf\xff\xd7\xff\xd7\x5f\x55\xff\x7f" "\xf5\xe8\xff\xf5\xff\x17\xfa\xff\x4b\xbb\xde\xfd\xfc\xd9\xdf\xaf\xff\xd7" "\xff\xb3\x6f\xb5\xfe\x3f\x77\xff\x77\xe3\x96\x21\xfb\x1f\x00\x00\x00\x26" "\xc8\xdd\xff\xbd\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\x7f\x3f\x6e\xb1" "\xff\x01\x00\x00\xa0\x8d\xdc\xfd\x3f\x88\x5b\x86\xec\x7f\xfd\xbf\xfe\xdf" "\xf7\xff\xf5\xff\xfa\x7f\xfd\xff\x91\xf4\xff\xfa\xff\x2d\xfa\x7f\xfd\xff" "\x99\xdf\xaf\xff\xd7\xff\xb3\x6f\xb5\xfe\x3f\x77\xff\x0f\xe3\x96\x21\xfb" "\x1f\x00\x00\x00\x26\xc8\xdd\xff\xa3\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72" "\xf7\xff\x38\x6e\xb1\xff\x01\x00\x00\xe0\xb4\xee\x5d\x75\xe5\xee\xff\x49" "\xdc\x32\x64\xff\xeb\xff\xaf\x75\xff\xff\x90\x7b\xfc\xfc\x09\xfa\xff\x07" "\x5f\xe8\xff\xf5\xff\x41\xff\xaf\xff\xbf\x0c\xfd\xff\xe5\xfa\xff\x87\xde" "\xcf\x77\xe9\xff\xef\xa6\xff\xbf\x9c\xeb\xdd\xcf\x9f\xfd\xfd\xfa\x7f\xfd" "\x3f\xfb\x56\xeb\xff\x73\xf7\xff\x34\x6e\x19\xb2\xff\x01\x00\x00\x60\x82" "\xdc\xfd\x3f\x8b\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\xcf\xe3\x16\xfb" "\x1f\x00\x00\x00\xda\xc8\xdd\xff\x8b\xb8\x65\xc8\xfe\xd7\xff\xfb\xfe\xbf" "\xef\xff\xeb\xff\xf5\xff\xfa\xff\x23\xe9\xff\x7d\xff\x7f\x8b\xfe\x5f\xff" "\x7f\xe6\xf7\xeb\xff\xf5\xff\xec\x5b\xad\xff\xcf\xdd\xff\xcb\xb8\x65\xc8" "\xfe\x07\x00\x00\x80\x09\x72\xf7\xff\x2a\x6e\xb1\xff\x01\x00\x00\xa0\x8d" "\xdc\xfd\xbf\x8e\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\x6f\xe2\x96\x21" "\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x23\xe9\xff\xf5\xff" "\x5b\xf4\xff\xfa\xff\x33\xbf\x5f\xff\xaf\xff\x67\xdf\x6a\xfd\x7f\xee\xfe" "\xdf\xc6\x2d\x43\xf6\x3f\x00\x00\x00\x4c\x90\xbb\xff\x77\x71\x8b\xfd\x0f" "\x00\x00\x00\x6d\xe4\xee\xff\x7d\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb" "\xff\x10\xb7\x0c\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x1f" "\x49\xff\xaf\xff\xdf\xa2\xff\xd7\xff\x9f\xf9\xfd\xfa\x7f\xfd\x3f\xfb\xae" "\xf4\xff\x0f\xb8\xef\x3f\xb8\xeb\xd5\xff\xe7\xee\xff\x63\xdc\x32\x64\xff" "\x03\x00\x00\xc0\x04\xb9\xfb\xff\x14\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee" "\xfe\x3f\xc7\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x2f\x71\xcb\x90\xfd" "\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x91\xf4\xff\xfa\xff\x2d" "\xfa\x7f\xfd\xff\x99\xdf\xaf\xff\xd7\xff\xb3\x6f\xb5\xef\xff\xe7\xee\xff" "\x6b\xdc\x32\x64\xff\x03\x00\x00\xc0\x04\xb9\xfb\xff\x16\xb7\xd8\xff\x00" "\x00\x00\xd0\x46\xee\xfe\xbf\xc7\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff" "\x1f\x71\xcb\x90\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x91" "\xf4\xff\xfa\xff\x2d\xfa\x7f\xfd\xff\x99\xdf\xaf\xff\xd7\xff\xb3\x6f\xb5" "\xfe\x3f\x77\xff\x3f\xe3\x96\x21\xfb\x1f\x00\x00\x00\x26\xc8\xdd\xff\xaf" "\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\xff\x3b\x6e\xb1\xff\x01\x00\x00" "\xa0\x8d\xdc\xfd\xff\x89\x5b\x86\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7" "\xff\xeb\xff\x8f\xa4\xff\xd7\xff\x6f\xd1\xff\xeb\xff\xcf\xfc\x7e\xfd\xbf" "\xfe\x9f\x7d\xab\xf5\xff\xb9\xfb\xff\x1b\xb7\x0c\xd9\xff\x00\x00\x00\x30" "\x41\xee\xfe\xff\xc5\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\xff\x71\x8b" "\xfd\x0f\x00\x00\x00\x6d\xe4\xee\xbf\x21\x6e\x19\xb2\xff\xf5\xff\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\xaf\xff\x3f\x92\xfe\x5f\xff\xbf\x45\xff\xaf\xff\x3f" "\xf3\xfb\xf5\xff\xfa\x7f\xf6\xad\xd6\xff\xe7\xee\xbf\x31\x6e\x19\xb2\xff" "\x01\x00\x00\x60\x82\xdc\xfd\x37\xc5\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb" "\xff\xe6\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\xdf\x12\xb7\x0c\xd9\xff" "\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x1f\x49\xff\xaf\xff\xdf\xa2" "\xff\xd7\xff\x9f\xf9\xfd\xfa\x7f\xfd\x3f\xfb\x56\xeb\xff\x73\xf7\xdf\x1a" "\xb7\x0c\xd9\xff\x00\x00\x00\x30\x41\xee\xfe\xdb\xe2\x16\xfb\x1f\x00\x00" "\x00\xda\xc8\xdd\x7f\x7b\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\xef\x88" "\x5b\x86\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x8f\xa4\xff" "\xd7\xff\x6f\xd1\xff\xeb\xff\xcf\xfc\x7e\xfd\xbf\xfe\x9f\x7d\xab\xf5\xff" "\xb9\xfb\xef\x0c\x00\x00\xff\xff\x4f\x85\x3c\xf3", 23952); syz_mount_image(0x20005d00, 0x20005d40, 0xc003, 0x20000800, 0x81, 0x5d90, 0x20011840); memcpy((void*)0x200000c0, "./file0\000", 8); memcpy((void*)0x20000100, "./file0\000", 8); syscall(__NR_mount, 0x200000c0ul, 0x20000100ul, 0ul, 0x61082ul, 0ul); memcpy((void*)0x20000080, "./file0\000", 8); inject_fault(9); syscall(__NR_mount, 0ul, 0x20000080ul, 0ul, 0x800020ul, 0ul); close_fds(); } int main(void) { syscall(__NR_mmap, 0x1ffff000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 7ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x21000000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); setup_sysctl(); setup_binfmt_misc(); setup_fault(); setup_802154(); do_sandbox_none(); return 0; }