// https://syzkaller.appspot.com/bug?id=ac6a865d112f0717fdc0b981b4ded83192ece8aa // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif #ifndef __NR_openat #define __NR_openat 56 #endif static unsigned long long procid; static __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } struct nlmsg { char* pos; int nesting; struct nlattr* nested[8]; char buf[4096]; }; static void netlink_init(struct nlmsg* nlmsg, int typ, int flags, const void* data, int size) { memset(nlmsg, 0, sizeof(*nlmsg)); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_type = typ; hdr->nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK | flags; memcpy(hdr + 1, data, size); nlmsg->pos = (char*)(hdr + 1) + NLMSG_ALIGN(size); } static void netlink_attr(struct nlmsg* nlmsg, int typ, const void* data, int size) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_len = sizeof(*attr) + size; attr->nla_type = typ; if (size > 0) memcpy(attr + 1, data, size); nlmsg->pos += NLMSG_ALIGN(attr->nla_len); } static int netlink_send_ext(struct nlmsg* nlmsg, int sock, uint16_t reply_type, int* reply_len, bool dofail) { if (nlmsg->pos > nlmsg->buf + sizeof(nlmsg->buf) || nlmsg->nesting) exit(1); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_len = nlmsg->pos - nlmsg->buf; struct sockaddr_nl addr; memset(&addr, 0, sizeof(addr)); addr.nl_family = AF_NETLINK; ssize_t n = sendto(sock, nlmsg->buf, hdr->nlmsg_len, 0, (struct sockaddr*)&addr, sizeof(addr)); if (n != (ssize_t)hdr->nlmsg_len) { if (dofail) exit(1); return -1; } n = recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); if (reply_len) *reply_len = 0; if (n < 0) { if (dofail) exit(1); return -1; } if (n < (ssize_t)sizeof(struct nlmsghdr)) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type == NLMSG_DONE) return 0; if (reply_len && hdr->nlmsg_type == reply_type) { *reply_len = n; return 0; } if (n < (ssize_t)(sizeof(struct nlmsghdr) + sizeof(struct nlmsgerr))) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type != NLMSG_ERROR) { errno = EINVAL; if (dofail) exit(1); return -1; } errno = -((struct nlmsgerr*)(hdr + 1))->error; return -errno; } static int netlink_send(struct nlmsg* nlmsg, int sock) { return netlink_send_ext(nlmsg, sock, 0, NULL, true); } static int netlink_query_family_id(struct nlmsg* nlmsg, int sock, const char* family_name, bool dofail) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = CTRL_CMD_GETFAMILY; netlink_init(nlmsg, GENL_ID_CTRL, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, CTRL_ATTR_FAMILY_NAME, family_name, strnlen(family_name, GENL_NAMSIZ - 1) + 1); int n = 0; int err = netlink_send_ext(nlmsg, sock, GENL_ID_CTRL, &n, dofail); if (err < 0) { return -1; } uint16_t id = 0; struct nlattr* attr = (struct nlattr*)(nlmsg->buf + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg->buf + n; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == CTRL_ATTR_FAMILY_ID) { id = *(uint16_t*)(attr + 1); break; } } if (!id) { errno = EINVAL; return -1; } recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); return id; } static 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, bool dofail) { 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_ext(nlmsg, sock, 0, NULL, dofail); 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, bool dofail) { 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_ext(nlmsg, sock, 0, NULL, dofail); if (err < 0) { } return err; } static int get_ifla_operstate(struct nlmsg* nlmsg, int ifindex, bool dofail) { 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, dofail); 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, bool dofail) { int ifindex = if_nametoindex(interface); while (true) { usleep(1000); int ret = get_ifla_operstate(nlmsg, ifindex, dofail); 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, bool dofail) { int ifindex = if_nametoindex(interface); if (ifindex == 0) { return -1; } int ret = nl80211_set_interface(nlmsg, sock, nl80211_family_id, ifindex, NL80211_IFTYPE_ADHOC, dofail); 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, dofail); 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) exit(1); 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) exit(1); 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); if (hwsim_family_id < 0 || nl80211_family_id < 0) exit(1); 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, true) < 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, true); if (ret < 0) exit(1); } close(sock); } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } static void setup_gadgetfs(); static void setup_binderfs(); static void setup_fusectl(); static void sandbox_common_mount_tmpfs(void) { write_file("/proc/sys/fs/mount-max", "100000"); if (mkdir("./syz-tmp", 0777)) exit(1); if (mount("", "./syz-tmp", "tmpfs", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot", 0777)) exit(1); if (mkdir("./syz-tmp/newroot/dev", 0700)) exit(1); unsigned bind_mount_flags = MS_BIND | MS_REC | MS_PRIVATE; if (mount("/dev", "./syz-tmp/newroot/dev", NULL, bind_mount_flags, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/proc", 0700)) exit(1); if (mount("syz-proc", "./syz-tmp/newroot/proc", "proc", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/selinux", 0700)) exit(1); const char* selinux_path = "./syz-tmp/newroot/selinux"; if (mount("/selinux", selinux_path, NULL, bind_mount_flags, NULL)) { if (errno != ENOENT) exit(1); if (mount("/sys/fs/selinux", selinux_path, NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); } if (mkdir("./syz-tmp/newroot/sys", 0700)) exit(1); if (mount("/sys", "./syz-tmp/newroot/sys", 0, bind_mount_flags, NULL)) exit(1); if (mount("/sys/kernel/debug", "./syz-tmp/newroot/sys/kernel/debug", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/sys/fs/smackfs", "./syz-tmp/newroot/sys/fs/smackfs", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/proc/sys/fs/binfmt_misc", "./syz-tmp/newroot/proc/sys/fs/binfmt_misc", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mkdir("./syz-tmp/newroot/syz-inputs", 0700)) exit(1); if (mount("/syz-inputs", "./syz-tmp/newroot/syz-inputs", NULL, bind_mount_flags | MS_RDONLY, NULL) && errno != ENOENT) exit(1); if (mkdir("./syz-tmp/pivot", 0777)) exit(1); if (syscall(SYS_pivot_root, "./syz-tmp", "./syz-tmp/pivot")) { if (chdir("./syz-tmp")) exit(1); } else { if (chdir("/")) exit(1); if (umount2("./pivot", MNT_DETACH)) exit(1); } if (chroot("./newroot")) exit(1); if (chdir("/")) exit(1); setup_gadgetfs(); setup_binderfs(); setup_fusectl(); } static void setup_gadgetfs() { if (mkdir("/dev/gadgetfs", 0777)) { } if (mount("gadgetfs", "/dev/gadgetfs", "gadgetfs", 0, NULL)) { } } static void setup_fusectl() { if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) { } } static void setup_binderfs() { if (mkdir("/dev/binderfs", 0777)) { } if (mount("binder", "/dev/binderfs", "binder", 0, NULL)) { } if (symlink("/dev/binderfs", "./binderfs")) { } } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); if (getppid() == 1) exit(1); struct rlimit rlim; rlim.rlim_cur = rlim.rlim_max = (200 << 20); setrlimit(RLIMIT_AS, &rlim); rlim.rlim_cur = rlim.rlim_max = 32 << 20; setrlimit(RLIMIT_MEMLOCK, &rlim); rlim.rlim_cur = rlim.rlim_max = 136 << 20; setrlimit(RLIMIT_FSIZE, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_STACK, &rlim); rlim.rlim_cur = rlim.rlim_max = 128 << 20; setrlimit(RLIMIT_CORE, &rlim); rlim.rlim_cur = rlim.rlim_max = 256; setrlimit(RLIMIT_NOFILE, &rlim); if (unshare(CLONE_NEWNS)) { } if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL)) { } if (unshare(CLONE_NEWIPC)) { } if (unshare(0x02000000)) { } if (unshare(CLONE_NEWUTS)) { } if (unshare(CLONE_SYSVSEM)) { } typedef struct { const char* name; const char* value; } sysctl_t; static const sysctl_t sysctls[] = { {"/proc/sys/kernel/shmmax", "16777216"}, {"/proc/sys/kernel/shmall", "536870912"}, {"/proc/sys/kernel/shmmni", "1024"}, {"/proc/sys/kernel/msgmax", "8192"}, {"/proc/sys/kernel/msgmni", "1024"}, {"/proc/sys/kernel/msgmnb", "1024"}, {"/proc/sys/kernel/sem", "1024 1048576 500 1024"}, }; unsigned i; for (i = 0; i < sizeof(sysctls) / sizeof(sysctls[0]); i++) write_file(sysctls[i].name, sysctls[i].value); } static int wait_for_loop(int pid) { if (pid < 0) exit(1); int status = 0; while (waitpid(-1, &status, __WALL) != pid) { } return WEXITSTATUS(status); } static void drop_caps(void) { struct __user_cap_header_struct cap_hdr = {}; struct __user_cap_data_struct cap_data[2] = {}; cap_hdr.version = _LINUX_CAPABILITY_VERSION_3; cap_hdr.pid = getpid(); if (syscall(SYS_capget, &cap_hdr, &cap_data)) exit(1); const int drop = (1 << CAP_SYS_PTRACE) | (1 << CAP_SYS_NICE); cap_data[0].effective &= ~drop; cap_data[0].permitted &= ~drop; cap_data[0].inheritable &= ~drop; if (syscall(SYS_capset, &cap_hdr, &cap_data)) exit(1); } static int do_sandbox_none(void) { if (unshare(CLONE_NEWPID)) { } int pid = fork(); if (pid != 0) return wait_for_loop(pid); sandbox_common(); drop_caps(); if (unshare(CLONE_NEWNET)) { } write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535"); initialize_wifi_devices(); sandbox_common_mount_tmpfs(); loop(); exit(1); } void loop(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x0 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // } // } // chdir: int8 = 0xfd (1 bytes) // size: len = 0x60de (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x60de) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x20000100, "jfs\000", 4)); NONFAILING(memcpy((void*)0x200000c0, "./file0\000", 8)); NONFAILING(memcpy( (void*)0x20000540, "\x78\x9c\xec\xdd\xcb\x8e\x1c\x57\x19\x07\xf0\xaf\x2f\xd3\x73\x09\xb1\xad" "\x08\x59\xc6\x62\xe1\x38\x10\x12\x42\x7c\xb7\x21\xdc\xe2\xb0\x60\x01\x48" "\x20\x21\xaf\xb1\x35\x99\x44\x06\x07\x90\x6d\x10\x89\x2c\x3c\xd1\x2c\x10" "\x0b\x2e\x8f\x00\x9b\x6c\x58\xe4\x29\xd8\x85\x1d\x6b\xc4\x03\x60\xc9\x66" "\x15\x09\x42\xa1\x9a\x39\xc7\xae\xee\xe9\x99\x1e\xdb\x33\x5d\x3d\x73\x7e" "\x3f\xa9\x5d\xf5\xf5\xa9\xea\x3e\xe5\xff\xd4\xf4\xa5\xaa\xe6\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\xdf\xf9\xf6\x0f\xcf\x76" "\x22\xe2\xea\x2f\xd3\x1d\x47\x22\x3e\x15\xbd\x88\x6e\xc4\x62\x5d\x9f\x88" "\x7a\xe6\x72\x5e\xbe\x1f\x11\xc7\xd6\x97\x8a\x38\x1a\x11\xbd\xf9\x88\x7a" "\xfd\xf5\x7f\x0e\x47\x5c\x88\x88\x8f\x0e\x45\xdc\x7f\x70\x67\xb9\xbe\xfb" "\xdc\x0e\xfb\x71\xf1\xcc\xed\x9b\x9f\x7c\xf7\x5b\xff\xf8\xcd\x1f\xd6\x8e" "\xfd\xf8\xcd\x1f\x7d\x30\xda\xfe\x83\x4f\x9f\xff\xf0\xb7\x77\x23\x8e\x7c" "\xff\xb5\x0f\x3f\xb9\xbb\x2b\x9b\x0e\x00\x00\x00\xc5\xa8\xaa\xaa\xea\xa4" "\x8f\xf9\xc7\xd3\xe7\xfb\x6e\xdb\x9d\x02\x00\xa6\x22\xbf\xfe\x57\x49\xbe" "\x5f\xad\x56\xab\xd5\xbb\x5a\xff\xbe\x3b\x5b\xfd\x51\x17\x5a\x37\x55\xe3" "\xdd\x6d\x16\x11\xb1\xda\x5c\xa7\x7e\xcf\xe0\x70\x3c\x00\xec\x33\xab\xf1" "\x71\xdb\x5d\xa0\x45\xf2\x2f\x5a\x3f\x22\x9e\x69\xbb\x13\xc0\x4c\xeb\xb4" "\xdd\x01\xf6\xc4\xfd\x07\x77\x96\x3b\x29\xdf\x4e\xf3\xf5\xe0\xc4\x46\x7b" "\xfe\x9e\x72\x28\xff\xd5\xce\xc3\xeb\x3b\xb6\x9a\x4e\x32\x7a\x8e\xc9\xb4" "\x7e\xbe\xd6\xa2\x17\xcf\x6d\xd1\x9f\xc5\x29\xf5\x61\x96\xe4\xfc\xbb\xa3" "\xf9\x5f\xdd\x68\x1f\xa4\xe5\xf6\x3a\xff\x69\xd9\x2a\xff\x41\xa4\x8b\x9a" "\x0a\x93\xf3\xef\x8d\xe6\x3f\x62\x28\xff\x3f\x46\xc4\xbe\xcd\xbf\x3b\x36" "\xff\x52\xe5\xfc\xfb\x8f\x93\xff\x6a\x6f\x1f\xef\xff\xf2\x07\x00\x00\x00" "\x00\xe0\xe0\xcb\xdf\xff\x1f\x69\xf9\xf8\xef\xfc\xd3\x6f\xca\x8e\x6c\x77" "\xfc\xf7\xc4\x94\xfa\x00\x00\x00\x00\x00\x00\x00\x00\xbb\xed\x09\xc7\xff" "\x5b\x3f\x5e\x7e\xb4\xf9\x40\xc6\xff\x03\x00\x00\x80\x99\x55\x7f\x56\xaf" "\xfd\xe9\xd0\xa3\xfb\x3a\x11\x7f\x3f\x3c\x66\xd9\xfa\x23\xfe\x95\x4e\xc4" "\xb3\x23\xcb\x03\x85\x49\x17\xcb\x2c\xb5\xdd\x0f\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x28\x49\x7f\xe3\x1c\xde\x2b\x9d\x88\xb9\x88\x78\x76\x69" "\xa9\xaa\xaa\xfa\xd6\x34\x5a\x3f\xae\xa7\x5d\x7f\xbf\x2b\x7d\xfb\xa1\x64" "\x6d\xff\x92\x07\x00\x80\x0d\x1f\x1d\x4a\xd7\xf2\xdf\x5b\xd8\xb8\xa3\x13" "\x51\xcf\x5d\xd9\xf8\x6a\xe0\xaf\xab\x4b\x4b\x4b\x55\xb5\xb0\xb8\x54\x2d" "\x55\x8b\xf3\xf9\xfd\xec\x60\x7e\xa1\x5a\x6c\x7c\xae\xcd\xd3\xfa\xbe\xf9" "\xc1\x0e\xde\x10\xf7\x07\x55\xfd\x60\x0b\x8d\xf5\x9a\x26\x7d\x5e\x9e\xd4" "\x3e\xfa\x78\xf5\x73\x0d\xaa\xde\x0e\x3a\x36\x1d\x6d\xa7\x0e\x40\xe9\x36" "\x5e\x8d\xee\x7b\x45\x3a\x60\xaa\xea\x70\xb4\xfd\x2e\x87\xfd\xc1\xfe\x7f" "\xf0\xd8\xff\xd9\x89\xb6\x7f\x4e\x01\x00\x00\x80\xbd\x57\x55\x55\xd5\x49" "\x7f\xce\xfb\x78\x1a\xdf\xaf\xdb\x76\xa7\x00\x80\x69\x58\xc8\xaf\xff\xa3" "\xc7\x05\xd4\x6a\xb5\x5a\xad\x56\x1f\xbc\xba\xa9\x1a\xef\x6e\xb3\x88\x88" "\xd5\xe6\x3a\xf5\x7b\x06\xc3\xf1\x03\xc0\x3e\xb3\x1a\x1f\xb7\xdd\x05\x5a" "\x24\xff\xa2\xf5\x23\xe2\x58\xdb\x9d\x00\x66\x5a\xa7\xed\x0e\xb0\x27\xee" "\x3f\xb8\xb3\xdc\x49\xf9\x76\x9a\xaf\x07\x69\x7c\xf7\x7c\x2e\xc8\x50\xfe" "\xab\x9d\xf5\xf5\xf2\xfa\xe3\xa6\x93\x8c\x9e\x63\x32\xad\x9f\xaf\xb5\xe8" "\xc5\x73\x5b\xf4\xe7\xe8\x94\xfa\x30\x4b\x72\xfe\xdd\xd1\xfc\xaf\x6e\xb4" "\x0f\xd2\x72\x7b\x9d\xff\xb4\x6c\x95\x7f\xbd\x9d\x47\x5a\xe8\x4f\xdb\x72" "\xfe\xbd\xd1\xfc\x47\x1c\x9c\xfc\xbb\x63\xf3\x2f\x55\xce\xbf\xff\x58\xf9" "\xf7\xe4\x0f\x00\x00\x00\x00\x00\x33\x2c\x7f\xff\x7f\xc4\xf1\xdf\xbc\xc9" "\x00\x00\x00\x00\x00\x00\x00\xb0\xef\xdc\x7f\x70\x67\x39\x5f\xf7\x9a\x8f" "\xff\x7f\x76\xcc\x72\x9d\xe6\x9c\xeb\x3f\x0f\x8c\x9c\x7f\x67\xc7\xf9\xbb" "\xfe\xf7\x20\xc9\xf9\x77\x47\xf3\x1f\x39\x21\xa7\xd7\x98\xbf\xf7\xc6\xa3" "\xfc\xff\xfd\xe0\xce\xf2\x07\xb7\xff\xf5\x99\x3c\x9d\xf9\xfc\xe7\x7a\x83" "\xfa\xb9\xe7\x3a\xdd\x5e\x3f\x9d\xf3\x53\xcd\xbd\x15\xd7\xe3\x46\xac\xc4" "\x99\x4d\xcb\xf7\x87\xda\xcf\x6e\x6a\x9f\x1b\x6a\x3f\x37\xa1\xfd\xfc\xa6" "\xf6\x41\xdd\xbe\x98\xdb\x4f\xc5\x72\xfc\x2c\x6e\xc4\x9b\x0f\xdb\xe7\x27" "\x9c\x18\xb5\x30\xa1\xbd\x9a\xd0\x9e\xf3\xef\xd9\xff\x8b\x94\xf3\xef\x37" "\x6e\x75\xfe\x4b\xa9\xbd\x33\x32\xad\xdd\x7b\xbf\xbb\x69\xbf\x6f\x4e\xc7" "\x3d\xcf\xe5\xbf\xfc\xf7\xc5\xcd\x7b\xd7\x6e\x1b\x4c\x5c\x62\x2d\x7a\x0f" "\xb7\xad\xa9\xde\xbe\x93\x7b\xd2\xa7\xed\xad\xff\x9f\x3c\x33\x88\x5f\xdc" "\x5a\xb9\x79\xea\x57\xd7\x6e\xdf\xbe\x79\x36\xd2\x64\xe8\xde\x73\x91\x26" "\xbb\x2c\xe7\x3f\x97\x6e\x39\xff\x97\x5e\xd8\x68\xcf\xbf\xf7\x9b\xfb\xeb" "\xbd\xf7\x07\x8f\x9d\xff\xac\x58\x8b\xfe\x96\xf9\xbf\xd0\x98\xaf\xb7\xf7" "\xe5\x29\xf7\xad\x0d\x39\xff\x41\xba\xe5\xfc\xf3\x2b\xd0\xf8\xfd\x7f\x76" "\xf3\xef\x4c\x38\x93\x78\xbb\xfd\xff\x95\x3d\xeb\x15\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x3c\x99\xaa\xaa\xd6\x2f\x11\xbd\x1c\x11\x97" "\xd2\xf5\x3f\x6d\x5d\x9b\x09\x00\x4c\xd5\xef\xbe\x97\x66\xaa\x24\xd4\x6a" "\xb5\x5a\xad\x56\xef\x56\xdd\x9f\xb1\xfe\x0c\xa9\xc6\x7b\xbd\x59\xc4\xc2" "\xf0\x3a\x97\x22\xe2\xd7\xe3\x1e\x0c\x00\x98\x65\xff\x8b\x88\x7f\xb6\xdd" "\x09\x5a\x23\xff\x82\xe5\xbf\xf7\x57\x4f\x3f\xd7\x76\x67\x80\xa9\xba\xf5" "\xee\x7b\x3f\xb9\x76\xe3\xc6\xca\xcd\x5b\x6d\xf7\x04\x00\x00\x00\x00\x00" "\x00\x00\x78\x52\x79\xfc\xcf\x13\x8d\xf1\x9f\xd7\xcf\x03\x1a\x19\x46\x73" "\x68\xfc\xd7\x37\xe2\xc4\xac\x8e\xff\x39\xc9\x5a\x77\xd0\x5b\x1f\xeb\x3c" "\x6d\xd0\xf3\xb1\xfd\xf8\xdf\x27\x63\xfb\xf1\xbf\xfb\x13\x9e\x6f\x6e\x42" "\xfb\xa4\x11\x8b\xe7\x27\xb4\x2f\x4c\x68\x1f\x7b\xa1\x47\x43\xce\xff\xf9" "\x94\x71\xce\xff\x78\xda\xb0\xfd\x36\xfe\xeb\x24\xdb\x8d\xff\xfa\x52\x0b" "\xfd\x69\x5b\xce\xff\x64\x1a\xeb\x39\xe7\xff\x85\x91\xe5\x9a\xf9\x57\x7f" "\xde\xcf\xf9\x77\x87\xf2\x3f\x7d\xfb\x9d\x9f\x9f\xbe\xf5\xee\x7b\xaf\x5e" "\x7f\xe7\xda\xdb\x2b\x6f\xaf\xfc\xf4\xec\x99\x4b\x17\xce\x5f\xbc\x70\xfe" "\xe2\xc5\xd3\x6f\x5d\xbf\xb1\x72\x66\xe3\xdf\x16\x7b\xbc\xb7\x72\xfe\x79" "\xec\x6b\xe7\x81\x96\x25\xe7\x9f\x33\x97\x7f\x59\x72\xfe\x9f\x4f\xb5\xfc" "\xcb\x92\xf3\x7f\x31\xd5\xf2\x2f\x4b\xce\x3f\xbf\xdf\x93\x7f\x59\x72\xfe" "\xf9\xb3\x8f\xfc\xcb\x92\xf3\x7f\x39\xd5\xf2\x2f\x4b\xce\xff\x8b\xa9\x96" "\x7f\x59\x72\xfe\xaf\xa4\x5a\xfe\x65\xc9\xf9\x7f\x29\xd5\xf2\x2f\x4b\xce" "\xff\xd5\x54\xcb\xbf\x2c\x39\xff\x53\xa9\x96\x7f\x59\x72\xfe\xa7\x53\x2d" "\xff\xb2\xe4\xfc\xf3\x11\x2e\xf9\x97\x25\xe7\x9f\xcf\x6c\x90\x7f\x59\x72" "\xfe\xe7\x52\x2d\xff\xb2\xe4\xfc\xcf\xa7\x5a\xfe\x65\xc9\xf9\x5f\x48\xb5" "\xfc\xcb\x92\xf3\xbf\x98\x6a\xf9\x97\x25\xe7\x7f\x29\xd5\xf2\x2f\x4b\xce" "\xff\xcb\xa9\x96\x7f\x59\x72\xfe\x5f\x49\xb5\xfc\xcb\x92\xf3\x7f\x2d\xd5" "\xf2\x2f\x4b\xce\xff\xab\xa9\x96\x7f\x59\x72\xfe\x5f\x4b\xb5\xfc\xcb\x92" "\xf3\xff\x7a\xaa\xe5\x5f\x96\x9c\xff\x37\x52\x2d\xff\xb2\xe4\xfc\xbf\x99" "\x6a\xf9\x97\x25\xe7\xff\x7a\xaa\xe5\x5f\x96\x47\x7f\xff\xdf\xcc\x94\x67" "\xfe\xf3\xb7\x88\x19\xe8\xc6\x5e\xcc\x54\x55\x55\xcd\x40\x37\xcc\x3c\xc5" "\x4c\xdb\xbf\x99\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x51\xd3\x38" "\x9d\xb8\xed\x6d\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\xb3\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\x6f\x8c\x1c\x67" "\x7d\x07\xf0\xb9\x7f\xf6\xd9\x09\xc4\x25\x21\x04\x30\xe4\xec\x38\xc1\x90" "\x8b\xef\xce\xff\x12\x13\x0c\x0e\x90\x34\x0d\x2d\x4d\x03\xa1\xd0\x86\x3a" "\xc6\x3e\x3b\x06\xff\xab\xcf\x86\x24\x8a\x9a\x4b\x93\xb6\x41\x44\x6a\xa4" "\xf6\x45\xfa\xa2\x14\x10\x45\x48\x6d\x95\x08\x21\x95\x4a\x69\x14\xa9\x48" "\xed\xbb\xe6\x15\x28\xaa\x84\x5a\x29\x2f\x2c\x35\xa9\x4c\x04\xad\x68\x49" "\xae\x9a\x9d\xe7\x79\x6e\x77\x6f\x6f\xf7\x6c\xdf\xd9\xb3\x33\x9f\x4f\x14" "\xff\x7c\xb7\xb3\xbb\xcf\xcd\xce\xee\xdd\xf7\xac\xef\x0e\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x34\xdb\xf0\xb1\xe9\x3f\x19\xc8\xb2\x2c\xff\xbf\xf1\xc7" "\xba\x2c\xbb\x3c\xff\xfb\x9a\x6c\x4f\xfe\xe1\xec\xce\x4b\xbd\x42\x00\x00" "\x00\xe0\x42\xbd\xd1\xf8\xf3\x6f\xaf\x48\x9f\xd8\xb3\x84\x2b\x35\x6d\xf3" "\xcf\xef\xfd\xd7\xef\xcf\xcd\xcd\xcd\x65\x5f\x78\xfd\xcc\x9b\x7f\x36\x37" "\x97\x2e\x18\xcb\xb2\xa1\xd5\x59\xd6\xb8\x2c\xfa\x97\x5f\xfc\x7c\xae\x79" "\x9b\xe0\xf1\x6c\x74\x60\xb0\xe9\xe3\xc1\x1e\x77\x3f\xd4\xe3\xf2\xe1\x1e" "\x97\x8f\xf4\xb8\x7c\x55\x8f\xcb\x57\xf7\xb8\x7c\xb4\xc7\xe5\x0b\x76\xc0" "\x02\x6b\x8a\xdf\xc7\x34\x6e\x6c\x53\xe3\xaf\xeb\x8a\x5d\x9a\x5d\x95\x8d" "\x34\x2e\xdb\xd4\xe1\x5a\x8f\x0f\xac\x1e\x1c\x8c\xbf\xcb\x69\x18\x68\x5c" "\x67\x6e\xe4\x60\x76\x38\x3b\x92\x4d\x67\x93\x0b\xae\x33\xd0\xf8\x2f\xcb" "\x9e\xdf\x90\xdf\xd7\x9d\x59\xbc\xaf\xc1\xa6\xfb\x5a\x9f\x65\xd9\xd9\x9f" "\x3e\xb2\x3f\xae\x61\x20\xec\xe3\x4d\x59\xcb\x9d\x35\x34\x3f\x76\xaf\xdd" "\x96\x8d\xbd\xfe\xd3\x47\xf6\x7f\xe7\xd4\xab\xef\xec\x34\x7b\xee\x86\x05" "\x2b\xcd\xb2\xcd\x1b\xf3\x75\x3e\x91\x65\xf3\xbf\xae\xca\x06\xb2\xd5\x69" "\x9f\xc4\x75\x0e\x36\xad\x73\x7d\x87\x75\x0e\xb5\xac\x73\xa0\x71\xbd\xfc" "\xef\xed\xeb\x3c\xbb\xc4\x75\xc6\xaf\x7b\x34\xac\xf3\xa5\x2e\xeb\x5c\x1f" "\x3e\xf7\xe0\x75\x59\x96\xcd\x66\x8b\x6e\xd3\xee\xf1\x6c\x30\x5b\xdb\x76" "\xaf\x69\x7f\x8f\x16\x47\x44\x7e\x1b\xf9\x43\xf9\xb6\x6c\xf8\x9c\x8e\x93" "\x0d\x4b\x38\x4e\xf2\xeb\xbc\x72\x5d\xeb\x71\xd2\x7e\x4c\xc6\xfd\xbf\x21" "\xec\x93\xe1\x45\xd6\xd0\xfc\x70\xbc\xf6\xd8\xaa\x05\xfb\xfd\x7c\x8f\x93" "\xfc\xab\x2e\xc3\xb1\x9a\xdf\xf6\xdd\xf9\x9d\x8e\x8e\x36\xff\x6a\xb5\xe5" "\x58\xcd\xb7\x79\xe4\xfa\xc5\x8f\x81\x8e\x8f\x5d\x87\x63\x20\x1d\xcb\x4d" "\xc7\xc0\xc6\x5e\xc7\xc0\xe0\xaa\xa1\xc6\x31\x30\x38\xbf\xe6\x8d\x2d\xc7" "\xc0\xd4\x82\xeb\x0c\x66\x03\x8d\xfb\x3a\x73\x7d\xf7\x63\x60\xe2\xd4\xd1" "\x13\x13\x33\x0f\x3d\x7c\xd3\xe1\xa3\xfb\x0e\x4d\x1f\x9a\x3e\x36\x35\xb9" "\x73\xfb\xb6\x1d\xdb\xb7\xed\xd8\x31\x71\xf0\xf0\x91\xe9\xc9\xe2\xcf\x73" "\xdb\xa5\x7d\x64\x6d\x36\x98\x8e\xc1\x8d\xe1\xb5\x26\x1e\x83\xef\x6b\xdb" "\xb6\xf9\x90\x9c\xfb\xe6\xf2\x3d\x0f\x46\x4b\xf2\x3c\xc8\xbf\xf6\x4f\xdf" "\x90\x2f\xe8\xf2\xc1\x6c\x91\x63\x3c\xdf\xe6\x89\xcd\x17\xfe\x3c\x48\xdf" "\xf7\x9b\x9e\x07\xc3\x4d\xcf\x83\x8e\xaf\xa9\x1d\x9e\x07\xc3\x4b\x78\x1e" "\xe4\xdb\x9c\xdd\xbc\xb4\xef\x99\xc3\x4d\xff\x77\x5a\xc3\x4a\xbd\x16\xae" "\x6b\x3a\x06\x2e\xe5\xf7\xc3\xfc\x3e\xef\x7b\xff\xe2\xaf\x85\xeb\xc3\xba" "\x9e\xfc\xc0\xb9\x7e\x3f\x1c\x5a\x70\x0c\xc4\x2f\x6b\x20\x3c\xf7\xf2\xcf" "\xa4\x9f\xf7\x46\x6f\x09\xfb\x65\xe1\x71\xf1\xae\xfc\x82\xcb\x56\x65\xa7" "\x67\xa6\x4f\x6e\x79\x70\xdf\xa9\x53\x27\xa7\xb2\x30\x2e\x8a\x2b\x9b\x1e" "\xab\xf6\xe3\x65\x6d\xd3\xd7\x94\x2d\x38\x5e\x06\xcf\xf9\x78\xd9\xf3\x37" "\xbf\xbc\xa1\xd3\xcf\xd0\xeb\xc2\xbe\x1a\xbd\xb1\xfb\x63\x95\x6f\xb3\x7d" "\xbc\xfb\x63\xd5\x78\x75\x6f\xdd\x9f\xab\xb2\x62\x7f\xb6\x7c\x76\x6b\x16" "\xc6\x32\xbb\xd8\xfb\xb3\xd3\x77\xb3\x7c\x7f\xa6\x2c\xd1\x65\x7f\xe6\xdb" "\x3c\x71\xd3\x85\xff\x2c\x98\x72\x49\xd3\xeb\xdf\x48\xaf\xd7\xbf\xa1\x91" "\xe1\xe2\xf5\x6f\x28\xed\x8d\x91\x96\xd7\xbf\x85\x0f\xcd\x50\x63\x65\x59" "\x76\xf6\xa6\xa5\xbd\xfe\x8d\x84\xff\x2f\xf6\xeb\xdf\x55\x25\x79\xfd\xcb" "\xf7\xd5\x7d\x5b\xba\x1f\x03\xf9\x36\x4f\x4e\x9c\xeb\x31\x30\xdc\xf5\xf5" "\xef\xba\x30\x07\xc2\x7a\xde\x1f\x12\xc3\x68\x53\xee\x7f\xb3\x71\xf9\x6c" "\x71\x98\x36\x3d\x96\x3d\x8f\x9b\xe1\xe1\x91\x70\xdc\x0c\xc7\x7b\x6c\x3d" "\x6e\xb6\x2d\xb8\x4e\x7e\x6b\xf9\x7d\x6f\x9e\x3c\xbf\xe3\x66\xf3\x75\xad" "\x8f\x55\xcb\xcf\x2d\x15\x3c\x6e\xf2\x7d\xf5\xe7\x93\xdd\x8f\x9b\x7c\x9b" "\x17\xa7\x2e\xfc\xb5\x63\x4d\xfc\x6b\xd3\x6b\xc7\xaa\x5e\xc7\xc0\xc8\xd0" "\xaa\x7c\xbd\x23\xe9\x20\x28\x5e\xef\xe6\xd6\xc4\x63\x60\x4b\xb6\x3f\x3b" "\x9e\x1d\xc9\x0e\xa4\xeb\xe4\x8f\x72\x7e\x5f\xe3\x5b\x97\x76\x0c\xac\x0a" "\xff\x5f\xec\xd7\x8e\x6b\x4a\x72\x0c\xe4\xfb\xea\x99\xad\xdd\x8f\x81\x7c" "\x9b\x1f\x6e\x5b\xde\x9f\x9d\x36\x87\xcf\xa4\x6d\x9a\x7e\x76\x6a\xff\xfd" "\xc2\x62\x99\xff\x5d\xc3\xf3\xb7\xd7\xbe\xdb\x96\x3b\xf3\xe7\xeb\xfc\xf8" "\x8f\x3e\x99\x3e\xd7\x29\x43\xe4\xdb\xbc\xba\xfd\x5c\x73\x46\xf7\xfd\x74" "\x63\xf8\xcc\x65\x1d\xf6\x53\xfb\xf3\x67\xb1\x63\xfa\x40\x76\x71\xf6\xd3" "\x35\x61\x9d\x47\x76\x74\xff\xdd\x54\xbe\xcd\x55\x3b\x97\x78\x3c\xed\xc9" "\xb2\xec\xe5\xa9\x97\x1b\xbf\xef\x0a\xbf\xdf\xfd\xde\xe9\x1f\x7d\xbf\xe5" "\xf7\xbe\x9d\x7e\xa7\xfc\xf2\xd4\xcb\x77\x4d\xdc\xf3\xe3\x73\x59\x3f\x00" "\x00\xe7\xef\xcd\xc6\x9f\xb3\xab\x8a\x9f\x35\x9b\xfe\xc5\x7a\x29\xff\xfe" "\x0f\x00\x00\x00\xf4\x85\x98\xfb\x07\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c" "\x98\xfb\x87\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x87\xc3\x4c\x6a" "\x92\xff\x1f\xb8\x65\xd7\xb3\x6f\x3c\x9a\xa5\x77\x03\x9c\x0b\xe2\xe5\x71" "\x37\xdc\xfd\xe1\x62\xbb\xd8\xf1\x9e\x0d\x1f\x8f\xcd\xcd\xcb\x3f\xff\xd1" "\x6f\x8f\x3c\xfb\xd5\x47\x97\x76\xdf\x83\x59\x96\xfd\xf2\xae\x77\x77\xdc" "\xfe\x81\x0f\xc7\x75\x15\x4e\xc4\x75\x7e\xb0\xf5\xf3\x0b\x5c\x73\xed\x92" "\xee\xff\xfe\x7b\xe7\xb7\x6b\x7e\xff\x84\xb3\xbb\x8a\xdb\x8f\x5f\xcf\x52" "\x0f\x83\xd8\x55\x7e\x7e\x62\x6b\xe3\x76\xc7\x1e\x9a\x6a\xcc\x17\xef\xca" "\x1a\xf3\x9e\xd9\x27\x1f\x2f\x6e\xbf\xf8\x38\x6e\x7f\x66\x5b\xb1\xfd\x5f" "\x86\x37\x2d\xd9\x73\x70\xa0\xe5\xfa\x9b\xc3\x7a\x36\x85\x39\x16\xde\x53" "\xe6\xee\x3d\xf3\xfb\x21\x9f\xf1\x7a\xcf\xae\x7f\xef\x3f\x5d\xf9\x99\xf9" "\xfb\x8b\xd7\x1b\xd8\xf8\xd6\xc6\x97\xf9\xcc\x1f\x14\xb7\x1b\xdf\x23\xea" "\xe9\x2b\x8b\xed\xe3\xd7\xbd\xd8\xfa\xff\xf1\x6b\xdf\x7d\x36\xdf\xfe\xc1" "\xeb\x3b\xaf\xff\xd1\xc1\xce\xeb\x3f\x13\x6e\xf7\x95\x30\x7f\xb1\xbb\xd8" "\xbe\x79\x9f\x7f\xb5\x69\xfd\x7f\x14\xd6\x1f\xef\x2f\x5e\x6f\xcb\xb7\x5e" "\xe8\xb8\xfe\xe7\xde\x51\x6c\xff\x5c\x38\x2e\xbe\x11\x66\xfb\xfa\x6f\xfb" "\xd3\xf7\xbc\xd1\xe9\xf1\x8a\xf7\xb3\xe7\xd6\xe2\x7a\xf1\xfe\x27\xff\x7b" "\x7b\xe3\x7a\xf1\xf6\xe2\xed\xb7\xaf\x7f\xf4\xd1\xa9\x96\xfd\xd1\x7e\xfb" "\x2f\xbe\x5e\xdc\xce\xee\x2f\xff\x6c\xa8\x79\xfb\xf8\xf9\x78\x3f\xd1\xfd" "\xb7\xb6\x1e\xdf\x03\xe1\xf1\x6d\xe9\x91\x67\x59\xf6\xdd\x3f\xce\x5a\xf6" "\x73\xf6\xa1\xe2\x7a\xff\xd0\xb6\xfe\x78\x7b\x27\x6e\xed\xbc\xfe\x1b\xdb" "\xd6\x79\x62\xe0\xda\xc6\xf5\xe7\xbf\x9e\x75\x2d\x5f\xd7\xd7\xff\x7a\x6b" "\xc7\xaf\x37\xae\x67\xcf\xdf\xad\x6b\xf9\x7a\x9e\xbe\x3d\xec\xbf\xd7\x27" "\x7e\x98\xdf\xee\x99\x7b\xc2\xf1\x18\x2e\xff\xdf\x97\x8a\xdb\x6b\x7f\x1f" "\xa6\xe7\x6e\x6f\x7d\xbd\x89\xdb\x7f\x63\x5d\xf1\xbc\x8d\xb7\x37\xd1\xb6" "\xfe\xa7\xdb\xd6\x3f\x7b\x6d\xbe\xef\x7a\xaf\xff\xce\xd7\x8b\xf5\x3f\xf7" "\x91\xd5\x2d\xeb\xdf\x73\x47\x38\x9e\xee\x2c\x66\xaf\xf5\x1f\xfa\xab\x2b" "\x5a\xae\xff\xcd\xef\x14\x8f\xc7\xc9\xaf\x8c\x1f\x3b\x3e\x73\xfa\xf0\x81" "\xa6\xbd\xda\xfc\x3c\x5e\x3d\xba\x66\xed\x65\x97\xbf\xe5\xad\x57\x84\xd7" "\xd2\xf6\x8f\xf7\x1e\x3f\xf5\xc0\xf4\xc9\xb1\xc9\xb1\xc9\x2c\x1b\xeb\xc3" "\xb7\x0c\x5c\xe9\xf5\x7f\x2b\xcc\xff\x2a\xc6\xec\xf2\xdf\x43\xe1\xc7\x3f" "\x2b\x8e\xbb\xa7\x3e\x51\x7c\xdf\x7a\xdf\xcf\x8b\x8f\x9f\x0e\x9f\xbf\x3f" "\x3c\x9e\xf1\xfb\xe3\xd7\xff\x62\xa4\xe5\x78\x6d\x7f\xdc\x67\x3f\x52\xcc" "\x0b\x5d\xff\x07\xc2\x3a\x96\xea\x1d\x5f\xfb\x8f\x6b\x97\xb4\xe1\x99\xcf" "\x3f\x7f\xfa\xef\xff\xf0\xd5\xf6\x9f\x0b\xe2\xd7\x73\xe2\xed\xa3\x8d\xaf" "\xef\x99\x0d\x57\x37\x2e\x1b\x78\xb1\xb8\xbc\xfd\xf5\xaa\x97\x7f\x7f\x7b" "\xeb\xf3\xfa\x27\xc3\x93\x8d\xf9\x83\xb0\x5f\xe7\xc2\x3b\x33\x6f\xbc\xba" "\xb8\xbf\xf6\xdb\x8f\xef\x4d\xf2\xd4\xa7\x8a\xe7\x6f\xfc\x49\x2e\x5e\x3f" "\x6b\x7b\x3f\x91\x75\x43\xad\x5f\xc7\x85\xae\xff\x27\xe1\xe7\x98\x17\xae" "\x69\x7d\xfd\x8b\xc7\xc7\x0f\x1e\x6d\x7b\x37\xe7\x75\xd9\x40\xbe\x84\xd9" "\xf0\xfa\x90\xcd\x16\x97\xc7\xad\xe2\xfe\x7e\xea\xec\xd5\x1d\xef\x2f\xbe" "\x0f\x4f\x36\xfb\xce\x73\x59\xe6\xa2\x66\x1e\x9a\x99\x38\x72\xf8\xd8\xe9" "\x07\x27\x4e\x4d\xcf\x9c\x9a\x98\x79\xe8\xe1\xbd\x47\x8f\x9f\x3e\x76\x6a" "\x6f\xe3\xbd\x4b\xf7\x7e\xb1\xd7\xf5\xe7\x9f\xdf\x6b\x1b\xcf\xef\x03\xd3" "\x3b\xb7\x67\x8d\x67\xfb\xf1\x62\xac\xb0\x4b\xbd\xfe\x13\xf7\xee\x3f\x70" "\xf3\xe4\x0d\x07\xa6\x0f\xee\x3b\x7d\xf0\xd4\xbd\x27\xa6\x4f\x1e\xda\x3f" "\x33\xb3\x7f\xfa\xc0\xcc\x0d\xfb\x0e\x1e\x9c\xfe\x4a\xaf\xeb\x1f\x3e\xb0" "\x7b\x6a\xeb\xae\x6d\x37\x6f\x1d\x3f\x74\xf8\xc0\xee\x5b\x76\xed\xda\xb6" "\x6b\xfc\xf0\xb1\xe3\xf9\x32\x8a\x45\xf5\xb0\x73\xf2\x4b\xe3\xc7\x4e\xee" "\x6d\x5c\x65\x66\xf7\xf6\x5d\x53\x3b\x76\x6c\x9f\x1c\x3f\x7a\xfc\xc0\xf4" "\xee\x9b\x27\x27\xc7\x4f\xf7\xba\x7e\xe3\x7b\xd3\x78\x7e\xed\x2f\x8f\x9f" "\x9c\x3e\xb2\xef\xd4\xe1\xa3\xd3\xe3\x33\x87\x1f\x9e\xde\x3d\xb5\x6b\xe7" "\xce\xad\x3d\xdf\xfd\xf1\xe8\x89\x83\x33\x63\x13\x27\x4f\x1f\x9b\x38\x3d" "\x33\x7d\x72\xa2\xf8\x5a\xc6\x4e\x35\x3e\x9d\x7f\xef\xeb\x75\x7d\xea\x61" "\xe6\x78\x78\xbd\x6b\x33\x10\x7e\x3a\xff\xdc\x8d\x3b\xd3\xfb\xe3\xe6\xbe" "\xfd\xd8\xa2\x37\x55\x6c\xd2\xfa\xe3\x69\xf6\x5a\x78\x2f\xa8\xf8\xfd\xad" "\xd7\xc7\x31\xf7\x8f\x84\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\x1f" "\xde\xf8\x7f\xfe\x02\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xd5\x61\x26\xf2" "\x3f\x00\x00\x00\x54\x46\xcc\xfd\x45\xf2\x1f\x4d\xa7\x7f\xaf\x4b\xfe\x5f" "\xae\xfe\xff\x63\xfa\xff\x0d\xfa\xff\xfa\xff\x99\xfe\x7f\xa2\xff\xaf\xff" "\x9f\xe9\xff\xeb\xff\xf7\xa0\xff\xaf\xff\xdf\xcf\xeb\xd7\xff\xd7\xff\xa7" "\xb7\xb2\xf5\xff\x43\xee\xcf\xd6\x64\x99\x7f\xff\x07\x00\x00\x80\x8a\x8a" "\xb9\x7f\x6d\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x65\x61\x26\xf2" "\x3f\x00\x00\x00\x54\x46\xcc\xfd\x97\x87\x99\xd4\x24\xff\x3b\xff\xbf\xfe" "\xbf\xfe\x7f\xb7\xfe\x7f\xdc\x56\xff\x3f\xd3\xff\x2f\x43\xff\x7f\xd3\x7f" "\xea\xff\x2f\xa0\xff\xaf\xff\x9f\xe9\xff\x9f\xb7\x4b\xdd\x9f\xef\xf7\xf5" "\x97\xb0\xff\xbf\x46\xff\x9f\xb2\x29\x5b\xff\x3f\xe6\xfe\xb7\x84\x99\xd4" "\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\xff\xd6\x30\x13\xf9\x1f\x00\x00\x00" "\x2a\x23\xe6\xfe\x2b\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xd7\x85" "\x99\xd4\x24\xff\xeb\xff\xeb\xff\xeb\xff\x3b\xff\xbf\xfe\x7f\xdf\xf4\xff" "\x9d\xff\xbf\x03\xfd\x7f\xfd\xff\x4c\xff\xff\xbc\x2d\xd2\x9f\xcf\x7f\x28" "\xd4\xff\xef\xcf\xfe\xbf\xf3\xff\x53\x3a\x65\xeb\xff\xc7\xdc\xff\x2b\x61" "\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\xbf\x2d\xcc\x44\xfe\x07\x00" "\x00\x80\xca\x88\xb9\xff\xca\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe" "\xab\xc2\x4c\x6a\x92\xff\xeb\xd9\xff\x7f\x25\xcb\x32\xfd\xff\x4c\xff\x5f" "\xff\xbf\x6d\x9d\xfa\xff\xfa\xff\x2b\x41\xff\x5f\xff\xbf\x1b\xfd\xff\x52" "\xf6\xff\x9d\xff\x5f\xff\x5f\xff\x9f\x65\x53\xb6\xfe\x7f\xcc\xfd\x6f\x0f" "\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\xff\xea\x30\x13\xf9\x1f\x00" "\x00\x00\x2a\x23\xe6\xfe\x77\x84\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7" "\x5f\x13\x66\x52\x93\xfc\x5f\xcf\xfe\xbf\xf3\xff\xeb\xff\x17\xf4\xff\x5b" "\xd7\xa9\xff\xaf\xff\xbf\x12\xf4\xff\xf5\xff\xbb\xd1\xff\xd7\xff\xef\xe7" "\xf5\xeb\xff\xeb\xff\xd3\x5b\xd9\xfa\xff\x31\xf7\xbf\x33\xcc\xa4\x26\xf9" "\x1f\x00\x00\x00\xea\x20\xe6\xfe\x77\x85\x99\xc8\xff\x00\x00\x00\x50\x19" "\x31\xf7\xbf\x3b\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x7d\x98\x49" "\x4d\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xff\x4a\xea\xaf" "\xfe\xff\xe0\xa2\x97\xe8\xff\x17\xf4\xff\x5b\x2d\x5f\xff\x7f\x76\x7e\x01" "\xfa\xff\x7d\xb3\x7e\xfd\x7f\xfd\x7f\x7a\x2b\x5b\xff\x3f\xe6\xfe\xf7\x84" "\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\xff\xde\x30\x13\xf9\x1f\x00" "\x00\x00\x2a\x23\xe6\xfe\x6b\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb" "\xc7\xc2\x4c\x6a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff" "\x57\x52\x7f\xf5\xff\x17\xa7\xff\x5f\xd0\xff\x6f\xb5\xb4\xfe\xff\xc0\xf0" "\xfc\x02\x9c\xff\x7f\x39\x5d\xea\xf5\xeb\xff\xeb\xff\xd3\x5b\xd9\xfa\xff" "\x31\xf7\x6f\x08\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\x7f\x63\x98" "\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x75\x61\x26\xf2\x3f\x00\x00\x00" "\x54\x46\xcc\xfd\x9b\xc2\x4c\x6a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff" "\xf5\xff\xf5\xff\x57\x92\xfe\x7f\x55\xfa\xff\xab\x1a\x9f\xd6\xff\x6f\xb5" "\x7c\xe7\xff\x9f\xbf\x7f\xfd\xff\xfe\x59\xbf\xfe\xbf\xfe\x3f\xbd\x95\xad" "\xff\x1f\x73\xff\xf5\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\xdf" "\x10\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\xbe\x30\x13\xf9\x1f\x00" "\x00\x00\x2a\x23\xe6\xfe\xcd\x61\x26\x35\xc9\xff\xfa\xff\xfa\xff\xfa\xff" "\x7d\xdc\xff\x1f\xd2\xff\xcf\xf4\xff\x4b\x4f\xff\xbf\x2a\xfd\xff\x82\xfe" "\x7f\xab\xaa\xf5\xff\x87\xf5\xff\xf5\xff\xf5\xff\x59\x66\x65\xeb\xff\xc7" "\xdc\xff\xfe\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\x3f\x10\x66" "\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x63\x98\x89\xfc\x0f\x00\x00\x00" "\x95\x11\x73\xff\x78\x98\x49\x4d\xf2\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x1f\xf7" "\xff\x9d\xff\xbf\x65\xfd\xcb\xd0\xff\x1f\x69\xfe\xbc\xfe\xff\xf2\xd0\xff" "\xd7\xff\xef\x46\xff\xbf\x5c\xfd\x7f\xe7\xff\xd7\xff\xd7\xff\x67\xb9\x95" "\xad\xff\x1f\x73\xff\x4d\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7" "\x6f\x09\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x9f\x08\x33\x91\xff\x01" "\x00\x00\xa0\x32\x62\xee\x9f\x0c\x33\xa9\x42\xfe\xff\xb7\xb3\x3d\x37\xd1" "\xff\xbf\x98\xfd\xff\xc6\x3e\xd6\xff\xd7\xff\xd7\xff\x0f\x97\x97\xb0\xff" "\xef\xfc\xff\x2b\x40\xff\x5f\xff\xbf\x1b\xfd\x7f\xfd\xff\x7e\x5e\xbf\xfe" "\xbf\xfe\x3f\xbd\x95\xad\xff\x1f\x73\xff\x54\x98\x49\x15\xf2\x3f\x00\x00" "\x00\xd0\x10\x73\xff\xd6\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x6d" "\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xdb\xc3\x4c\x6a\x92\xff\xfb" "\xa4\xff\xbf\x25\x15\xa0\xfa\xba\xff\xdf\xe9\xfc\xff\xab\x33\xfd\x7f\xfd" "\xff\x48\xff\x3f\x3c\xae\xfd\xde\xff\xff\x9f\xf0\xa2\xa8\xff\xdf\xa0\xff" "\xaf\xff\xdf\x8d\xfe\xbf\xfe\x7f\x3f\xaf\xff\x12\xf4\xff\x87\x9b\x3f\xd0" "\xff\xa7\x6c\x06\x3b\x7c\xae\x6c\xfd\xff\x98\xfb\x77\x84\x99\xd4\x24\xff" "\x03\x00\x00\x40\x1d\xc4\xdc\xbf\x33\xcc\x44\xfe\x07\x00\x00\x80\xca\x88" "\xb9\xff\xe6\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x5b\xc2\x4c\x6a" "\x92\xff\xfb\xa4\xff\x5f\x91\xf3\xff\x77\xea\xff\x3b\xff\xbf\xfe\xff\xfc" "\xf5\xf4\xff\xc3\xe3\xda\xef\xfd\xff\xc0\xf9\xff\x0b\xfa\xff\xfa\xff\xdd" "\xe8\xff\xeb\xff\xf7\xf3\xfa\xcf\xad\xff\xff\xd9\xf6\x6f\x77\xce\xff\x4f" "\x2d\x94\xad\xff\x1f\x73\xff\xae\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83" "\x98\xfb\x3f\x18\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x6b\x98\x89" "\xfc\x0f\x00\x00\x00\x7d\xa5\xd3\x79\x08\xa3\x98\xfb\x3f\x14\x66\x52\x93" "\xfc\xaf\xff\x5f\xf5\xfe\xff\xdc\x6a\xfd\x7f\xfd\x7f\xfd\xff\xee\xeb\xd7" "\xff\x5f\x59\xfa\xff\xfa\xff\xdd\xe8\xff\xeb\xff\xf7\xf3\xfa\x2f\xc1\xf9" "\xff\x5b\xe8\xff\x53\x1e\x6b\x16\xbd\xa4\x6c\xfd\xff\x98\xfb\x77\x87\x99" "\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\xff\xe1\x30\x13\xf9\x1f\x00\x00" "\x00\x2a\x23\xe6\xfe\x8f\x84\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xef" "\x09\x33\xa9\x49\xfe\xd7\xff\xaf\x7a\xff\xbf\x36\xe7\xff\x6f\x5c\xae\xff" "\xaf\xff\xaf\xff\x5f\x3e\xfa\xff\xfa\xff\xdd\xe8\xff\xf7\x67\xff\x3f\xfc" "\xd8\xa2\xff\x5f\xa2\xfe\x7f\x7e\x0c\xe9\xff\x53\x46\x65\xeb\xff\xc7\xdc" "\x7f\x5b\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\x1f\x0d\x33\x91" "\xff\x01\x00\x00\xa0\x32\x62\xee\xff\x58\x98\x89\xfc\x0f\x00\x00\x00\x95" "\x11\x73\xff\xc7\xc3\x4c\x6a\x92\xff\xf5\xff\xf5\xff\x2b\xd2\xff\x77\xfe" "\x7f\xfd\x7f\xfd\xff\x92\xd2\xff\x5f\xb1\xfe\x7f\xe3\xa5\x50\xff\xbf\xb0" "\x68\xff\x7f\x8d\xfe\x7f\x37\xf3\xfd\xf9\x2b\x9c\xff\xbf\xcf\xfb\xff\xce" "\xff\x4f\x59\x95\xad\xff\x1f\x73\xff\xed\x61\x26\x35\xc9\xff\x00\x00\x00" "\x50\x07\x31\xf7\xdf\x11\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\xab" "\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x77\x86\x99\xd4\x24\xff\xeb" "\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xaf\x24\xfd\x7f\xe7\xff\xef" "\xc6\xf9\xff\xcb\xd2\xff\xbf\x34\xfd\xf9\x7e\x5f\xbf\xfe\xbf\xfe\x3f\xbd" "\x95\xad\xff\x1f\x73\xff\xaf\x85\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4" "\xdc\x7f\x57\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x27\xc2\x4c\xe4" "\x7f\x00\x00\x00\xe8\x33\xab\x16\xbd\x24\xe6\xfe\x5f\x0f\x33\xa9\x49\xfe" "\xef\xbf\xfe\xff\x58\x5f\xf6\xff\x07\xd3\xed\xeb\xff\xeb\xff\xeb\xff\xeb" "\xff\xeb\xff\x2f\x27\xfd\x7f\xfd\xff\x4c\xff\xff\xbc\x5d\xea\xfe\x7c\xbf" "\xaf\x5f\xff\x5f\xff\x9f\xde\xca\xd6\xff\x8f\xb9\xff\x37\xc2\x4c\x6a\x92" "\xff\x01\x00\x00\xa0\x0e\x62\xee\xff\x64\x98\x89\xfc\x0f\x00\x00\x00\x95" "\x11\x73\xff\x6f\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xdf\x1d\x66" "\x52\x93\xfc\xbf\xdc\xfd\xff\xf6\xeb\x77\xe3\xfc\xff\xfa\xff\x99\xfe\xbf" "\xfe\xbf\xfe\xbf\xfe\xff\x05\xea\xa7\xfe\xff\x88\xfe\xff\x02\xfa\xff\xfa" "\xff\xfd\xbc\x7e\xfd\x7f\xfd\x7f\x7a\x2b\x5b\xff\x3f\xe6\xfe\xdf\x0a\x33" "\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\xff\x9e\x30\x13\xf9\x1f\x00\x00" "\x00\x4a\xea\x81\x73\xbe\x46\xcc\xfd\x9f\x0a\x33\x91\xff\x01\x00\x00\xa0" "\x32\x62\xee\xff\x74\x98\x49\x4d\xf2\x7f\xff\x9d\xff\xbf\xff\xfa\xff\xf9" "\xed\xeb\xff\xeb\xff\x67\xfa\xff\xfa\xff\x4d\x7b\x55\xff\x7f\xf9\xf4\x53" "\xff\xdf\xf9\xff\x17\xd2\xff\xd7\xff\xef\xe7\xf5\xeb\xff\xeb\xff\xd3\x5b" "\xd9\xfa\xff\x31\xf7\xdf\x1b\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73" "\xff\x67\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x7f\x3b\xcc\x44\xfe" "\x07\x00\x00\x80\xca\x88\xb9\xff\xb3\x61\x26\x35\xc9\xff\xfa\xff\xce\xff" "\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xbf\x92\xf4\xff\x17\xf6\xff\xf3\xd7\x30" "\xfd\xff\x82\xfe\xbf\xfe\x7f\x3f\xaf\x5f\xff\x5f\xff\x9f\xde\xca\xd6\xff" "\x8f\xb9\xff\x73\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\xff\x4e" "\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xef\x86\x99\xc8\xff\x00\x00" "\x00\x50\x19\x31\xf7\xdf\x17\x66\x52\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf" "\xff\xaf\xff\xaf\xff\xbf\x92\xf4\xff\x9d\xff\xbf\x1b\xfd\x7f\xfd\xff\x7e" "\x5e\xbf\xfe\xbf\xfe\x3f\xbd\x95\xad\xff\x1f\x73\xff\xe7\xc3\x4c\x6a\x92" "\xff\x01\x00\x00\xa0\x0e\x62\xee\xff\xbd\x30\x13\xf9\x1f\x00\x00\x00\x2a" "\x23\xe6\xfe\xbd\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xf7\x87\x99" "\xd4\x24\xff\xeb\xff\xeb\xff\xeb\xff\xd7\xb7\xff\xbf\xba\x6d\x9d\xfa\xff" "\xfa\xff\x2b\x41\xff\x5f\xff\xbf\x1b\xfd\x7f\xfd\xff\x7e\x5e\xbf\xfe\xbf" "\xfe\x3f\xbd\x95\xad\xff\x1f\x73\xff\xbe\x30\x93\x3d\xad\x77\x03\x00\x00" "\x00\xf4\xaf\x98\xfb\xbf\x10\x66\x52\x93\x7f\xff\x07\x00\x00\x80\x3a\x88" "\xb9\x7f\x7f\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x81\x30\x93\x9a" "\xe4\x7f\xfd\x7f\xfd\x7f\xfd\xff\xfa\xf6\xff\x9d\xff\xbf\xa0\xff\xbf\xb2" "\xf4\xff\xf5\xff\xbb\xd1\xff\xd7\xff\xef\xe7\xf5\xd7\xbd\xff\xff\xc2\x1d" "\x2f\x3c\xa8\xff\x4f\x2f\x17\xbb\xff\x1f\xbf\x0f\x2c\xd6\xff\x8f\xb9\x7f" "\x3a\xcb\x6a\x99\xff\x01\x00\x00\xa0\x0e\x62\xee\x3f\x18\x66\x22\xff\x03" "\x00\x00\x40\x65\xc4\xdc\x7f\x28\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9" "\xff\x81\x30\x93\x9a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\xff\xda\xf6\xff\x5f\xfa" "\x5e\xdb\x3a\xf5\xff\xf5\xff\x57\x82\xfe\xbf\xfe\x7f\x37\xfa\xff\xfa\xff" "\xfd\xbc\xfe\xba\xf7\xff\x9d\xff\x9f\xa5\x28\xdb\xf9\xff\x63\xee\x3f\x1c" "\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73\xff\x17\xc3\x4c\xe4\x7f\x00" "\x00\x00\xa8\x8c\x98\xfb\xbf\x14\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc" "\x7f\x24\xcc\xa4\x26\xf9\x5f\xff\x5f\xff\x5f\xff\xff\xbc\xfa\xff\xff\x37" "\xd7\xff\xfd\xff\xa5\x9d\xff\x7f\xcd\xfc\xfd\xea\xff\xeb\xff\x9f\x0f\xfd" "\x7f\xfd\xff\x6e\xf4\xff\xf5\xff\xfb\x79\xfd\xfa\xff\xfa\xff\xf4\x56\xb6" "\xfe\x7f\xcc\xfd\x47\xc3\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62\xee\x3f" "\x16\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x3c\xcc\x44\xfe\x07\x00" "\x00\x80\xca\x88\xb9\xff\x44\x98\x49\x4d\xf2\xbf\xfe\xff\xb9\xf5\xff\x07" "\x16\xe9\x06\xea\xff\x77\x5e\x7f\x85\xfb\xff\x0d\xb5\xe8\xff\x37\xd1\xff" "\xd7\xff\x3f\x1f\xfa\xff\xfa\xff\xdd\x5c\x84\xfe\xff\x9b\xcd\x57\xd1\xff" "\x6f\x75\xa9\xfb\xf3\xfd\xbe\x7e\xfd\x7f\xfd\x7f\x7a\x2b\x45\xff\x7f\x64" "\xfe\xe3\x98\xfb\x7f\x3f\xcc\xa4\x26\xf9\x1f\x00\x00\xfe\x9f\xbd\xfb\x5a" "\xb2\xab\xbe\xf2\x38\x7e\xa6\x91\x10\xd4\x14\x33\xaf\xc0\xd5\x5c\xcf\x5c" "\xcd\xe5\x3c\xc2\x3c\x83\xab\x78\x02\xe7\x6c\x70\xc6\xd9\xc6\x39\xdb\x18" "\xe7\x84\x71\xc6\x01\xe7\x9c\x73\xc2\x39\x62\x6c\x6c\xe3\x80\xed\x2a\x5c" "\xea\x5e\x6b\x09\xb5\xa4\x7d\x8e\xa4\x73\xd4\x7b\xff\xd7\xe7\x73\xc1\x32" "\x47\x20\x36\x76\x8b\xf2\xaf\xa4\x2f\x1b\xa0\x83\xdc\xfd\xf7\x8f\x5b\xec" "\x7f\x00\x00\x00\x18\x46\xee\xfe\x07\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23" "\x77\xff\x03\xe3\x96\x26\xfb\xff\xf4\xfe\xff\x98\xfe\xdf\xfb\xff\xf5\xff" "\xfa\x7f\xfd\x7f\xd0\xff\x6f\x87\xfe\x5f\xff\x3f\xc5\xfb\xff\xf5\xff\x4b" "\x7e\x7e\xfd\xbf\xfe\x9f\xf5\x66\xd1\xff\xdf\xe7\xf7\x73\xf7\x3f\x28\x6e" "\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x0f\x8e\x5b\xec\x7f\x00\x00\x00" "\x18\x46\xee\xfe\x87\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x43\xe3" "\x96\x26\xfb\xdf\xfb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\x4b\xfa" "\x7f\xfd\xff\xb9\xe4\x3f\x8b\xf4\xff\xfa\xff\xa5\x3e\xbf\xfe\x5f\xff\xcf" "\x7a\x73\xeb\xff\x73\xf7\x3f\x2c\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc" "\xfd\x0f\x8f\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x47\xc4\x2d\xf6\x3f" "\x00\x00\x00\x0c\x23\x77\xff\x23\xe3\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff" "\xeb\xff\xf5\xff\x67\xed\xff\xef\xd6\xff\x6f\x87\xfe\x5f\xff\x3f\xc5\xfb" "\xff\xf5\xff\x4b\x7e\x7e\xfd\xff\xf9\xf7\xff\xc7\xd6\x7d\xa7\x0c\x67\x6e" "\xfd\x7f\xee\xfe\x47\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xd1" "\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x98\xb8\xc5\xfe\x07\x00\x00" "\x80\x61\xe4\xee\xbf\x36\x6e\x69\xb1\xff\x8f\xe9\xff\xf5\xff\xfa\xff\x25" "\xf6\xff\xc7\xb6\xdf\xff\xe7\x3f\xfd\xf4\xff\xa7\x3e\xd7\xff\x6f\x87\xfe" "\x5f\xff\x3f\x45\xff\xaf\xff\x3f\xba\xe7\xbf\x6a\xb5\x5a\xe9\xff\xbd\xff" "\x9f\x5d\x9b\x5b\xff\x9f\xbb\xff\xba\xb8\xa5\xc5\xfe\x07\x00\x00\x80\x1e" "\x72\xf7\x3f\x36\x6e\xb1\xff\x01\x00\x00\x60\x01\xf6\x36\xfa\xa3\x72\xf7" "\x3f\x2e\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x1f\x1f\xb7\x34\xd9\xff" "\xfa\x7f\xfd\xbf\xfe\x7f\x81\xfd\xbf\xf7\xff\xeb\xff\x17\x44\xff\x3f\x7e" "\xff\xff\x9f\xfa\x7f\xfd\xff\x22\xfb\x7f\xef\xff\xd7\xff\x73\x29\xcc\xad" "\xff\xcf\xdd\xff\x84\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x31" "\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x9f\x14\xb7\xd8\xff\x00\x00\x00" "\x30\x8c\xdc\xfd\x4f\x8e\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7" "\xff\xeb\xff\x77\x49\xff\x3f\x7e\xff\xbf\x3a\x5b\x3f\x7f\x62\xb3\xe7\xd1" "\xff\xeb\xff\x97\xfc\xfc\xfa\x7f\xfd\x3f\xeb\xed\xbc\xff\xff\xff\xeb\xf7" "\xef\xa6\xfd\x7f\xee\xfe\xeb\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd" "\xff\x94\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x6a\xdc\x62\xff\x03" "\x00\x00\xc0\x30\x72\xf7\x3f\x2d\x6e\x69\xb2\xff\xf5\xff\xfa\xff\x53\xfd" "\xff\xbd\xff\xa6\xff\xd7\xff\xeb\xff\x4f\x7d\xae\xff\xdf\x0e\xfd\x7f\xd3" "\xfe\x7f\x43\xfa\x7f\xfd\xff\x92\x9f\x5f\xff\xaf\xff\x67\xbd\x9d\xf7\xff" "\x6b\x7a\xff\xc3\xbf\x9f\xbb\xff\xe9\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d" "\xe4\xee\x7f\x46\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x3f\x33\x6e\xb1" "\xff\x01\x00\x00\x60\x18\xb9\xfb\x9f\x15\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf" "\xf7\xff\xeb\xff\xf5\xff\xfa\xff\x5d\xd2\xff\xcf\xb6\xff\x3f\xfc\x43\xef" "\x74\xfa\xff\x8d\xe8\xff\xf5\xff\xe7\xea\xff\xff\x6f\x83\xe7\xd7\xff\xd3" "\xc1\xdc\xfa\xff\xdc\xfd\xcf\x8e\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77" "\xff\x73\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x86\xb8\xc5\xfe\x07" "\x00\x00\x80\x61\xe4\xee\x7f\x6e\xdc\xd2\x64\xff\xb7\xe9\xff\x0f\xe5\x7c" "\xfa\xff\x03\xfa\x7f\xfd\xff\xea\x8c\xfe\x7f\xaf\x65\xff\x7f\xf2\x33\xfd" "\xff\x6e\xe8\xff\x67\xdb\xff\x4f\xd3\xff\x6f\x44\xff\xaf\xff\xf7\xfe\x7f" "\xfd\x3f\xd3\xe6\xd6\xff\xe7\xee\x7f\x5e\xdc\xd2\x64\xff\x03\x00\x00\x40" "\x07\xb9\xfb\x9f\x1f\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x2f\x88\x5b" "\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x17\xc6\x2d\x4d\xf6\x7f\x9b\xfe\xff" "\x10\xfd\xff\x81\x8b\xee\xff\x4f\xe8\xff\xc7\xeb\xff\xcf\xf3\xfd\xff\x97" "\x8d\xd1\xff\x7b\xff\xff\xee\xe8\xff\xf5\xff\x53\xf4\xff\xfa\xff\x25\x3f" "\xbf\xfe\x5f\xff\xcf\x7a\x73\xeb\xff\x73\xf7\xbf\x28\x6e\x69\xb2\xff\x01" "\x00\x00\x60\x78\x7b\xab\xda\xfd\x2f\x8e\x5b\xec\x7f\x00\x00\x00\x18\x46" "\xee\xfe\x97\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x4b\xe3\x96\x26" "\xfb\x5f\xff\xaf\xff\xf7\xfe\x7f\xfd\xff\x45\xf5\xff\x83\xbc\xff\x5f\xff" "\xbf\x3b\xfa\x7f\xfd\xff\x94\x4d\xfb\xff\x95\xfe\xbf\xfe\x5e\xf4\xff\xf3" "\x79\x7e\xfd\xbf\xfe\x9f\xf5\xe6\xd6\xff\xe7\xee\x7f\x59\xdc\xd2\x64\xff" "\x03\x00\x00\x40\x07\xb9\xfb\x5f\x1e\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc" "\xfd\xaf\x88\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x57\xc6\x2d\x4d\xf6" "\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xbb\xa4\xff\xd7\xff\x4f" "\xf1\xfe\x7f\xfd\xff\x92\x9f\x5f\xff\xaf\xff\x67\xbd\xb9\xf5\xff\xb9\xfb" "\x5f\x15\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x57\xc7\x2d\xf6\x3f" "\x00\x00\x00\x0c\x23\x77\xff\x8d\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd" "\xff\x9a\xb8\xe5\xf0\xfe\xdf\xbb\x94\x4f\x75\xe9\xe8\xff\xf5\xff\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\xbf\x4b\xfa\x7f\xfd\xff\x94\x91\xfb\xff\x7b\x4f\x5c" "\x78\xff\x7f\xc5\x39\xfe\x7a\xfa\xff\x0d\x9f\xff\x96\xe3\xfa\xff\x1d\xf6" "\xff\xf9\x63\x4a\xff\xcf\x26\xe6\xd6\xff\xe7\xee\xbf\x29\x6e\xf1\xf3\xff" "\x00\x00\x00\x30\x8c\xdc\xfd\xaf\x8d\x5b\xec\x7f\x00\x00\x00\x18\x46\xee" "\xfe\xd7\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xeb\xe3\x96\x26\xfb" "\xff\x5c\xfd\xff\x5d\xff\x7e\xf0\xed\xfa\xff\xcd\xe8\xff\xcf\xfe\xfc\xfa" "\x7f\xfd\xff\xa6\xfd\xff\x3d\xb7\x9f\xfa\xf3\xf4\xff\xfa\xff\xf3\xa1\xff" "\xd7\xff\xaf\x66\xda\xff\x7b\xff\xbf\xf7\xff\xaf\xfb\xf3\x97\xda\xff\x27" "\xfd\x3f\x9b\x98\x5b\xff\x9f\xbb\xff\x0d\x71\x4b\x93\xfd\x0f\x00\x00\x00" "\x1d\xe4\xee\x7f\x63\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xbf\x29\x6e" "\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xdf\x1c\xb7\x34\xd9\xff\xdb\x7f\xff" "\xff\xd5\xfa\x7f\xfd\xbf\xfe\x3f\xae\xfe\xdf\xfb\xff\xf5\xff\xfa\x7f\xfd" "\xff\x34\xfd\xbf\xfe\x7f\xc9\xcf\xaf\xff\xd7\xff\xb3\xde\x76\xfa\xff\xcb" "\x56\xdb\xea\xff\x73\xf7\xbf\x25\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc" "\xfd\x6f\x8d\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xb7\xc5\x2d\xf6\x3f" "\x00\x00\x00\x0c\x23\x77\xff\xdb\xe3\x96\x26\xfb\x7f\xfb\xfd\xbf\xf7\xff" "\xeb\xff\xcf\xb3\xff\xdf\x6b\xd6\xff\xdf\x78\x9b\xfe\x3f\xbe\x5d\xff\xaf" "\xff\xdf\x06\xfd\xbf\xfe\x7f\xa5\xff\xbf\x60\x47\xdd\xcf\x2f\xfd\xf9\xf5" "\xff\xfa\x7f\xd6\x9b\xdb\xfb\xff\x73\xf7\xdf\xbc\x3f\xf5\xfa\xed\x7f\x00" "\x00\x00\xe8\xe0\xe6\xfd\xdf\x5e\xb1\x7a\x47\xdc\x62\xff\x03\x00\x00\xc0" "\x30\x72\xf7\xdf\x12\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xef\x8c\x5b" "\x9a\xec\x7f\xfd\xbf\xfe\xff\xc8\xfb\x7f\xef\xff\x2f\xfa\xff\xf8\xdf\x55" "\xff\xaf\xff\x3f\x0f\xfa\x7f\xfd\xff\x4a\xff\x7f\xc1\x8e\xba\x9f\x5f\xfa" "\xf3\xeb\xff\xf5\xff\xac\x37\xb7\xfe\x3f\x77\xff\xbb\xe2\x96\x26\xfb\x1f" "\x00\x00\x00\x3a\xc8\xdd\xff\xee\xb8\xc5\xfe\x07\x00\x00\x80\x61\xc4\xee" "\x3f\xf8\xc5\xef\xf6\x3f\x00\x00\x00\x0c\xe9\x3d\xfb\xbf\xbd\x62\xf5\xde" "\xb8\xa5\xc9\xfe\x6f\xdc\xff\x5f\x7d\xb1\xfd\xff\x95\xf7\xf9\xcf\xfa\xff" "\xb3\x3f\xbf\xfe\x7f\x2b\xfd\xff\xcd\x87\xbf\xf6\xf4\xff\xfa\xff\x25\xd1" "\xff\xeb\xff\xa7\xe8\xff\xf5\xff\x4b\x7e\xfe\xf9\xf4\xff\xf1\xc1\xb5\xfa" "\x7f\xe6\x67\x6e\xfd\x7f\xee\xfe\xf7\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74" "\x90\xbb\xff\xfd\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\x7f\x6b\xdc\x62" "\xff\x03\x00\x00\xc0\x30\x72\xf7\x7f\x20\x6e\x69\xb2\xff\x1b\xf7\xff\x83" "\xbc\xff\xff\x7e\x77\xc6\x13\xe8\xff\xc7\xed\xff\xbd\xff\x3f\xee\xa2\xfa" "\xff\xbb\xf4\xff\x49\xff\xaf\xff\x9f\xa2\xff\xd7\xff\x2f\xf9\xf9\xe7\xd3" "\xff\x7b\xff\x3f\xf3\x35\xb7\xfe\x3f\x77\xff\x07\xe3\x96\x26\xfb\x1f\x00" "\x00\x00\x3a\xc8\xdd\xff\xa1\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff" "\x70\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xdf\x16\xb7\x34\xd9\xff\xfa" "\xff\xa5\xf7\xff\xde\xff\xaf\xff\xd7\xff\xcf\xb2\xff\xf7\xfe\xff\xa2\xff" "\xd7\xff\x4f\xd1\xff\xef\xed\xff\x3f\x11\xfd\xff\x32\x9f\x5f\xff\xaf\xff" "\x67\xbd\xb9\xf5\xff\xb9\xfb\x3f\x12\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41" "\xee\xfe\x8f\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xc7\xe2\x16\xfb" "\x1f\x00\x00\x00\x86\x91\xbb\xff\xe3\x71\x4b\x93\xfd\xaf\xff\x1f\xa5\xff" "\xbf\x7c\x35\xb7\xfe\xff\xe4\x5f\x44\xff\xdf\xa4\xff\xbf\x4e\xff\xbf\xd2" "\xff\x9f\x93\xfe\x5f\xff\x3f\x45\xff\xef\xfd\xff\x4b\x7e\x7e\xfd\xbf\xfe" "\x9f\xf5\xe6\xd6\xff\xe7\xee\xff\x44\xdc\xd2\x64\xff\x03\x00\x00\x40\x07" "\xb9\xfb\x3f\x19\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x9f\x8a\x5b\xec" "\x7f\x00\x00\x00\x18\x46\xee\xfe\x4f\xc7\x0d\xff\x73\xd5\xd1\x3d\xd2\x76" "\x1d\x3f\xc7\xe7\xd1\x9b\xeb\xff\x57\xab\xbd\xfb\xc4\xc7\xcb\xed\xff\xbd" "\xff\x5f\xff\xef\xfd\xff\xfa\xff\x79\xd2\xff\xeb\xff\xa7\xe8\xff\xf5\xff" "\x4b\x7e\x7e\xfd\xbf\xfe\x9f\xf5\xe6\xd6\xff\xe7\xee\xff\x4c\xdc\xe2\xe7" "\xff\x01\x00\x00\x60\x18\xb9\xfb\x3f\x1b\xb7\xd8\xff\x00\x00\x00\x30\x8c" "\xdc\xfd\x9f\x8b\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xcf\xc7\x2d\x4d" "\xf6\xbf\xfe\x7f\x94\xf7\xff\xeb\xff\x1b\xf6\xff\x57\xea\xff\x4f\x7f\x7e" "\xfd\xff\x3c\xe9\xff\xf5\xff\x53\xf4\xff\xfa\xff\x25\x3f\xbf\xfe\x5f\xff" "\xcf\x7a\x73\xeb\xff\x73\xf7\x7f\x21\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83" "\xdc\xfd\x5f\x8c\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x2f\xc5\x2d\xf6" "\x3f\x00\x00\x00\x0c\x23\x77\xff\x97\xe3\x96\x26\xfb\x5f\xff\xaf\xff\xd7" "\xff\x2f\xb6\xff\xf7\xfe\xff\x43\xcf\xaf\xff\x9f\x27\xfd\xbf\xfe\x7f\x8a" "\xfe\x5f\xff\xbf\xe4\xe7\xd7\xff\xeb\xff\x59\x6f\x6e\xfd\x7f\xee\xfe\xaf" "\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xab\x71\x8b\xfd\x0f\x00" "\x00\x00\xc3\xc8\xdd\xff\xb5\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff" "\x7a\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\x4b" "\xfa\xff\xf1\xfa\xff\x93\x3f\x06\xf4\xff\x07\xf4\xff\xb3\xe8\xff\xf3\xcb" "\x44\xff\xaf\xff\x67\x86\xe6\xd6\xff\xe7\xee\xff\x46\xdc\xd2\x64\xff\x03" "\x00\x00\x40\x07\xb9\xfb\xbf\x19\xb7\xd8\xff\x00\x00\x00\x30\x77\x87\x7f" "\x79\xe7\xbe\xff\x38\xcb\x67\xb9\xfb\xbf\x15\xb7\xd8\xff\x00\x00\x00\x30" "\x8c\xdc\xfd\xdf\x8e\x5b\x9a\xec\xff\x91\xfb\xff\xa9\x3f\x4c\xff\x7f\x40" "\xff\xaf\xff\x5f\xe9\xff\xf5\xff\x3b\xa6\xff\x1f\xaf\xff\xf7\xfe\xff\x53" "\x36\xe9\xff\x4f\xfb\x37\x00\xe8\xff\xb7\xea\xa8\x9f\x5f\xff\xaf\xff\x67" "\xbd\xb9\xf5\xff\xb9\xfb\xbf\x13\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee" "\xfe\xef\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xf7\xe2\x16\xfb\x1f" "\x00\x00\x00\x86\x91\xbb\xff\xfb\x71\x4b\x93\xfd\x3f\x72\xff\x3f\x45\xff" "\x7f\x40\xff\xaf\xff\x5f\xe9\xff\xf5\xff\x3b\xa6\xff\xd7\xff\x4f\xe9\xd0" "\xff\x9f\x46\xff\xbf\x55\x47\xfd\xfc\xfa\x7f\xfd\x3f\xeb\x1d\x51\xff\x7f" "\x7c\x75\x8e\xfe\x3f\x77\xff\x0f\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8" "\xdd\x7f\x7b\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x30\x6e\xb1\xff" "\x01\x00\x00\x60\x18\xb9\xfb\x7f\x14\xb7\x8c\xb3\xff\xaf\xb9\x75\xe2\x1b" "\xf5\xff\x5b\xef\xff\xf7\xbf\x88\xf4\xff\xfa\xff\x95\xfe\x5f\xff\xaf\xff" "\xdf\xa7\xff\xd7\xff\x4f\xd1\xff\xeb\xff\x97\xfc\xfc\xfa\x7f\xfd\x3f\xeb" "\xcd\xed\xfd\xff\xb9\xfb\x7f\x1c\xb7\x8c\xb3\xff\x01\x00\x00\xa0\xbd\xdc" "\xfd\x3f\x89\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x9f\xc6\x2d\xf6\x3f" "\x00\x00\x00\x0c\x23\x77\xff\xcf\xe2\x96\x26\xfb\x7f\xae\xfd\xff\xe1\xff" "\xfa\x17\xd4\xff\x5f\xd0\xfb\xff\xf3\x19\xf4\xff\xfa\xff\x1d\xf7\xff\x97" "\xad\xf4\xff\xfa\xff\x4b\x4c\xff\xaf\xff\x9f\xb2\x9c\xfe\xff\xd8\x59\x3f" "\xd5\xff\xeb\xff\xf5\xff\xfa\x7f\xa6\xcd\xad\xff\xcf\xdd\xff\xf3\xb8\xa5" "\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xff\x22\x6e\xb1\xff\x01\x00\x00\x60" "\x18\xb9\xfb\x7f\x19\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xbf\x8a\x5b" "\x9a\xec\xff\xb9\xf6\xff\x0b\x7e\xff\xff\x05\xf5\xff\x17\xf7\xfe\xff\x53" "\xf5\xb4\xfe\xff\x28\xfb\xff\xbd\x33\xbe\xff\x19\xf6\xff\xde\xff\xaf\xff" "\xbf\xe4\xf4\xff\xfa\xff\x29\xcb\xe9\xff\xcf\x4e\xff\xaf\xff\xff\xdf\xff" "\xfe\xaf\x6b\xf2\xeb\x4e\xff\xaf\xff\xe7\x4c\x73\xeb\xff\x73\xf7\xff\x3a" "\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xbf\x89\x5b\xec\x7f\x00\x00" "\x00\x18\x46\xee\xfe\x3b\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xb7" "\x71\x4b\x93\xfd\xaf\xff\x1f\xa1\xff\xf7\xfe\xff\x79\xf4\xff\x67\x7e\xff" "\xfa\xff\xdd\xf5\xff\x27\x3f\xd3\xff\x2f\x83\xfe\x5f\xff\x3f\x45\xff\xaf" "\xff\x5f\xf2\xf3\x7b\xff\xbf\xfe\x9f\xf5\xe6\xd6\xff\xe7\xee\xbf\x33\x6e" "\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xbf\x8b\x5b\xec\x7f\x00\x00\x00" "\x18\x46\xee\xfe\xdf\xc7\x2d\xb1\xff\x2f\x3f\x92\xa7\x02\x00\x00\x00\xb6" "\x29\x77\xff\x5d\x71\x4b\x93\x9f\xff\xd7\xff\xeb\xff\x87\xec\xff\x4f\xf4" "\xed\xff\xef\x68\xd2\xff\x7b\xff\xff\x72\xe8\xff\xf5\xff\x53\xf4\xff\xfa" "\xff\x25\x3f\xbf\xfe\x5f\xff\xcf\x7a\x73\xeb\xff\x73\xf7\xff\x21\x6e\x69" "\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x7f\x8c\x5b\xec\x7f\x00\x00\x00\x18" "\x46\xee\xfe\x3f\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xdd\x71\x4b" "\x93\xfd\xaf\xff\xd7\xff\x9f\x7f\xff\x7f\xbc\xfe\xbe\x67\xdb\xff\x7b\xff" "\xbf\xfe\x5f\xff\x3f\x1b\xe3\xf6\xff\x97\xeb\xff\xf5\xff\x17\xdd\xff\xdf" "\x70\xd3\xc1\xc7\xfa\xff\x65\x3e\xbf\xfe\x5f\xff\xcf\x7a\x73\xeb\xff\x73" "\xf7\xff\x39\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x7f\x89\x5b\xec" "\x7f\x00\x00\x00\x18\x46\xee\xfe\xbf\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23" "\x77\xff\xdf\xe2\x96\x26\xfb\x5f\xff\xaf\xff\x1f\xf2\xfd\xff\xfa\x7f\xfd" "\xbf\xfe\x7f\x36\xc6\xed\xff\xbd\xff\x5f\xff\xef\xfd\xff\x17\xd7\xcf\xef" "\x2d\xfc\xf9\xf5\xff\xfa\x7f\x36\x31\xb7\xfe\x3f\x77\xff\x3d\x71\x4b\x93" "\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x7b\xdc\x62\xff\x03\x00\x00\xc0\x30" "\x72\xf7\xff\x23\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xff\x19\xb7\x34" "\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xef\x92\xfe\x5f\xff" "\x3f\x45\xff\xdf\xb9\xff\x5f\xfe\xf3\xeb\xff\xf5\xff\xac\x37\xb7\xfe\x3f" "\x77\xff\xbf\x02\x00\x00\xff\xff\x75\xc3\x35\xb7", 24798)); NONFAILING(syz_mount_image(/*fs=*/0x20000100, /*dir=*/0x200000c0, /*flags=*/0, /*opts=*/0x20000000, /*chdir=*/0xfd, /*size=*/0x60de, /*img=*/0x20000540)); // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0x22240 (4 bytes) // mode: open_mode = 0x0 (2 bytes) // ] // returns fd NONFAILING(memcpy((void*)0x20000080, "./file1\000", 8)); syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000080ul, /*flags=O_TRUNC|O_LARGEFILE|O_CREAT|FASYNC*/ 0x22240, /*mode=*/0); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; install_segv_handler(); do_sandbox_none(); return 0; }