// https://syzkaller.appspot.com/bug?id=3887482187ee08305b88747978f564c0ab606fd3 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } struct nlmsg { char* pos; int nesting; struct nlattr* nested[8]; char buf[4096]; }; static void netlink_init(struct nlmsg* nlmsg, int typ, int flags, const void* data, int size) { memset(nlmsg, 0, sizeof(*nlmsg)); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_type = typ; hdr->nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK | flags; memcpy(hdr + 1, data, size); nlmsg->pos = (char*)(hdr + 1) + NLMSG_ALIGN(size); } static void netlink_attr(struct nlmsg* nlmsg, int typ, const void* data, int size) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_len = sizeof(*attr) + size; attr->nla_type = typ; if (size > 0) memcpy(attr + 1, data, size); nlmsg->pos += NLMSG_ALIGN(attr->nla_len); } static void netlink_nest(struct nlmsg* nlmsg, int typ) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_type = typ; nlmsg->pos += sizeof(*attr); nlmsg->nested[nlmsg->nesting++] = attr; } static void netlink_done(struct nlmsg* nlmsg) { struct nlattr* attr = nlmsg->nested[--nlmsg->nesting]; attr->nla_len = nlmsg->pos - (char*)attr; } static int netlink_send_ext(struct nlmsg* nlmsg, int sock, uint16_t reply_type, int* reply_len, bool dofail) { if (nlmsg->pos > nlmsg->buf + sizeof(nlmsg->buf) || nlmsg->nesting) exit(1); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_len = nlmsg->pos - nlmsg->buf; struct sockaddr_nl addr; memset(&addr, 0, sizeof(addr)); addr.nl_family = AF_NETLINK; ssize_t n = sendto(sock, nlmsg->buf, hdr->nlmsg_len, 0, (struct sockaddr*)&addr, sizeof(addr)); if (n != (ssize_t)hdr->nlmsg_len) { if (dofail) exit(1); return -1; } n = recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); if (reply_len) *reply_len = 0; if (n < 0) { if (dofail) exit(1); return -1; } if (n < (ssize_t)sizeof(struct nlmsghdr)) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type == NLMSG_DONE) return 0; if (reply_len && hdr->nlmsg_type == reply_type) { *reply_len = n; return 0; } if (n < (ssize_t)(sizeof(struct nlmsghdr) + sizeof(struct nlmsgerr))) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type != NLMSG_ERROR) { errno = EINVAL; if (dofail) exit(1); return -1; } errno = -((struct nlmsgerr*)(hdr + 1))->error; return -errno; } static int netlink_send(struct nlmsg* nlmsg, int sock) { return netlink_send_ext(nlmsg, sock, 0, NULL, true); } static int netlink_query_family_id(struct nlmsg* nlmsg, int sock, const char* family_name, bool dofail) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = CTRL_CMD_GETFAMILY; netlink_init(nlmsg, GENL_ID_CTRL, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, CTRL_ATTR_FAMILY_NAME, family_name, strnlen(family_name, GENL_NAMSIZ - 1) + 1); int n = 0; int err = netlink_send_ext(nlmsg, sock, GENL_ID_CTRL, &n, dofail); if (err < 0) { return -1; } uint16_t id = 0; struct nlattr* attr = (struct nlattr*)(nlmsg->buf + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg->buf + n; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == CTRL_ATTR_FAMILY_ID) { id = *(uint16_t*)(attr + 1); break; } } if (!id) { errno = EINVAL; return -1; } recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); return id; } static int netlink_next_msg(struct nlmsg* nlmsg, unsigned int offset, unsigned int total_len) { struct nlmsghdr* hdr = (struct nlmsghdr*)(nlmsg->buf + offset); if (offset == total_len || offset + hdr->nlmsg_len > total_len) return -1; return hdr->nlmsg_len; } static unsigned int queue_count = 2; static void netlink_add_device_impl(struct nlmsg* nlmsg, const char* type, const char* name, bool up) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; netlink_init(nlmsg, RTM_NEWLINK, NLM_F_EXCL | NLM_F_CREATE, &hdr, sizeof(hdr)); if (name) netlink_attr(nlmsg, IFLA_IFNAME, name, strlen(name)); netlink_attr(nlmsg, IFLA_NUM_TX_QUEUES, &queue_count, sizeof(queue_count)); netlink_attr(nlmsg, IFLA_NUM_RX_QUEUES, &queue_count, sizeof(queue_count)); netlink_nest(nlmsg, IFLA_LINKINFO); netlink_attr(nlmsg, IFLA_INFO_KIND, type, strlen(type)); } static void netlink_add_device(struct nlmsg* nlmsg, int sock, const char* type, const char* name) { netlink_add_device_impl(nlmsg, type, name, false); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_veth(struct nlmsg* nlmsg, int sock, const char* name, const char* peer) { netlink_add_device_impl(nlmsg, "veth", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); netlink_nest(nlmsg, VETH_INFO_PEER); nlmsg->pos += sizeof(struct ifinfomsg); netlink_attr(nlmsg, IFLA_IFNAME, peer, strlen(peer)); netlink_attr(nlmsg, IFLA_NUM_TX_QUEUES, &queue_count, sizeof(queue_count)); netlink_attr(nlmsg, IFLA_NUM_RX_QUEUES, &queue_count, sizeof(queue_count)); netlink_done(nlmsg); netlink_done(nlmsg); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_xfrm(struct nlmsg* nlmsg, int sock, const char* name) { netlink_add_device_impl(nlmsg, "xfrm", name, true); netlink_nest(nlmsg, IFLA_INFO_DATA); int if_id = 1; netlink_attr(nlmsg, 2, &if_id, sizeof(if_id)); netlink_done(nlmsg); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_hsr(struct nlmsg* nlmsg, int sock, const char* name, const char* slave1, const char* slave2) { netlink_add_device_impl(nlmsg, "hsr", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); int ifindex1 = if_nametoindex(slave1); netlink_attr(nlmsg, IFLA_HSR_SLAVE1, &ifindex1, sizeof(ifindex1)); int ifindex2 = if_nametoindex(slave2); netlink_attr(nlmsg, IFLA_HSR_SLAVE2, &ifindex2, sizeof(ifindex2)); netlink_done(nlmsg); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_linked(struct nlmsg* nlmsg, int sock, const char* type, const char* name, const char* link) { netlink_add_device_impl(nlmsg, type, name, false); netlink_done(nlmsg); int ifindex = if_nametoindex(link); netlink_attr(nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_vlan(struct nlmsg* nlmsg, int sock, const char* name, const char* link, uint16_t id, uint16_t proto) { netlink_add_device_impl(nlmsg, "vlan", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); netlink_attr(nlmsg, IFLA_VLAN_ID, &id, sizeof(id)); netlink_attr(nlmsg, IFLA_VLAN_PROTOCOL, &proto, sizeof(proto)); netlink_done(nlmsg); netlink_done(nlmsg); int ifindex = if_nametoindex(link); netlink_attr(nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_macvlan(struct nlmsg* nlmsg, int sock, const char* name, const char* link) { netlink_add_device_impl(nlmsg, "macvlan", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); uint32_t mode = MACVLAN_MODE_BRIDGE; netlink_attr(nlmsg, IFLA_MACVLAN_MODE, &mode, sizeof(mode)); netlink_done(nlmsg); netlink_done(nlmsg); int ifindex = if_nametoindex(link); netlink_attr(nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_geneve(struct nlmsg* nlmsg, int sock, const char* name, uint32_t vni, struct in_addr* addr4, struct in6_addr* addr6) { netlink_add_device_impl(nlmsg, "geneve", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); netlink_attr(nlmsg, IFLA_GENEVE_ID, &vni, sizeof(vni)); if (addr4) netlink_attr(nlmsg, IFLA_GENEVE_REMOTE, addr4, sizeof(*addr4)); if (addr6) netlink_attr(nlmsg, IFLA_GENEVE_REMOTE6, addr6, sizeof(*addr6)); netlink_done(nlmsg); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } #define IFLA_IPVLAN_FLAGS 2 #define IPVLAN_MODE_L3S 2 #undef IPVLAN_F_VEPA #define IPVLAN_F_VEPA 2 static void netlink_add_ipvlan(struct nlmsg* nlmsg, int sock, const char* name, const char* link, uint16_t mode, uint16_t flags) { netlink_add_device_impl(nlmsg, "ipvlan", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); netlink_attr(nlmsg, IFLA_IPVLAN_MODE, &mode, sizeof(mode)); netlink_attr(nlmsg, IFLA_IPVLAN_FLAGS, &flags, sizeof(flags)); netlink_done(nlmsg); netlink_done(nlmsg); int ifindex = if_nametoindex(link); netlink_attr(nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_device_change(struct nlmsg* nlmsg, int sock, const char* name, bool up, const char* master, const void* mac, int macsize, const char* new_name) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; hdr.ifi_index = if_nametoindex(name); netlink_init(nlmsg, RTM_NEWLINK, 0, &hdr, sizeof(hdr)); if (new_name) netlink_attr(nlmsg, IFLA_IFNAME, new_name, strlen(new_name)); if (master) { int ifindex = if_nametoindex(master); netlink_attr(nlmsg, IFLA_MASTER, &ifindex, sizeof(ifindex)); } if (macsize) netlink_attr(nlmsg, IFLA_ADDRESS, mac, macsize); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static int netlink_add_addr(struct nlmsg* nlmsg, int sock, const char* dev, const void* addr, int addrsize) { struct ifaddrmsg hdr; memset(&hdr, 0, sizeof(hdr)); hdr.ifa_family = addrsize == 4 ? AF_INET : AF_INET6; hdr.ifa_prefixlen = addrsize == 4 ? 24 : 120; hdr.ifa_scope = RT_SCOPE_UNIVERSE; hdr.ifa_index = if_nametoindex(dev); netlink_init(nlmsg, RTM_NEWADDR, NLM_F_CREATE | NLM_F_REPLACE, &hdr, sizeof(hdr)); netlink_attr(nlmsg, IFA_LOCAL, addr, addrsize); netlink_attr(nlmsg, IFA_ADDRESS, addr, addrsize); return netlink_send(nlmsg, sock); } static void netlink_add_addr4(struct nlmsg* nlmsg, int sock, const char* dev, const char* addr) { struct in_addr in_addr; inet_pton(AF_INET, addr, &in_addr); int err = netlink_add_addr(nlmsg, sock, dev, &in_addr, sizeof(in_addr)); if (err < 0) { } } static void netlink_add_addr6(struct nlmsg* nlmsg, int sock, const char* dev, const char* addr) { struct in6_addr in6_addr; inet_pton(AF_INET6, addr, &in6_addr); int err = netlink_add_addr(nlmsg, sock, dev, &in6_addr, sizeof(in6_addr)); if (err < 0) { } } static struct nlmsg nlmsg; #define DEVLINK_FAMILY_NAME "devlink" #define DEVLINK_CMD_PORT_GET 5 #define DEVLINK_ATTR_BUS_NAME 1 #define DEVLINK_ATTR_DEV_NAME 2 #define DEVLINK_ATTR_NETDEV_NAME 7 static struct nlmsg nlmsg2; static void initialize_devlink_ports(const char* bus_name, const char* dev_name, const char* netdev_prefix) { struct genlmsghdr genlhdr; int len, total_len, id, err, offset; uint16_t netdev_index; int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock == -1) exit(1); int rtsock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (rtsock == -1) exit(1); id = netlink_query_family_id(&nlmsg, sock, DEVLINK_FAMILY_NAME, true); if (id == -1) goto error; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = DEVLINK_CMD_PORT_GET; netlink_init(&nlmsg, id, NLM_F_DUMP, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, DEVLINK_ATTR_BUS_NAME, bus_name, strlen(bus_name) + 1); netlink_attr(&nlmsg, DEVLINK_ATTR_DEV_NAME, dev_name, strlen(dev_name) + 1); err = netlink_send_ext(&nlmsg, sock, id, &total_len, true); if (err < 0) { goto error; } offset = 0; netdev_index = 0; while ((len = netlink_next_msg(&nlmsg, offset, total_len)) != -1) { struct nlattr* attr = (struct nlattr*)(nlmsg.buf + offset + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg.buf + offset + len; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == DEVLINK_ATTR_NETDEV_NAME) { char* port_name; char netdev_name[IFNAMSIZ]; port_name = (char*)(attr + 1); snprintf(netdev_name, sizeof(netdev_name), "%s%d", netdev_prefix, netdev_index); netlink_device_change(&nlmsg2, rtsock, port_name, true, 0, 0, 0, netdev_name); break; } } offset += len; netdev_index++; } error: close(rtsock); close(sock); } #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); } #define DEV_IPV4 "172.20.20.%d" #define DEV_IPV6 "fe80::%02x" #define DEV_MAC 0x00aaaaaaaaaa static void netdevsim_add(unsigned int addr, unsigned int port_count) { write_file("/sys/bus/netdevsim/del_device", "%u", addr); if (write_file("/sys/bus/netdevsim/new_device", "%u %u", addr, port_count)) { char buf[32]; snprintf(buf, sizeof(buf), "netdevsim%d", addr); initialize_devlink_ports("netdevsim", buf, "netdevsim"); } } #define WG_GENL_NAME "wireguard" enum wg_cmd { WG_CMD_GET_DEVICE, WG_CMD_SET_DEVICE, }; enum wgdevice_attribute { WGDEVICE_A_UNSPEC, WGDEVICE_A_IFINDEX, WGDEVICE_A_IFNAME, WGDEVICE_A_PRIVATE_KEY, WGDEVICE_A_PUBLIC_KEY, WGDEVICE_A_FLAGS, WGDEVICE_A_LISTEN_PORT, WGDEVICE_A_FWMARK, WGDEVICE_A_PEERS, }; enum wgpeer_attribute { WGPEER_A_UNSPEC, WGPEER_A_PUBLIC_KEY, WGPEER_A_PRESHARED_KEY, WGPEER_A_FLAGS, WGPEER_A_ENDPOINT, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, WGPEER_A_LAST_HANDSHAKE_TIME, WGPEER_A_RX_BYTES, WGPEER_A_TX_BYTES, WGPEER_A_ALLOWEDIPS, WGPEER_A_PROTOCOL_VERSION, }; enum wgallowedip_attribute { WGALLOWEDIP_A_UNSPEC, WGALLOWEDIP_A_FAMILY, WGALLOWEDIP_A_IPADDR, WGALLOWEDIP_A_CIDR_MASK, }; static void netlink_wireguard_setup(void) { const char ifname_a[] = "wg0"; const char ifname_b[] = "wg1"; const char ifname_c[] = "wg2"; const char private_a[] = "\xa0\x5c\xa8\x4f\x6c\x9c\x8e\x38\x53\xe2\xfd\x7a\x70\xae\x0f\xb2\x0f\xa1" "\x52\x60\x0c\xb0\x08\x45\x17\x4f\x08\x07\x6f\x8d\x78\x43"; const char private_b[] = "\xb0\x80\x73\xe8\xd4\x4e\x91\xe3\xda\x92\x2c\x22\x43\x82\x44\xbb\x88\x5c" "\x69\xe2\x69\xc8\xe9\xd8\x35\xb1\x14\x29\x3a\x4d\xdc\x6e"; const char private_c[] = "\xa0\xcb\x87\x9a\x47\xf5\xbc\x64\x4c\x0e\x69\x3f\xa6\xd0\x31\xc7\x4a\x15" "\x53\xb6\xe9\x01\xb9\xff\x2f\x51\x8c\x78\x04\x2f\xb5\x42"; const char public_a[] = "\x97\x5c\x9d\x81\xc9\x83\xc8\x20\x9e\xe7\x81\x25\x4b\x89\x9f\x8e\xd9\x25" "\xae\x9f\x09\x23\xc2\x3c\x62\xf5\x3c\x57\xcd\xbf\x69\x1c"; const char public_b[] = "\xd1\x73\x28\x99\xf6\x11\xcd\x89\x94\x03\x4d\x7f\x41\x3d\xc9\x57\x63\x0e" "\x54\x93\xc2\x85\xac\xa4\x00\x65\xcb\x63\x11\xbe\x69\x6b"; const char public_c[] = "\xf4\x4d\xa3\x67\xa8\x8e\xe6\x56\x4f\x02\x02\x11\x45\x67\x27\x08\x2f\x5c" "\xeb\xee\x8b\x1b\xf5\xeb\x73\x37\x34\x1b\x45\x9b\x39\x22"; const uint16_t listen_a = 20001; const uint16_t listen_b = 20002; const uint16_t listen_c = 20003; const uint16_t af_inet = AF_INET; const uint16_t af_inet6 = AF_INET6; const struct sockaddr_in endpoint_b_v4 = { .sin_family = AF_INET, .sin_port = htons(listen_b), .sin_addr = {htonl(INADDR_LOOPBACK)}}; const struct sockaddr_in endpoint_c_v4 = { .sin_family = AF_INET, .sin_port = htons(listen_c), .sin_addr = {htonl(INADDR_LOOPBACK)}}; struct sockaddr_in6 endpoint_a_v6 = {.sin6_family = AF_INET6, .sin6_port = htons(listen_a)}; endpoint_a_v6.sin6_addr = in6addr_loopback; struct sockaddr_in6 endpoint_c_v6 = {.sin6_family = AF_INET6, .sin6_port = htons(listen_c)}; endpoint_c_v6.sin6_addr = in6addr_loopback; const struct in_addr first_half_v4 = {0}; const struct in_addr second_half_v4 = {(uint32_t)htonl(128 << 24)}; const struct in6_addr first_half_v6 = {{{0}}}; const struct in6_addr second_half_v6 = {{{0x80}}}; const uint8_t half_cidr = 1; const uint16_t persistent_keepalives[] = {1, 3, 7, 9, 14, 19}; struct genlmsghdr genlhdr = {.cmd = WG_CMD_SET_DEVICE, .version = 1}; int sock; int id, err; sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock == -1) { return; } id = netlink_query_family_id(&nlmsg, sock, WG_GENL_NAME, true); if (id == -1) goto error; netlink_init(&nlmsg, id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, WGDEVICE_A_IFNAME, ifname_a, strlen(ifname_a) + 1); netlink_attr(&nlmsg, WGDEVICE_A_PRIVATE_KEY, private_a, 32); netlink_attr(&nlmsg, WGDEVICE_A_LISTEN_PORT, &listen_a, 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGDEVICE_A_PEERS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_b, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_b_v4, sizeof(endpoint_b_v4)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[0], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v4, sizeof(first_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v6, sizeof(first_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_c, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_c_v6, sizeof(endpoint_c_v6)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[1], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v4, sizeof(second_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v6, sizeof(second_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); err = netlink_send(&nlmsg, sock); if (err < 0) { } netlink_init(&nlmsg, id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, WGDEVICE_A_IFNAME, ifname_b, strlen(ifname_b) + 1); netlink_attr(&nlmsg, WGDEVICE_A_PRIVATE_KEY, private_b, 32); netlink_attr(&nlmsg, WGDEVICE_A_LISTEN_PORT, &listen_b, 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGDEVICE_A_PEERS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_a, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_a_v6, sizeof(endpoint_a_v6)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[2], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v4, sizeof(first_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v6, sizeof(first_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_c, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_c_v4, sizeof(endpoint_c_v4)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[3], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v4, sizeof(second_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v6, sizeof(second_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); err = netlink_send(&nlmsg, sock); if (err < 0) { } netlink_init(&nlmsg, id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, WGDEVICE_A_IFNAME, ifname_c, strlen(ifname_c) + 1); netlink_attr(&nlmsg, WGDEVICE_A_PRIVATE_KEY, private_c, 32); netlink_attr(&nlmsg, WGDEVICE_A_LISTEN_PORT, &listen_c, 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGDEVICE_A_PEERS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_a, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_a_v6, sizeof(endpoint_a_v6)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[4], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v4, sizeof(first_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v6, sizeof(first_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_b, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_b_v4, sizeof(endpoint_b_v4)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[5], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v4, sizeof(second_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v6, sizeof(second_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); err = netlink_send(&nlmsg, sock); if (err < 0) { } error: close(sock); } static void initialize_netdevices(void) { char netdevsim[16]; sprintf(netdevsim, "netdevsim%d", (int)procid); struct { const char* type; const char* dev; } devtypes[] = { {"ip6gretap", "ip6gretap0"}, {"bridge", "bridge0"}, {"vcan", "vcan0"}, {"bond", "bond0"}, {"team", "team0"}, {"dummy", "dummy0"}, {"nlmon", "nlmon0"}, {"caif", "caif0"}, {"batadv", "batadv0"}, {"vxcan", "vxcan1"}, {"veth", 0}, {"wireguard", "wg0"}, {"wireguard", "wg1"}, {"wireguard", "wg2"}, }; const char* devmasters[] = {"bridge", "bond", "team", "batadv"}; struct { const char* name; int macsize; bool noipv6; } devices[] = { {"lo", ETH_ALEN}, {"sit0", 0}, {"bridge0", ETH_ALEN}, {"vcan0", 0, true}, {"tunl0", 0}, {"gre0", 0}, {"gretap0", ETH_ALEN}, {"ip_vti0", 0}, {"ip6_vti0", 0}, {"ip6tnl0", 0}, {"ip6gre0", 0}, {"ip6gretap0", ETH_ALEN}, {"erspan0", ETH_ALEN}, {"bond0", ETH_ALEN}, {"veth0", ETH_ALEN}, {"veth1", ETH_ALEN}, {"team0", ETH_ALEN}, {"veth0_to_bridge", ETH_ALEN}, {"veth1_to_bridge", ETH_ALEN}, {"veth0_to_bond", ETH_ALEN}, {"veth1_to_bond", ETH_ALEN}, {"veth0_to_team", ETH_ALEN}, {"veth1_to_team", ETH_ALEN}, {"veth0_to_hsr", ETH_ALEN}, {"veth1_to_hsr", ETH_ALEN}, {"hsr0", 0}, {"dummy0", ETH_ALEN}, {"nlmon0", 0}, {"vxcan0", 0, true}, {"vxcan1", 0, true}, {"caif0", ETH_ALEN}, {"batadv0", ETH_ALEN}, {netdevsim, ETH_ALEN}, {"xfrm0", ETH_ALEN}, {"veth0_virt_wifi", ETH_ALEN}, {"veth1_virt_wifi", ETH_ALEN}, {"virt_wifi0", ETH_ALEN}, {"veth0_vlan", ETH_ALEN}, {"veth1_vlan", ETH_ALEN}, {"vlan0", ETH_ALEN}, {"vlan1", ETH_ALEN}, {"macvlan0", ETH_ALEN}, {"macvlan1", ETH_ALEN}, {"ipvlan0", ETH_ALEN}, {"ipvlan1", ETH_ALEN}, {"veth0_macvtap", ETH_ALEN}, {"veth1_macvtap", ETH_ALEN}, {"macvtap0", ETH_ALEN}, {"macsec0", ETH_ALEN}, {"veth0_to_batadv", ETH_ALEN}, {"veth1_to_batadv", ETH_ALEN}, {"batadv_slave_0", ETH_ALEN}, {"batadv_slave_1", ETH_ALEN}, {"geneve0", ETH_ALEN}, {"geneve1", ETH_ALEN}, {"wg0", 0}, {"wg1", 0}, {"wg2", 0}, }; int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock == -1) exit(1); unsigned i; for (i = 0; i < sizeof(devtypes) / sizeof(devtypes[0]); i++) netlink_add_device(&nlmsg, sock, devtypes[i].type, devtypes[i].dev); for (i = 0; i < sizeof(devmasters) / (sizeof(devmasters[0])); i++) { char master[32], slave0[32], veth0[32], slave1[32], veth1[32]; sprintf(slave0, "%s_slave_0", devmasters[i]); sprintf(veth0, "veth0_to_%s", devmasters[i]); netlink_add_veth(&nlmsg, sock, slave0, veth0); sprintf(slave1, "%s_slave_1", devmasters[i]); sprintf(veth1, "veth1_to_%s", devmasters[i]); netlink_add_veth(&nlmsg, sock, slave1, veth1); sprintf(master, "%s0", devmasters[i]); netlink_device_change(&nlmsg, sock, slave0, false, master, 0, 0, NULL); netlink_device_change(&nlmsg, sock, slave1, false, master, 0, 0, NULL); } netlink_add_xfrm(&nlmsg, sock, "xfrm0"); netlink_device_change(&nlmsg, sock, "bridge_slave_0", true, 0, 0, 0, NULL); netlink_device_change(&nlmsg, sock, "bridge_slave_1", true, 0, 0, 0, NULL); netlink_add_veth(&nlmsg, sock, "hsr_slave_0", "veth0_to_hsr"); netlink_add_veth(&nlmsg, sock, "hsr_slave_1", "veth1_to_hsr"); netlink_add_hsr(&nlmsg, sock, "hsr0", "hsr_slave_0", "hsr_slave_1"); netlink_device_change(&nlmsg, sock, "hsr_slave_0", true, 0, 0, 0, NULL); netlink_device_change(&nlmsg, sock, "hsr_slave_1", true, 0, 0, 0, NULL); netlink_add_veth(&nlmsg, sock, "veth0_virt_wifi", "veth1_virt_wifi"); netlink_add_linked(&nlmsg, sock, "virt_wifi", "virt_wifi0", "veth1_virt_wifi"); netlink_add_veth(&nlmsg, sock, "veth0_vlan", "veth1_vlan"); netlink_add_vlan(&nlmsg, sock, "vlan0", "veth0_vlan", 0, htons(ETH_P_8021Q)); netlink_add_vlan(&nlmsg, sock, "vlan1", "veth0_vlan", 1, htons(ETH_P_8021AD)); netlink_add_macvlan(&nlmsg, sock, "macvlan0", "veth1_vlan"); netlink_add_macvlan(&nlmsg, sock, "macvlan1", "veth1_vlan"); netlink_add_ipvlan(&nlmsg, sock, "ipvlan0", "veth0_vlan", IPVLAN_MODE_L2, 0); netlink_add_ipvlan(&nlmsg, sock, "ipvlan1", "veth0_vlan", IPVLAN_MODE_L3S, IPVLAN_F_VEPA); netlink_add_veth(&nlmsg, sock, "veth0_macvtap", "veth1_macvtap"); netlink_add_linked(&nlmsg, sock, "macvtap", "macvtap0", "veth0_macvtap"); netlink_add_linked(&nlmsg, sock, "macsec", "macsec0", "veth1_macvtap"); char addr[32]; sprintf(addr, DEV_IPV4, 14 + 10); struct in_addr geneve_addr4; if (inet_pton(AF_INET, addr, &geneve_addr4) <= 0) exit(1); struct in6_addr geneve_addr6; if (inet_pton(AF_INET6, "fc00::01", &geneve_addr6) <= 0) exit(1); netlink_add_geneve(&nlmsg, sock, "geneve0", 0, &geneve_addr4, 0); netlink_add_geneve(&nlmsg, sock, "geneve1", 1, 0, &geneve_addr6); netdevsim_add((int)procid, 4); netlink_wireguard_setup(); for (i = 0; i < sizeof(devices) / (sizeof(devices[0])); i++) { char addr[32]; sprintf(addr, DEV_IPV4, i + 10); netlink_add_addr4(&nlmsg, sock, devices[i].name, addr); if (!devices[i].noipv6) { sprintf(addr, DEV_IPV6, i + 10); netlink_add_addr6(&nlmsg, sock, devices[i].name, addr); } uint64_t macaddr = DEV_MAC + ((i + 10ull) << 40); netlink_device_change(&nlmsg, sock, devices[i].name, true, 0, &macaddr, devices[i].macsize, NULL); } close(sock); } static void initialize_netdevices_init(void) { int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock == -1) exit(1); struct { const char* type; int macsize; bool noipv6; bool noup; } devtypes[] = { {"nr", 7, true}, {"rose", 5, true, true}, }; unsigned i; for (i = 0; i < sizeof(devtypes) / sizeof(devtypes[0]); i++) { char dev[32], addr[32]; sprintf(dev, "%s%d", devtypes[i].type, (int)procid); sprintf(addr, "172.30.%d.%d", i, (int)procid + 1); netlink_add_addr4(&nlmsg, sock, dev, addr); if (!devtypes[i].noipv6) { sprintf(addr, "fe88::%02x:%02x", i, (int)procid + 1); netlink_add_addr6(&nlmsg, sock, dev, addr); } int macsize = devtypes[i].macsize; uint64_t macaddr = 0xbbbbbb + ((unsigned long long)i << (8 * (macsize - 2))) + (procid << (8 * (macsize - 1))); netlink_device_change(&nlmsg, sock, dev, !devtypes[i].noup, 0, &macaddr, macsize, NULL); } close(sock); } #define MAX_FDS 30 //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, 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 mount_cgroups(const char* dir, const char** controllers, int count) { if (mkdir(dir, 0777)) { return; } char enabled[128] = {0}; int i = 0; for (; i < count; i++) { if (mount("none", dir, "cgroup", 0, controllers[i])) { continue; } umount(dir); strcat(enabled, ","); strcat(enabled, controllers[i]); } if (enabled[0] == 0) { if (rmdir(dir) && errno != EBUSY) exit(1); return; } if (mount("none", dir, "cgroup", 0, enabled + 1)) { if (rmdir(dir) && errno != EBUSY) exit(1); } if (chmod(dir, 0777)) { } } static void mount_cgroups2(const char** controllers, int count) { if (mkdir("/syzcgroup/unified", 0777)) { return; } if (mount("none", "/syzcgroup/unified", "cgroup2", 0, NULL)) { if (rmdir("/syzcgroup/unified") && errno != EBUSY) exit(1); return; } if (chmod("/syzcgroup/unified", 0777)) { } int control = open("/syzcgroup/unified/cgroup.subtree_control", O_WRONLY); if (control == -1) return; int i; for (i = 0; i < count; i++) if (write(control, controllers[i], strlen(controllers[i])) < 0) { } close(control); } static void setup_cgroups() { const char* unified_controllers[] = {"+cpu", "+io", "+pids"}; const char* net_controllers[] = {"net", "net_prio", "devices", "blkio", "freezer"}; const char* cpu_controllers[] = {"cpuset", "cpuacct", "hugetlb", "rlimit", "memory"}; if (mkdir("/syzcgroup", 0777)) { return; } mount_cgroups2(unified_controllers, sizeof(unified_controllers) / sizeof(unified_controllers[0])); mount_cgroups("/syzcgroup/net", net_controllers, sizeof(net_controllers) / sizeof(net_controllers[0])); mount_cgroups("/syzcgroup/cpu", cpu_controllers, sizeof(cpu_controllers) / sizeof(cpu_controllers[0])); write_file("/syzcgroup/cpu/cgroup.clone_children", "1"); write_file("/syzcgroup/cpu/cpuset.memory_pressure_enabled", "1"); } static void setup_cgroups_loop() { int pid = getpid(); char file[128]; char cgroupdir[64]; snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/unified/syz%llu", procid); if (mkdir(cgroupdir, 0777)) { } snprintf(file, sizeof(file), "%s/pids.max", cgroupdir); write_file(file, "32"); snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir); write_file(file, "%d", pid); snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/cpu/syz%llu", procid); if (mkdir(cgroupdir, 0777)) { } snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir); write_file(file, "%d", pid); snprintf(file, sizeof(file), "%s/memory.soft_limit_in_bytes", cgroupdir); write_file(file, "%d", 299 << 20); snprintf(file, sizeof(file), "%s/memory.limit_in_bytes", cgroupdir); write_file(file, "%d", 300 << 20); snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/net/syz%llu", procid); if (mkdir(cgroupdir, 0777)) { } snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir); write_file(file, "%d", pid); } static void setup_cgroups_test() { char cgroupdir[64]; snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/unified/syz%llu", procid); if (symlink(cgroupdir, "./cgroup")) { } snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/cpu/syz%llu", procid); if (symlink(cgroupdir, "./cgroup.cpu")) { } snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/net/syz%llu", procid); if (symlink(cgroupdir, "./cgroup.net")) { } } static void initialize_cgroups() { if (mkdir("./syz-tmp/newroot/syzcgroup", 0700)) exit(1); if (mkdir("./syz-tmp/newroot/syzcgroup/unified", 0700)) exit(1); if (mkdir("./syz-tmp/newroot/syzcgroup/cpu", 0700)) exit(1); if (mkdir("./syz-tmp/newroot/syzcgroup/net", 0700)) exit(1); unsigned bind_mount_flags = MS_BIND | MS_REC | MS_PRIVATE; if (mount("/syzcgroup/unified", "./syz-tmp/newroot/syzcgroup/unified", NULL, bind_mount_flags, NULL)) { } if (mount("/syzcgroup/cpu", "./syz-tmp/newroot/syzcgroup/cpu", NULL, bind_mount_flags, NULL)) { } if (mount("/syzcgroup/net", "./syz-tmp/newroot/syzcgroup/net", NULL, bind_mount_flags, NULL)) { } } 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); initialize_cgroups(); if (mkdir("./syz-tmp/pivot", 0777)) exit(1); if (syscall(SYS_pivot_root, "./syz-tmp", "./syz-tmp/pivot")) { if (chdir("./syz-tmp")) exit(1); } else { if (chdir("/")) exit(1); if (umount2("./pivot", MNT_DETACH)) exit(1); } if (chroot("./newroot")) exit(1); if (chdir("/")) exit(1); setup_gadgetfs(); setup_binderfs(); setup_fusectl(); } static void setup_gadgetfs() { if (mkdir("/dev/gadgetfs", 0777)) { } if (mount("gadgetfs", "/dev/gadgetfs", "gadgetfs", 0, NULL)) { } } static void setup_fusectl() { if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) { } } static void setup_binderfs() { if (mkdir("/dev/binderfs", 0777)) { } if (mount("binder", "/dev/binderfs", "binder", 0, NULL)) { } } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); if (getppid() == 1) exit(1); struct rlimit rlim; rlim.rlim_cur = rlim.rlim_max = (200 << 20); setrlimit(RLIMIT_AS, &rlim); rlim.rlim_cur = rlim.rlim_max = 32 << 20; setrlimit(RLIMIT_MEMLOCK, &rlim); rlim.rlim_cur = rlim.rlim_max = 136 << 20; setrlimit(RLIMIT_FSIZE, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_STACK, &rlim); rlim.rlim_cur = rlim.rlim_max = 128 << 20; setrlimit(RLIMIT_CORE, &rlim); rlim.rlim_cur = rlim.rlim_max = 256; setrlimit(RLIMIT_NOFILE, &rlim); if (unshare(CLONE_NEWNS)) { } if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL)) { } if (unshare(CLONE_NEWIPC)) { } if (unshare(0x02000000)) { } if (unshare(CLONE_NEWUTS)) { } if (unshare(CLONE_SYSVSEM)) { } typedef struct { const char* name; const char* value; } sysctl_t; static const sysctl_t sysctls[] = { {"/proc/sys/kernel/shmmax", "16777216"}, {"/proc/sys/kernel/shmall", "536870912"}, {"/proc/sys/kernel/shmmni", "1024"}, {"/proc/sys/kernel/msgmax", "8192"}, {"/proc/sys/kernel/msgmni", "1024"}, {"/proc/sys/kernel/msgmnb", "1024"}, {"/proc/sys/kernel/sem", "1024 1048576 500 1024"}, }; unsigned i; for (i = 0; i < sizeof(sysctls) / sizeof(sysctls[0]); i++) write_file(sysctls[i].name, sysctls[i].value); } static int wait_for_loop(int pid) { if (pid < 0) exit(1); int status = 0; while (waitpid(-1, &status, __WALL) != pid) { } return WEXITSTATUS(status); } static void drop_caps(void) { struct __user_cap_header_struct cap_hdr = {}; struct __user_cap_data_struct cap_data[2] = {}; cap_hdr.version = _LINUX_CAPABILITY_VERSION_3; cap_hdr.pid = getpid(); if (syscall(SYS_capget, &cap_hdr, &cap_data)) exit(1); const int drop = (1 << CAP_SYS_PTRACE) | (1 << CAP_SYS_NICE); cap_data[0].effective &= ~drop; cap_data[0].permitted &= ~drop; cap_data[0].inheritable &= ~drop; if (syscall(SYS_capset, &cap_hdr, &cap_data)) exit(1); } static int do_sandbox_none(void) { if (unshare(CLONE_NEWPID)) { } int pid = fork(); if (pid != 0) return wait_for_loop(pid); sandbox_common(); drop_caps(); initialize_netdevices_init(); if (unshare(CLONE_NEWNET)) { } write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535"); initialize_netdevices(); initialize_wifi_devices(); sandbox_common_mount_tmpfs(); loop(); exit(1); } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void setup_loop() { setup_cgroups_loop(); } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); setup_cgroups_test(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void close_fds() { for (int fd = 3; fd < MAX_FDS; fd++) close(fd); } static const char* setup_usb() { if (chmod("/dev/raw-gadget", 0666)) return "failed to chmod /dev/raw-gadget"; return NULL; } static void setup_sysctl() { int cad_pid = fork(); if (cad_pid < 0) exit(1); if (cad_pid == 0) { for (;;) sleep(100); } char tmppid[32]; snprintf(tmppid, sizeof(tmppid), "%d", cad_pid); struct { const char* name; const char* data; } files[] = { {"/sys/kernel/debug/x86/nmi_longest_ns", "10000000000"}, {"/proc/sys/kernel/hung_task_check_interval_secs", "20"}, {"/proc/sys/net/core/bpf_jit_kallsyms", "1"}, {"/proc/sys/net/core/bpf_jit_harden", "0"}, {"/proc/sys/kernel/kptr_restrict", "0"}, {"/proc/sys/kernel/softlockup_all_cpu_backtrace", "1"}, {"/proc/sys/fs/mount-max", "100"}, {"/proc/sys/vm/oom_dump_tasks", "0"}, {"/proc/sys/debug/exception-trace", "0"}, {"/proc/sys/kernel/printk", "7 4 1 3"}, {"/proc/sys/kernel/keys/gc_delay", "1"}, {"/proc/sys/vm/oom_kill_allocating_task", "1"}, {"/proc/sys/kernel/ctrl-alt-del", "0"}, {"/proc/sys/kernel/cad_pid", tmppid}, }; for (size_t i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].name, files[i].data)) { } } kill(cad_pid, SIGKILL); while (waitpid(cad_pid, NULL, 0) != cad_pid) ; } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { setup_loop(); int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); close_fds(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } void execute_one(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 62 75 73 00} (length 0x6) // } // flags: mount_flags = 0xa (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYRES8: ANYRES8 (resource) // } // union ANYUNION { // ANYRES32: ANYRES32 (resource) // } // union ANYUNION { // ANYRES32: ANYRES32 (resource) // } // union ANYUNION { // ANYRES64: ANYRES64 (resource) // } // union ANYUNION { // ANYRES8: ANYRES8 (resource) // } // union ANYUNION { // ANYRES32: ANYRES32 (resource) // } // union ANYUNION { // ANYBLOB: buffer: {16 40 05 f8 25 5a 6a e4 2d a1 1f 1a 96 60 88 f6 // 55 fe 04 d2 74 a2 7e 6b 86 49 f9 89 77 cc 3e 1a 7e e4 ec 20 a6 c6 // 65 70 30 c8 fb 93 a4 70 88 1d c6 36 0c 64 4f 74 5a 00 b7 10 51 50 // cf ce b7 d7 0c db 5a cf 26 f6 f4 18 c3 9d 93 3e 5b 27 fc eb 0f 1e // 55 99 33 0f 45 15 c7 f6 46 5e db e2 f1 b5 2b 7f a7 c8 03 46 cf 22 // 4a fb 39 67 12 d2 84 56 ad 91 5f de 5f c1 32 a3 fe cb b7 ef 5d c5 // 67 79 73 ce 84 9d 33 0f 8d 32 18 28 95 37 14 3e 8b 47 aa ea f1 69 // b5 3f d6 20 d9 28 48 0c f9 0c d1 fc 8b cc d9 3a 02 69 37 58 84 f6 // 04 2b 67 6a c3 c9 b4 8c d6 08 40 53 fe 44 3d 15 e6 67 64 68 9f 8c // 09 dd 4c 7b 20 37 21 d5 66 7d ff 0d 67 3e 94 92 d7 f9 d5 90 fc 9e // 0e 2c c9 93 98 2b 31 6f 41 9f b6 d7 d0 e4 21 e5 b4 70 66 83 5b 3b} // (length 0xec) // } // union ANYUNION { // ANYRES8: ANYRES8 (resource) // } // union ANYUNION { // ANYRES32: ANYRES32 (resource) // } // } // } // chdir: int8 = 0xfe (1 bytes) // size: len = 0x6198 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x6198) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x2000000002c0, "jfs\000", 4)); NONFAILING(memcpy((void*)0x200000000040, "./bus\000", 6)); NONFAILING(*(uint8_t*)0x200000000140 = 0); NONFAILING(*(uint32_t*)0x200000000141 = -1); NONFAILING(*(uint32_t*)0x200000000145 = -1); NONFAILING(*(uint64_t*)0x200000000149 = -1); NONFAILING(*(uint8_t*)0x200000000151 = -1); NONFAILING(*(uint32_t*)0x200000000152 = -1); NONFAILING(memcpy( (void*)0x200000000156, "\x16\x40\x05\xf8\x25\x5a\x6a\xe4\x2d\xa1\x1f\x1a\x96\x60\x88\xf6\x55\xfe" "\x04\xd2\x74\xa2\x7e\x6b\x86\x49\xf9\x89\x77\xcc\x3e\x1a\x7e\xe4\xec\x20" "\xa6\xc6\x65\x70\x30\xc8\xfb\x93\xa4\x70\x88\x1d\xc6\x36\x0c\x64\x4f\x74" "\x5a\x00\xb7\x10\x51\x50\xcf\xce\xb7\xd7\x0c\xdb\x5a\xcf\x26\xf6\xf4\x18" "\xc3\x9d\x93\x3e\x5b\x27\xfc\xeb\x0f\x1e\x55\x99\x33\x0f\x45\x15\xc7\xf6" "\x46\x5e\xdb\xe2\xf1\xb5\x2b\x7f\xa7\xc8\x03\x46\xcf\x22\x4a\xfb\x39\x67" "\x12\xd2\x84\x56\xad\x91\x5f\xde\x5f\xc1\x32\xa3\xfe\xcb\xb7\xef\x5d\xc5" "\x67\x79\x73\xce\x84\x9d\x33\x0f\x8d\x32\x18\x28\x95\x37\x14\x3e\x8b\x47" "\xaa\xea\xf1\x69\xb5\x3f\xd6\x20\xd9\x28\x48\x0c\xf9\x0c\xd1\xfc\x8b\xcc" "\xd9\x3a\x02\x69\x37\x58\x84\xf6\x04\x2b\x67\x6a\xc3\xc9\xb4\x8c\xd6\x08" "\x40\x53\xfe\x44\x3d\x15\xe6\x67\x64\x68\x9f\x8c\x09\xdd\x4c\x7b\x20\x37" "\x21\xd5\x66\x7d\xff\x0d\x67\x3e\x94\x92\xd7\xf9\xd5\x90\xfc\x9e\x0e\x2c" "\xc9\x93\x98\x2b\x31\x6f\x41\x9f\xb6\xd7\xd0\xe4\x21\xe5\xb4\x70\x66\x83" "\x5b\x3b", 236)); NONFAILING(*(uint8_t*)0x200000000242 = -1); NONFAILING(*(uint32_t*)0x200000000243 = -1); NONFAILING(memcpy( (void*)0x200000000300, "\x78\x9c\xec\xdd\xcb\x6f\x1d\x57\x1d\x07\xf0\xdf\x7d\xfa\x51\x9a\x5a\x5d" "\x54\x25\x42\xc8\x4d\xcb\xa3\x94\x26\x71\x52\x42\xa0\x40\xdb\x05\x2c\xd8" "\x74\x81\xb2\x45\x89\x5c\xb7\x8a\x48\x01\x25\x01\xa5\x95\x45\x5c\x79\xc3" "\x82\x15\x7f\x01\x08\x89\x25\x42\x2c\x11\x0b\xfe\x80\x2e\xd8\xb2\x63\xc5" "\x8a\x48\x36\x12\xa8\x2b\x06\x8d\x7d\x4e\x3c\x77\x72\x6f\xed\xc4\xf6\x9d" "\x6b\xcf\xe7\x23\x39\x33\xbf\x39\x73\xed\x33\xf7\x7b\x9f\x99\xc7\x09\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x20\xbe\xff\xbd\x1f\xac" "\x74\x22\xe2\xfa\xcf\xd3\x82\xa5\x88\xcf\x44\x2f\xa2\x1b\xb1\x50\xd6\xcb" "\x11\xb1\xb0\xbc\x94\xd7\xef\x47\xc4\xf3\xb1\xd3\x1c\xcf\x45\xc4\x60\x2e" "\xa2\xbc\xfd\xce\x3f\xcf\x44\xbc\x16\x11\x1f\x9f\x89\xd8\xda\x5e\x5f\x2d" "\x17\x5f\x3a\x60\x3f\xbe\xfb\xc7\xbf\xff\xee\x87\x4f\xbd\xfd\xb7\x3f\x0c" "\x2e\xfc\xf7\x4f\x77\x7b\xaf\x4f\x5a\xef\xde\xbd\x5f\xfd\xe7\xcf\xf7\x0f" "\xb7\xcd\x00\x00\x00\xd0\x36\x45\x51\x14\x9d\xf4\x35\xff\x6c\xfa\x7e\xdf" "\x6d\xba\x53\x00\xc0\x54\xe4\xf7\xff\x22\xc9\xcb\x4f\x7d\xfd\xeb\x7f\xbe" "\xfd\x97\x59\xea\x8f\x5a\xad\x56\xab\xd5\x53\xa8\xab\x8a\xf1\xee\x57\x8b" "\x88\xd8\xa8\xde\xa6\xfc\xcc\x60\x77\x3c\x00\x9c\x30\x1b\xf1\x49\xd3\x5d" "\xa0\x41\xf2\x6f\xb5\x7e\x44\x3c\xd5\x74\x27\x80\x99\xd6\x69\xba\x03\x1c" "\x8b\xad\xed\xf5\xd5\x4e\xca\xb7\x53\x7d\x3f\x58\xde\x6d\xcf\xc7\x82\x8c" "\xe4\xbf\xd1\x79\x78\x7e\xc7\xa4\xe9\x7e\xea\xc7\x98\x4c\xeb\xf1\xb5\x19" "\xbd\x78\x76\x42\x7f\x16\xa6\xd4\x87\x59\x92\xf3\xef\xd6\xf3\xbf\xbe\xdb" "\x3e\x4c\xeb\x1d\x77\xfe\xd3\x32\x29\xff\xe1\xee\xa9\x4f\xad\x93\xf3\xef" "\xd5\xf3\xaf\x39\x3d\xf9\x77\xc7\xe6\xdf\x56\x39\xff\xfe\x63\xe5\xdf\x93" "\x3f\x00\x00\x00\x00\x00\xcc\xb0\xfc\xff\xff\x4b\x0d\xef\xff\x9d\x3b\xfc" "\xa6\x1c\xc8\xa7\xed\xff\x5d\x9e\x52\x1f\x00\x00\x00\x00\x00\x00\x00\xe0" "\xa8\x1d\x76\xfc\xbf\x87\x8c\xff\x07\x00\x00\x00\x33\xab\xfc\xae\x5e\xfa" "\xcd\x99\xbd\x65\x93\xae\xc5\x56\x2e\xbf\xd6\x89\x78\xba\xb6\x3e\xd0\x32" "\xe9\x64\x99\xc5\xa6\xfb\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6d" "\xd2\xdf\x3d\x86\xf7\x5a\x27\x62\x10\x11\x4f\x2f\x2e\x16\x45\x51\xfe\x54" "\xd5\xeb\xc7\x75\xd8\xdb\x9f\x74\x6d\xdf\x7e\x68\xb3\xa6\x5f\xe4\x01\x00" "\x60\xd7\xc7\x67\x6a\xe7\xf2\x77\x22\xe6\x23\xe2\x5a\xba\xd6\xdf\x60\x71" "\x71\xb1\x28\xe6\x17\x16\x8b\xc5\x62\x61\x2e\x7f\x9e\x1d\xce\xcd\x17\x0b" "\x95\xef\xb5\x79\x5a\x2e\x9b\x1b\x1e\xe0\x03\x71\x7f\x58\x94\xbf\x6c\xbe" "\x72\xbb\xaa\xfd\xbe\x2f\xef\xd7\x5e\xff\x7d\xe5\xdf\x1a\x16\xbd\x03\x74" "\xec\x88\x0c\xd2\xbd\x39\xa1\xb9\xa1\xb0\x01\x20\xd9\x7d\x37\xda\xf2\x8e" "\x74\xca\x14\xc5\x33\x93\x3e\x7c\xc0\x08\xcf\xff\x53\x68\x29\x96\x9a\x7e" "\x5c\x31\xfb\x9a\x7e\x98\x02\x00\x00\x00\xc7\xaf\x28\x8a\xa2\x93\x2e\xe7" "\x7d\x36\xed\xf3\xef\x36\xdd\x29\x00\x60\x2a\xf2\xfb\x7f\x7d\xbf\xc0\xa1" "\xea\xee\x84\xf6\x88\xa3\xf9\xfd\x6a\xb5\x5a\xad\x56\xab\x9f\xa8\xae\x2a" "\xc6\xbb\x5f\x2d\x22\x62\xa3\x7a\x9b\xf2\x33\x83\xe1\xf8\x01\xe0\x84\xd9" "\x88\x4f\x9a\xee\x02\x0d\x92\x7f\xab\xf5\x23\xe2\xf9\xa6\x3b\x01\xcc\xb4" "\x4e\xd3\x1d\xe0\x58\x6c\x6d\xaf\xaf\x76\x52\xbe\x9d\xea\xfb\x41\x1a\xdf" "\x3d\x1f\x0b\x32\x92\xff\x46\x67\xe7\x76\xf9\xf6\xe3\xa6\xfb\xa9\x1f\x63" "\x32\xad\xc7\xd7\x66\xf4\xe2\xd9\x09\xfd\x79\x6e\x4a\x7d\x98\x25\x39\xff" "\x6e\x3d\xff\xeb\xbb\xed\xc3\xb4\xde\x71\xe7\x3f\x2d\x93\xf2\x1f\xee\x9c" "\x32\xd7\x3e\x39\xff\x5e\x3d\xff\x9a\xd3\x93\x7f\x77\x6c\xfe\x6d\x95\xf3" "\xef\x3f\x56\xfe\x3d\xf9\x03\x00\x00\x00\x00\xc0\x0c\xcb\xff\xff\xbf\x64" "\xff\x6f\xde\x64\x00\x00\x00\x00\x00\x00\x00\x38\x71\xb6\xb6\xd7\x57\xf3" "\x79\xaf\x79\xff\xff\xe7\xc6\xac\xe7\xfc\xcf\xd3\x29\xe7\xdf\x79\xdc\xfc" "\x17\xd2\xbc\xfc\x4f\xb4\x9c\x7f\xb7\x96\xff\x97\x6b\xeb\xf5\x2a\xf3\x0f" "\xde\xda\x7b\xfe\xff\x7b\x7b\x7d\xf5\xf7\x77\xff\xf5\xd9\x3c\x3d\x68\xfe" "\x73\x79\xa6\x93\x1e\x59\x9d\xf4\x88\xe8\xa4\xbf\xd4\xe9\xa7\xe9\x61\xb6" "\xee\x51\x9b\x83\xde\xb0\xfc\x4b\x83\x4e\xb7\xd7\x4f\xc7\xfc\x14\x83\x77" "\xe3\x66\xdc\x8a\xb5\xb8\x38\xb2\x6e\x37\xdd\x1f\x7b\xed\x2b\x23\xed\x65" "\x4f\x07\x23\xed\x97\x46\xda\xfb\x8f\xb4\x5f\x1e\x69\x1f\xa4\xeb\x0e\x14" "\x0b\xb9\xfd\x7c\xac\xc6\x4f\xe2\x56\xbc\xb3\xd3\x3e\x1c\xbd\xdb\xc7\x9a" "\xdf\xe7\xfe\x29\xf6\x69\xcf\xf9\xf7\xbc\xfe\xb7\x52\xce\xbf\x5f\xf9\x29" "\xf3\x5f\x4c\xed\x9d\xda\xb4\xf4\xe0\xa3\xee\x23\xcf\xfb\xea\x74\xdc\xdf" "\x79\xf3\xe6\xe7\x7f\x79\xf1\xf8\x37\x67\x5f\x9b\xd1\x7b\xb8\x6d\x55\xe5" "\xf6\x9d\x6b\xa0\x3f\x3b\xf7\xc9\x53\xc3\xf8\xd9\x9d\xb5\xdb\xe7\xef\xdd" "\xb8\x7b\xf7\xf6\x4a\xa4\xc9\xc8\xd2\x4b\x91\x26\x47\x2c\xe7\x3f\xd8\xf9" "\x99\xdb\x7b\xfd\x7f\x71\xb7\x3d\xbf\x00\x55\x9f\xaf\x0f\x3e\x1a\x3e\x76" "\xfe\xb3\x62\x33\xfa\x13\xf3\x7f\xb1\x32\x5f\x6e\xef\xcb\x53\xee\x5b\x13" "\x72\xfe\xc3\xf4\x93\xf3\x7f\x27\xb5\x8f\x7f\xfe\x9f\xe4\xfc\x27\x3f\xff" "\x5f\x69\xa0\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x69" "\x8a\xa2\xd8\x39\x45\xf4\xcd\x88\xb8\x92\xce\xff\x69\xea\xdc\x4c\x00\x60" "\xba\xf2\xfb\x7f\x91\xe4\xe5\x6a\xb5\x7a\xa4\x8e\x7c\xbd\xac\x19\xe9\x8f" "\x5a\xad\x56\x3f\x51\x5d\x55\x8c\xf7\x46\xb5\x88\x88\xbf\x56\x6f\x53\x7e" "\x66\xf8\xc5\xb8\x5f\x06\x00\xcc\xb2\xff\x45\xc4\x3f\x9a\xee\x04\x8d\x91" "\x7f\x8b\xe5\xeb\xfd\x95\xd3\x97\x9a\xee\x0c\x30\x55\x77\x3e\xf8\xf0\x47" "\x37\x6e\xdd\x5a\xbb\x7d\xa7\xe9\x9e\x00\x00\x00\x00\x00\x00\x00\x00\x4f" "\x2a\x8f\xff\xb9\x5c\x19\xff\xf9\xa5\x88\x91\x73\x9c\xa2\x3e\xfe\xeb\x5b" "\xb1\x7c\xd8\xf1\x3f\xfb\x79\xe6\xe1\x00\xa3\x47\x3c\xd0\xf7\x04\x9b\xdd" "\x61\xaf\x5b\x19\x6e\xfc\x85\xd8\x19\x9f\xfb\xfc\xa4\xf1\xbf\xcf\xc5\xa3" "\xe3\x7f\xe7\x31\x71\x7b\xd5\xed\x98\x60\xb0\x4f\xfb\x70\x9f\xf6\xb9\x7d" "\xda\xe7\xc7\x2e\xdd\x4b\x6b\xec\x89\x1e\x15\x39\xff\x17\x2a\xe3\x9d\x97" "\xf9\x9f\xad\x0d\xbf\xde\x86\xf1\x5f\xeb\x63\xde\xb7\x41\xce\xff\x5c\xe5" "\xf1\x5c\xe6\xff\xa5\xda\x7a\xd5\xfc\x8b\xdf\xce\x5c\xfe\x1b\x07\x5d\x71" "\x33\xba\x23\xf9\x5f\xb8\xfb\xfe\x4f\x2f\xdc\xf9\xe0\xc3\x57\x6f\xbe\x7f" "\xe3\xbd\xb5\xf7\xd6\x7e\x7c\x79\x65\xe5\xe2\xe5\x2b\x57\xae\x5e\xbd\x7a" "\xe1\xdd\x9b\xb7\xd6\x2e\xee\xfe\x7b\x3c\xbd\x9e\x01\x39\xff\x3c\xf6\xb5" "\xe3\x40\xdb\x25\xe7\x9f\x33\x97\x7f\xbb\xe4\xfc\xbf\x90\x6a\xf9\xb7\x4b" "\xce\xff\x8b\xa9\x96\x7f\xbb\xe4\xfc\xf3\xe7\x3d\xf9\xb7\x4b\xce\x3f\x7f" "\xf7\x91\x7f\xbb\xe4\xfc\x5f\x4e\xb5\xfc\xdb\x25\xe7\xff\x95\x54\xcb\xbf" "\x5d\xb6\xb6\xd7\xe7\xca\xfc\x5f\x49\xb5\xfc\xdb\x25\x3f\xff\xbf\x9a\x6a" "\xf9\xb7\x4b\xce\xff\xd5\x54\xcb\xbf\x5d\x72\xfe\xe7\x53\x2d\xff\x76\xc9" "\xf9\x5f\x48\xf5\x01\xf2\x77\x79\xf8\x53\x24\xe7\x9f\xf7\x70\x79\xfe\xb7" "\x4b\xce\x7f\x25\xd5\xf2\x6f\x97\x9c\xff\xa5\x54\xcb\xbf\x5d\x72\xfe\x97" "\x53\x2d\xff\x76\xc9\xf9\xbf\x96\x6a\xf9\xb7\x4b\xce\xff\x6b\xa9\x96\x7f" "\xbb\xe4\xfc\xaf\xa4\x5a\xfe\xed\x92\xf3\xff\x7a\xaa\xe5\xdf\x2e\x39\xff" "\xab\xa9\x96\x7f\xbb\xe4\xfc\xbf\x91\x6a\xf9\xb7\x4b\xce\xff\x9b\xa9\x96" "\x7f\xbb\xe4\xfc\x5f\x4f\xb5\xfc\xdb\x25\xe7\xff\xad\x54\xcb\xbf\x5d\x72" "\xfe\xdf\x4e\xb5\xfc\xdb\x25\xe7\xff\x9d\x54\xcb\xbf\x5d\x72\xfe\x6f\xa4" "\x5a\xfe\xed\xb2\x77\xfd\x7f\x33\x66\xcc\x98\xc9\x33\x4d\xbf\x32\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\xd3\x38\x9c\xb8\xe9\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\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\x5b\x8c\x5c\x77\x7d\x07\xf0\x33\x7b\xf3\xda\x21\xc4\x40\x08" "\x4e\x6a\x60\x93\x98\x10\x92\x25\xbb\xb6\x13\x5f\x68\x53\x4c\xb8\x36\x40" "\x29\x90\x50\xe8\x05\xc7\xf5\xae\xcd\x82\x6f\x78\xed\x12\x28\x92\x4d\x03" "\x25\x12\x46\x45\x15\x55\xd3\x87\xb6\x80\x50\x1b\xa9\xaa\x88\x2a\x1e\x68" "\x45\x69\x1e\xaa\x5e\x9e\x4a\xfb\x40\x5f\x2a\xaa\x4a\x48\x8d\xaa\x80\x02" "\x2a\x52\x5b\xd1\x6c\x35\x73\xfe\xff\xbf\x67\x66\x67\xe7\xec\x7a\xc7\xeb" "\xd9\xf3\xff\x7c\x24\xfb\xb7\x3b\x73\x66\xce\x99\x33\x67\x66\xf7\xbb\xf6" "\x77\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb4\xbb\xf5" "\x8d\xf3\x9f\x6d\x14\x45\xd1\xfc\xd3\xfa\x6b\x7b\x51\xbc\xa0\xf9\xf1\xd6" "\xa9\xed\xad\xcb\x5e\x77\xad\xb7\x10\x00\x00\x00\x58\xaf\xff\x6b\xfd\xfd" "\xdc\x0d\xe9\x82\x43\xab\xb8\x51\xdb\x32\x7f\xf7\x8a\x7f\xfc\xfa\xd2\xd2" "\xd2\x52\xf1\xfe\xd1\xdf\x1d\xff\xe2\xd2\x52\xba\x62\xaa\x28\xc6\xb7\x14" "\x45\xeb\xba\xe8\xa9\x7f\xff\x40\xa3\x7d\x99\xe0\xb1\x62\xb2\x31\xd2\xf6" "\xf9\x48\xc5\xea\x47\x2b\xae\x1f\xab\xb8\x7e\xbc\xe2\xfa\x89\x8a\xeb\xb7" "\x54\x5c\x3f\x59\x71\xfd\xb2\x1d\xb0\xcc\xd6\xf2\xe7\x31\xad\x3b\xdb\xd5" "\xfa\x70\x7b\xb9\x4b\x8b\x1b\x8b\xf1\xd6\x75\xbb\x7a\xdc\xea\xb1\xc6\x96" "\x91\x91\xf8\xb3\x9c\x96\x46\xeb\x36\x4b\xe3\xc7\x8a\x85\xe2\x44\x31\x5f" "\xcc\x76\x2c\x5f\x2e\xdb\x68\x2d\xff\xcd\x5b\x9b\xeb\x7a\x5b\x11\xd7\x35" "\xd2\xb6\xae\x9d\xcd\x23\xe4\x87\x9f\x3c\x1a\xb7\xa1\x11\xf6\xf1\xae\x8e" "\x75\x5d\xbe\xcf\xe8\xfb\x6f\x28\xa6\x7e\xf4\xc3\x4f\x1e\xfd\xe3\x73\xcf" "\xde\xdc\x6b\x56\xee\x86\x8e\xfb\x2b\xb7\xf3\xce\xdb\x9a\xdb\xf9\xe9\x70" "\x49\xb9\xad\x8d\x62\x4b\xda\x27\x71\x3b\x47\xda\xb6\x73\x67\x8f\xe7\x64" "\xb4\x63\x3b\x1b\xad\xdb\x35\x3f\xee\xde\xce\xe7\x56\xb9\x9d\xa3\x97\x37" "\x73\x43\x75\x3f\xe7\x93\xc5\x48\xeb\xe3\x6f\xb7\xf6\xd3\x58\xfb\x8f\xf5" "\xd2\x7e\xda\x19\x2e\xfb\xef\xdb\x8b\xa2\xb8\x78\x79\xb3\xbb\x97\x59\xb6" "\xae\x62\xa4\xd8\xd6\x71\xc9\xc8\xe5\xe7\x67\xb2\x3c\x22\x9b\xf7\xd1\x3c" "\x94\x5e\x5c\x8c\xad\xe9\x38\xbd\x75\x15\xc7\x69\x73\xce\xed\xea\x3c\x4e" "\xbb\x5f\x13\xf1\xf9\xbf\x35\xdc\x6e\x6c\x85\x6d\x68\x7f\x9a\xbe\xff\xa9" "\x89\x65\xcf\xfb\x5a\x8f\xd3\xa8\xf9\xa8\x57\x7a\xad\x74\x1f\x83\x83\x7e" "\xad\x0c\xcb\x31\x18\x8f\x8b\x6f\xb7\x1e\xf4\xe3\x3d\x8f\xc1\x5d\xe1\xf1" "\x7f\xf2\x8e\x95\x8f\xc1\x9e\xc7\x4e\x8f\x63\x30\x3d\xee\xb6\x63\xf0\xb6" "\xaa\x63\x70\x64\x62\xb4\xb5\xcd\xe9\x49\x68\xb4\x6e\x73\xf9\x18\xdc\xdd" "\xb1\xfc\x68\x6b\x4d\x8d\xd6\x7c\xe6\x8e\xfe\xc7\xe0\xcc\xb9\x93\x67\x66" "\x16\x3f\xfe\x89\xd7\x2e\x9c\x3c\x72\x7c\xfe\xf8\xfc\xa9\xbd\xbb\x77\xcf" "\xee\xdd\xb7\xef\xc0\x81\x03\x33\xc7\x16\x4e\xcc\xcf\x96\x7f\x5f\xe1\xde" "\x1e\x7e\xdb\x8a\x91\xf4\x1a\xb8\x2d\xec\xbb\xf8\x1a\x78\x75\xd7\xb2\xed" "\x87\xea\xd2\x97\x07\xf7\x3a\x9c\xec\xf3\x3a\xdc\xde\xb5\xec\xa0\x5f\x87" "\x63\xdd\x0f\xae\xd1\xe3\x05\x59\xf5\x4d\xc2\x15\x58\x7e\x4c\x97\xaf\x8d" "\x87\x9a\x3b\x7d\xf2\xd2\x48\xb1\xc2\x6b\xac\xf5\xfc\xdc\xb5\xfe\xd7\x61" "\x7a\xdc\x6d\xaf\xc3\xb1\xb6\xd7\x61\xcf\xaf\x29\x3d\x5e\x87\x63\xab\x78" "\x1d\x36\x97\x39\x73\xd7\xea\xbe\x67\x19\x6b\xfb\xd3\x6b\x1b\xae\xd6\xd7" "\x82\xed\x6d\xc7\x60\xf7\xf7\x23\xdd\xc7\xe0\xa0\xbf\x1f\x59\xd5\x31\x78" "\x15\x74\x3f\x9f\x93\xe1\xb8\xf8\xd7\xbb\x56\xfe\x5a\xb0\x33\x6c\xef\xe3" "\xd3\x6b\xfd\x7e\x64\x74\xd9\x31\x98\x1e\x6e\x78\xef\x69\x5e\x92\xbe\xdf" "\x9f\x3c\xd0\x1a\xbd\x8e\xcb\x5b\x9a\x57\x5c\x37\x51\x9c\x5f\x9c\x3f\x7b" "\xcf\xa3\x47\xce\x9d\x3b\xbb\xbb\x08\x63\x43\xbc\xa4\xed\x58\xe9\x3e\x5e" "\xb7\xb5\x3d\xa6\x62\xd9\xf1\x3a\xb2\xe6\xe3\xf5\xd0\xc2\x2b\x1e\xbf\xa5" "\xc7\xe5\xdb\xc3\xbe\x9a\x7c\x6d\xf3\xaf\xc9\x15\x9f\xab\xe6\x32\xf7\xde" "\xd3\xff\xb9\x6a\x7d\x75\xeb\xbd\x3f\x3b\x2e\xdd\x53\x84\x31\x60\x1b\xbd" "\x3f\x7b\x7d\x35\x6f\xee\xcf\x94\x25\xfb\xec\xcf\xe6\x32\x9f\x9e\x59\xff" "\xf7\xe2\x29\x97\xb6\xbd\xff\x8e\xaf\xf0\xfe\x1b\x73\xff\xf3\xe5\xfa\xd2" "\x5d\x3d\x36\x3a\x3e\x56\xbe\x7e\x47\xd3\xde\x19\xef\x78\x3f\xee\x7c\xaa" "\xc6\x5a\xef\x5d\x8d\xd6\xba\x9f\x9b\x59\xdd\xfb\xf1\x78\xf8\xb3\xd1\xef" "\xc7\x37\xf6\x79\x3f\xde\xd1\xb5\xec\xa0\xdf\x8f\xc7\xbb\x1f\x5c\x7c\x3f" "\x6e\x54\xfd\xb4\x63\x7d\xba\x9f\xcf\xc9\x70\x9c\x9c\x98\xed\xff\x7e\xdc" "\x5c\x66\xc7\x9e\xb5\x1e\x93\x63\x7d\xdf\x8f\x6f\x0f\xb3\x11\xf6\xff\x6b" "\x42\x52\x48\xdf\x0a\xb5\x1d\x3b\x2b\x1d\xb7\x69\x5d\x63\x63\xe3\xe1\x71" "\x8d\xc5\x35\x74\x1e\xa7\x7b\x3b\x96\x1f\x0f\xd9\xac\xb9\xae\x27\xf7\x5c" "\xd9\x71\x7a\xe7\xed\xe5\x7d\x8d\xa6\x47\x77\xd9\x46\x1d\xa7\x53\x5d\xcb" "\x0e\xfa\x38\x4d\xef\x57\x2b\x1d\xa7\x8d\xaa\x9f\xbe\x5d\x99\xee\xe7\x73" "\x32\x1c\x17\x37\xee\xed\x7f\x9c\x36\x97\x79\xfa\xde\xf5\xbf\x77\x6e\x8d" "\x1f\xb6\xbd\x77\x4e\x54\x1d\x83\xe3\xa3\x13\xcd\x6d\x1e\x4f\x07\x61\xf9" "\x7e\xbf\xb4\x35\x1e\x83\xf7\x14\x47\x8b\xd3\xc5\x89\x62\xae\x75\xed\x44" "\xeb\x78\x6a\xb4\xd6\x35\x7d\xdf\xea\x8e\xc1\x89\xf0\x67\xa3\xdf\x2b\x77" "\xf4\x39\x06\xef\xec\x5a\x76\xd0\xc7\x60\xfa\x3a\xb6\xd2\xb1\xd7\x18\x5b" "\xfe\xe0\x07\xa0\xfb\xf9\x9c\x0c\xc7\xc5\x13\xf7\xf5\x3f\x06\x9b\xcb\xbc" "\x69\xff\x60\xbf\x77\xbd\x33\x5c\x92\x96\x69\xfb\xde\xb5\xfb\xe7\x6b\x2b" "\xfd\xcc\xeb\x96\xae\xdd\x74\x35\x7f\xe6\xd5\xdc\xce\xbf\xd9\xdf\xff\x67" "\xb3\xcd\x65\x4e\x1c\x58\x6b\xce\xec\xbf\x9f\xee\x0e\x97\x5c\xd7\x63\x3f" "\x75\xbf\x7e\x57\x7a\x4d\xcd\x15\x1b\xb3\x9f\x76\x84\xed\x7c\xf6\xc0\xca" "\xfb\xa9\xb9\x3d\xcd\x65\xbe\x78\x70\x95\xc7\xd3\xa1\xa2\x28\x2e\x7c\xf4" "\x81\xd6\xcf\x7b\xc3\xbf\xaf\xfc\xf9\xf9\xef\x7c\xbd\xe3\xdf\x5d\x7a\xfd" "\x9b\xce\x85\x8f\x3e\xf0\x83\xeb\x8f\xfd\xed\x5a\xb6\x1f\x80\xcd\xef\xf9" "\x72\x6c\x2b\xbf\xd6\xb5\xfd\x30\x7a\x35\xff\xfe\x0f\x00\x00\x00\x6c\x0a" "\x31\xf7\x8f\x84\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\xc7\xff\x15\x9e" "\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\x8f\x85\x99\x64\x92\xff\x77\xbc\xe9" "\xd9\x85\xe7\x2f\x14\xa9\x99\xbf\x14\xc4\xeb\xd3\x6e\x78\xb0\x5c\x2e\x76" "\x5c\x67\xc3\xe7\x53\x4b\x97\x35\x2f\x7f\xe0\xab\xf3\x3f\xfe\xcb\x0b\xab" "\x5b\xf7\x48\x51\x14\x3f\x79\xf0\x37\x7a\x2e\xbf\xe3\xc1\xb8\x5d\xa5\xa9" "\xb0\x9d\x4f\xbd\xb9\xf3\xf2\xe5\x37\xbc\xb0\xaa\xf5\x3f\xf2\xf0\xe5\xe5" "\xda\xfb\xeb\x5f\x0a\xf7\x1f\x1f\xcf\x6a\x0f\x83\x5e\x15\xdc\xd9\xa2\x28" "\xbe\x79\xc3\xe7\x5b\xeb\x99\xfa\xc0\xa5\xd6\x7c\xfa\xc1\x47\x5a\xf3\x3d" "\x17\x1f\x7f\xac\xb9\xcc\x73\x07\xcb\xcf\xe3\xed\x9f\x79\x49\xb9\xfc\x1f" "\x84\xf2\xef\xa1\x63\x47\x3a\x6e\xff\x4c\xd8\x0f\xdf\x0b\x73\xf6\xed\xbd" "\xf7\x47\xbc\xdd\xd7\x2e\xbd\x66\xe7\xfe\xf7\x5d\x5e\x5f\xbc\x5d\xe3\xb6" "\x17\xb6\x1e\xf6\x13\x1f\x2c\xef\x37\xfe\x9e\x9c\x2f\x3c\x56\x2e\x1f\xf7" "\xf3\x4a\xdb\xff\x57\x9f\x7b\xf2\x6b\xcd\xe5\x1f\x7d\x55\xef\xed\xbf\x30" "\xd2\x7b\xfb\x9f\x0c\xf7\xfb\xd5\x30\xff\xe7\xe5\xe5\xf2\xed\xcf\x41\xf3" "\xf3\x78\xbb\xcf\x84\xed\x8f\xeb\x8b\xb7\xbb\xe7\x2b\xdf\xea\xb9\xfd\x4f" "\x7d\xb6\x5c\xfe\xcc\x5b\xca\xe5\x1e\x09\x33\xae\xff\xce\xf0\xf9\xae\xb7" "\x3c\xbb\xd0\xbe\xbf\x1e\x6d\x1c\xe9\x78\x5c\xc5\x5b\xcb\xe5\xe2\xfa\x67" "\xbf\xf3\xdb\xad\xeb\xe3\xfd\xc5\xfb\xef\xde\xfe\xc9\xc3\x97\x3a\xf6\x47" "\xf7\xf1\xf1\xf4\x3f\x97\xf7\x33\xd3\xb5\x7c\xbc\x3c\xae\x27\xfa\x8b\xae" "\xf5\x37\xef\xa7\xfd\xf8\x8c\xeb\x7f\xf2\xb7\x1e\xe9\xd8\xcf\x55\xeb\x7f" "\xea\x3d\xcf\xbc\xbc\x79\xbf\xdd\xeb\xbf\xbb\x6b\xb9\xd1\xae\xdb\x77\xff" "\xc6\xa6\x3f\xfc\xcc\xe7\x7b\xae\x2f\x6e\xcf\xa1\x3f\x3b\xd3\xf1\x78\x0e" "\xbd\x3b\xbc\x8e\xc3\xfa\x9f\xf8\x60\x38\x1e\xc3\xf5\xff\xfb\xd4\xe7\x3b" "\xd6\x1b\x3d\xf2\xee\xce\xf7\x9f\xb8\xfc\x97\xb6\x5f\xe8\x78\x3c\xd1\xdb" "\x7e\x54\xae\xff\xa9\xd7\x1f\x6f\xcd\xff\x98\xfa\xf1\xef\x5f\xf7\x82\xeb" "\x5f\x78\xf1\x95\xcd\x7d\x57\x14\xdf\x7e\x6f\x79\x7f\x55\xeb\x3f\xfe\x47" "\xa7\x3b\xb6\xff\xcb\x37\xdd\xd5\x7a\x3e\xe2\xf5\xb1\xa3\xdf\xbd\xfe\x95" "\xc4\xf5\x9f\xfd\xd8\xf4\xa9\xd3\x8b\xe7\x17\xe6\xda\xf6\x6a\xeb\x77\xe7" "\xbc\xa3\xdc\x9e\x2d\x93\x5b\xb7\x35\xb7\xf7\x86\xf0\xde\xda\xfd\xf9\xe1" "\xd3\xe7\x3e\x34\x7f\x76\x6a\x76\x6a\xb6\x28\xa6\xea\xfb\x2b\xf4\xae\xd8" "\x57\xc2\xfc\x41\x39\x2e\xae\xf5\xf6\x77\x3d\x1c\x9e\xcf\x5b\x7e\xef\x9b" "\xdb\xee\xf8\xa7\xcf\xc5\xcb\xff\xe5\xa1\xf2\xf2\x4b\x6f\x2f\xbf\x6e\xbd" "\x3a\x2c\xf7\x85\x70\xf9\xf6\xf2\xf9\x5b\x6a\xac\x73\xfd\x4f\xdc\x7a\x53" "\xeb\xf5\xdd\x78\xba\xfc\xbc\xa3\xc7\x3e\x00\x3b\x77\xfd\xe7\x81\x55\x2d" "\x18\x1e\x7f\xf7\xf7\x05\xf1\x78\x3f\xf3\xd2\x0f\xb5\xf6\x43\xf3\xba\xd6" "\xd7\x8d\xf8\xba\x5e\xe7\xf6\x7f\x77\xae\xbc\x9f\x6f\x84\xfd\xba\x14\x7e" "\x33\xf3\x6d\x37\x5d\x5e\x5f\xfb\xf2\xf1\x77\x23\x5c\x7a\x6f\xf9\x7a\x5f" "\xf7\xfe\x0b\x6f\x73\xf1\x79\xfd\x93\xf0\x7c\xbf\xf3\x7b\xe5\xfd\xc7\xed" "\x8a\x8f\xf7\xbb\xe1\xfb\x98\x6f\xed\xe8\x7c\xbf\x8b\xc7\xc7\x37\x2e\x8c" "\x74\xdf\x7f\xeb\xb7\x78\x5c\x0c\xef\x27\xc5\xc5\xf2\xfa\xb8\x54\xdc\xdf" "\x97\x9e\xbb\xa9\xe7\xe6\xc5\xdf\x43\x52\x5c\xbc\xb9\xf5\xf9\xef\xa4\xfb" "\xb9\x79\x4d\x0f\x73\x25\x8b\x1f\x5f\x9c\x39\xb1\x70\xea\xfc\xa3\x33\xe7" "\xe6\x17\xcf\xcd\x2c\x7e\xfc\x13\x87\x4f\x9e\x3e\x7f\xea\xdc\xe1\xd6\xef" "\xf2\x3c\xfc\xe1\xaa\xdb\x5f\x7e\x7f\xda\xd6\x7a\x7f\x9a\x9b\xdf\x77\x6f" "\x31\xbb\xb5\x28\x8a\xd3\xc5\xec\x06\xbc\x61\x5d\x9d\xed\x6f\x7e\xb4\xba" "\xed\x3f\xf3\xf0\xd1\xb9\xfd\xb3\x77\xcc\xcd\x1f\x3b\x72\xfe\xd8\xb9\x87" "\xcf\xcc\x9f\x3d\x7e\x74\x71\xf1\xe8\xfc\xdc\xe2\x1d\x47\x8e\x1d\x9b\xff" "\x58\xd5\xed\x17\xe6\xee\xdf\xbd\xe7\xe0\xde\xfd\x7b\xa6\x8f\x2f\xcc\xdd" "\x7f\xe0\xe0\xc1\xbd\x07\xa7\x17\x4e\x9d\x6e\x6e\x46\xb9\x51\x15\xf6\xcd" "\x7e\x64\xfa\xd4\xd9\xc3\xad\x9b\x2c\xde\x7f\xef\xc1\xdd\xf7\xdd\x77\xef" "\xec\xf4\xc9\xd3\x73\xf3\xf7\xef\x9f\x9d\x9d\x3e\x5f\x75\xfb\xd6\xd7\xa6" "\xe9\xe6\xad\x7f\x7d\xfa\xec\xfc\x89\x23\xe7\x16\x4e\xce\x4f\x2f\x2e\x7c" "\x62\xfe\xfe\xdd\x07\xf7\xed\xdb\x53\xf9\xdb\x00\x4f\x9e\x39\xb6\x38\x35" "\x73\xf6\xfc\xa9\x99\xf3\x8b\xf3\x67\x67\xca\xc7\x32\x75\xae\x75\x71\xf3" "\x6b\x5f\xd5\xed\xa9\xa7\xc5\x7f\x2b\xbf\x9f\xed\xd6\x28\x7f\x11\x5f\xf1" "\xae\xbb\xf7\xa5\xdf\xcf\xda\xf4\xd5\x4f\xad\x78\x57\xe5\x22\x5d\xbf\x40" "\xf4\xd9\xf0\xbb\x68\xfe\xe1\x45\x67\x0e\xac\xe6\xf3\x98\xfb\xc7\xc3\x4c" "\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\x27\xc2\x4c\xe4\x7f\x00\x00\x00" "\xa8\x8d\x98\xfb\xb7\x84\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\x4f\x86" "\x99\x64\x92\xff\xf5\xff\xf5\xff\x57\xd7\xff\x2f\xaf\xd7\xff\xcf\xab\xff" "\x7f\xe6\xa3\x65\xaf\x74\xb3\xf7\xff\x63\x7f\x5e\xff\x3f\x0f\xd7\xb8\xff" "\xbf\xee\xf5\xeb\xff\xeb\xff\xd7\xaf\xff\xbf\xfa\xfe\xfc\x66\xdf\x7e\xfd" "\x7f\xfd\x7f\x96\x1b\xb6\xfe\x7f\xcc\xfd\x5b\x8b\x22\xcb\xfc\x0f\x00\x00" "\x00\x39\x88\xb9\x7f\x5b\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\x75" "\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\x2f\x08\x33\xc9\x24\xff\xeb" "\xff\xaf\xaa\xff\xbf\xa7\xaa\x70\x55\xff\xfe\xbf\xf3\xff\xeb\xff\x17\x9b" "\xb3\xff\x1f\x9f\x1c\xfd\xff\x6c\xac\xb9\x7f\xff\xbe\x87\x3a\x3e\xd5\xff" "\x0f\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x59\xb7\xf1\x15\xaf\xb9\x56" "\xfd\xff\x98\xfb\xaf\x0f\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee\x7f" "\x61\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\x0d\x61\x26\xf2\x3f\x00" "\x00\x00\xd4\x46\xcc\xfd\xdb\xc3\x4c\x32\xc9\xff\xfa\xff\xce\xff\xaf\xff" "\xaf\xff\x5f\xeb\xfe\xff\x7a\xcf\xff\xdf\xb6\x31\xfa\xff\x9b\x83\xf3\xff" "\xf7\xb7\xe6\xfe\xff\x16\xfd\xff\xd5\xf5\xff\x27\xf5\xff\x37\x63\xff\x7f" "\x7c\xb0\xdb\x3f\xdc\xfd\xff\xca\xcd\xd7\xff\xe7\xaa\x18\xb6\xf3\xff\xc7" "\xdc\xff\xa2\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe\x17\x87\x99" "\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\xbf\x24\xcc\x44\xfe\x07\x00\x00\x80" "\xda\x88\xb9\xff\xc6\x30\x93\x4c\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf" "\xfe\x7f\xef\xf5\x57\x9f\xff\xbf\xfc\x48\xff\x7f\xb8\xe8\xff\xf7\xe7\xfc" "\xff\x15\x36\xe8\xfc\xff\x8d\x8b\xfa\xff\x57\xc3\xb5\xde\xfe\xe1\xee\xff" "\x0f\xfa\xfc\xff\xe3\x6f\xee\xbe\xbd\xfe\x3f\xbd\x0c\x5b\xff\x3f\xe6\xfe" "\x97\x86\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31\xf7\xdf\x14\x66\x22\xff" "\x03\x00\x00\x40\x6d\xc4\xdc\xff\xb2\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23" "\xe6\xfe\x1d\x61\x26\x99\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff" "\xde\xeb\xaf\xee\xff\x97\xf4\xff\x87\x8b\xfe\x7f\x7f\xfa\xff\x15\x36\xa8" "\xff\xef\xfc\xff\x57\xc7\xb5\xde\xfe\xac\xfa\xff\x3d\xbe\xf9\xd5\xff\xa7" "\x97\x61\xeb\xff\xc7\xdc\x7f\x73\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10" "\x73\xff\x2d\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\x3f\x15\x66\x22" "\xff\x03\x00\x00\x40\x6d\xc4\xdc\xbf\x33\xcc\x24\x93\xfc\xaf\xff\xaf\xff" "\xaf\xff\x9f\x57\xff\xff\xee\x09\xfd\x7f\xfd\xff\x7a\xd3\xff\xef\x4f\xff" "\xbf\x82\xfe\xbf\xfe\xbf\xfe\xff\x2a\xcf\xff\xbf\xdc\x5a\xfa\xff\x5b\xaa" "\xee\x8c\xda\x18\xb6\xfe\x7f\xcc\xfd\x2f\x0f\x33\xc9\x24\xff\x03\x00\x00" "\x40\x0e\x62\xee\x7f\x45\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\x2b" "\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\xa7\xc2\x4c\x32\xc9\xff\xfa" "\xff\xf5\xea\xff\xff\xe9\x5f\x3f\xf1\xca\x42\xff\x5f\xff\xbf\x62\xfd\x35" "\xed\xff\xc7\xc3\x40\xff\x3f\x73\xfa\xff\xfd\xe9\xff\x57\xd0\xff\xd7\xff" "\xd7\xff\xdf\x90\xfe\x3f\xf9\x18\xb6\xfe\x7f\xcc\xfd\xb7\x86\x99\x64\x92" "\xff\x01\x00\x00\x20\x07\x31\xf7\xdf\x16\x66\x22\xff\x03\x00\x00\x40\x6d" "\xc4\xdc\x7f\x7b\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\xae\x30\x93" "\x4c\xf2\xbf\xfe\x7f\xbd\xfa\xff\x91\xfe\xbf\xfe\x7f\xbf\xf5\xd7\xb4\xff" "\x9f\xe8\xff\xe7\x4d\xff\xbf\x87\xb6\x17\xa9\xfe\x7f\x05\xfd\x7f\xfd\xff" "\xec\xfb\xff\xf1\xbb\x5f\xfd\x7f\x06\x63\xd8\xfa\xff\x31\xf7\xbf\x2a\xcc" "\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff\x8e\x30\x13\xf9\x1f\x00\x00" "\x00\x6a\x23\xe6\xfe\x57\x87\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\xdf" "\x19\x66\x92\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\xbd\x7e" "\xfd\xff\xcd\x49\xff\xbf\xbf\xb5\xf6\xff\x27\xf4\xff\xf5\xff\xf5\xff\x33" "\xeb\xff\x3b\xff\x3f\x83\x35\x6c\xfd\xff\x98\xfb\x5f\x13\x66\x92\x49\xfe" "\x07\x00\x00\x80\x1c\xc4\xdc\x7f\x57\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11" "\xff\xff\x66\xf9\xff\x5e\xe5\x7f\x00\x00\x00\xa8\xa3\x98\xfb\xa7\xc3\x4c" "\x32\xc9\xff\xfa\xff\xfa\xff\x39\xf5\xff\x1b\xfa\xff\xfa\xff\xfa\xff\xb5" "\xa7\xff\xdf\x9f\xf3\xff\x57\xa8\xec\xff\x4f\xe8\xff\xf7\xa1\xff\xaf\xff" "\xaf\xff\x4f\xb7\x61\xeb\xff\xc7\xdc\xff\xda\x30\x93\x4c\xf2\x3f\x00\x00" "\x00\xe4\x20\xe6\xfe\x7b\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x67" "\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x67\xc3\x4c\x32\xc9\xff\xfa" "\xff\xfa\xff\x39\xf5\xff\x9d\xff\x5f\xff\x5f\xff\xbf\xfe\xf4\xff\xfb\xd3" "\xff\xaf\xe0\xfc\xff\xfa\xff\x75\xeb\xff\x17\x85\xfe\x3f\xd7\xd4\xb0\xf5" "\xff\x63\xee\xdf\x1d\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\xbf\x27" "\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\x7f\x6f\x98\x89\xfc\x0f\x00\x00" "\x00\xb5\x11\x73\xff\xbd\x61\x26\x99\xe4\x7f\xfd\xff\xba\xf6\xff\x97\x0a" "\xfd\x7f\xfd\xff\x95\xd6\xaf\xff\xaf\xff\x5f\x67\xfa\xff\xfd\xe9\xff\x57" "\xd0\xff\xd7\xff\xaf\x5b\xff\xdf\xf9\xff\xb9\xc6\x86\xad\xff\x1f\x73\xff" "\x7d\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\xfb\xc2\x4c\xe4\x7f" "\x00\x00\x00\xa8\x8d\x98\xfb\xf7\x87\x99\x84\xfc\xdf\xeb\xff\x75\x03\x00" "\x00\x00\x9b\x4b\xcc\xfd\x07\xc2\x4c\x32\xf9\xf7\x7f\xfd\xff\x9a\xf4\xff" "\x7f\xf3\xef\x3b\xd6\xed\xfc\xff\xfa\xff\xfd\xd6\x3f\x98\xfe\xff\x56\xfd" "\xff\x30\xf5\xff\x87\x4b\x4d\xfb\xff\xdd\x2f\x8b\x2b\xa6\xff\x5f\x41\xff" "\x5f\xff\x5f\xff\x5f\xff\x9f\x81\x1a\xb6\xfe\x7f\xcc\xfd\x07\xc3\x4c\x32" "\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\x5f\x17\x66\x22\xff\x03\x00\x00\x40" "\x6d\xc4\xdc\xff\xd3\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\x3f\x13" "\x66\x92\x49\xfe\xd7\xff\xaf\x49\xff\xbf\x8b\xfe\xbf\xfe\x7f\xbf\xf5\x3b" "\xff\xbf\xfe\x7f\x9d\xd5\xb4\xff\x3f\x30\xb5\xea\xff\x8f\xe8\xff\xeb\xff" "\xf7\xdd\xfe\xf8\xf6\xae\xff\xaf\xff\xcf\x35\x74\xf5\xfb\xff\xf1\xa3\xd5" "\xf5\xff\x63\xee\xbf\x3f\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff" "\x67\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x5f\x1f\x66\x22\xff\x03" "\x00\x00\x40\x6d\xc4\xdc\x7f\x28\xcc\x24\x93\xfc\xaf\xff\xaf\xff\xaf\xff" "\xaf\xff\x7f\x75\xfa\xff\xaf\x2f\xba\x0d\x63\xff\xbf\x79\xf0\xe8\xff\xd7" "\x8b\xfe\x7f\x7f\xb5\xea\xff\x3b\xff\xbf\xfe\xff\x90\x6d\xbf\xfe\xbf\xfe" "\x3f\xcb\x0d\xdb\xf9\xff\x63\xee\x7f\x43\x98\x49\x26\xf9\x1f\x00\x00\x00" "\x72\x10\x73\xff\x03\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\x6f\x0c" "\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee\x7f\x53\x98\x49\x26\xf9\x5f\xff" "\x5f\xff\x5f\xff\x5f\xff\xdf\xf9\xff\x7b\xaf\x5f\xff\x7f\x73\xd2\xff\xef" "\x4f\xff\xbf\x82\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x03\x35\x6c\xfd\xff\x98" "\xfb\xdf\x1c\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\xff\x96\x30\x13" "\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\xb7\x86\x99\xc8\xff\x00\x00\x00\x50" "\x1b\x31\xf7\xbf\x2d\xcc\x24\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\x7f" "\xd5\xfa\xff\x23\x85\xfe\x7f\x1b\xfd\xff\x8d\xa1\xff\xdf\x9f\xfe\x7f\x05" "\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x06\x6a\xd8\xfa\xff\x31\xf7\xff\x5c\x98" "\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\x83\x61\x26\xf2\x3f\x00\x00" "\x00\xd4\x46\xcc\xfd\x6f\x0f\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee\x7f" "\x47\x98\x49\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xdf\xf9\xff\x7b\xaf" "\x5f\xff\x7f\x73\xd2\xff\xef\x4f\xff\xbf\x82\xfe\xbf\xfe\xbf\xfe\xbf\xfe" "\x3f\x03\x35\x6c\xfd\xff\x98\xfb\xdf\x19\x66\x92\x49\xfe\x07\x00\x00\x80" "\x1c\xc4\xdc\xff\xf3\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\xef\x0a" "\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee\xff\x85\x30\x93\x4c\xf2\xbf\xfe" "\xbf\xfe\xff\x70\xf5\xff\x97\x2e\xb4\xdf\x4e\xff\x5f\xff\xbf\x18\x54\xff" "\xbf\x79\x23\xfd\xff\x2c\xe8\xff\xf7\xa7\xff\x5f\xa1\x47\xff\x7f\x8b\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x57\x6c\xd8\xfa\xff\x31\xf7\xbf\x3b\xcc\x24" "\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff\x3d\x61\x26\xf2\x3f\x00\x00\x00" "\xd4\x46\xcc\xfd\xef\x0d\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee\x7f\x28" "\xcc\x24\x93\xfc\xaf\xff\x9f\x65\xff\x3f\x3d\xe4\xe1\xeb\xff\x3b\xff\xbf" "\xfe\xbf\xf3\xff\xeb\xff\xaf\x8f\xfe\x7f\x7f\xfa\xff\x15\x9c\xff\x5f\xff" "\x5f\xff\x5f\xff\x9f\x81\x1a\xb6\xfe\x7f\xcc\xfd\x0f\x87\x99\x64\x92\xff" "\x01\x00\x00\x20\x07\x31\xf7\xbf\x2f\xcc\x44\xfe\x07\x00\x00\x80\xda\x88" "\xb9\xff\x17\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\xdf\x1f\x66\x92" "\x49\xfe\xd7\xff\xcf\xb2\xff\x3f\xc4\xe7\xff\xaf\x5b\xff\x7f\xac\xe3\xf8" "\xc8\xa9\xff\x3f\xd9\xf6\x7c\xa6\xe3\x52\xff\x5f\xff\x7f\x03\xe8\xff\xf7" "\xa7\xff\x5f\x41\xff\x5f\xff\x7f\x98\xfb\xff\xe1\x68\xde\xba\xc2\xed\xf5" "\xff\x19\x46\xc3\xd6\xff\x8f\xb9\xff\x03\x61\x26\x99\xe4\x7f\x00\x00\x00" "\xc8\x41\xcc\xfd\xbf\x14\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\xff\xcb" "\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\xbf\x12\x66\x92\x49\xfe\xd7" "\xff\xd7\xff\xd7\xff\x77\xfe\x7f\xe7\xff\xef\xbd\x7e\xfd\xff\xcd\x49\xff" "\xbf\x3f\xfd\xff\x0a\xfa\xff\xfa\xff\xc3\xdc\xff\xaf\xa0\xff\xcf\x30\x1a" "\xb6\xfe\x7f\xcc\xfd\xbf\x1a\x66\xb2\x62\xf0\xfb\xc1\x7f\xad\xe2\x61\x02" "\x00\x00\x00\x43\x24\xe6\xfe\x0f\x86\x99\x64\xf2\xef\xff\x00\x00\x00\x90" "\x83\x98\xfb\x0f\x87\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\x3f\x12\x66" "\x92\x49\xfe\xd7\xff\xef\xee\xff\xc7\x33\xaa\xea\xff\xeb\xff\xeb\xff\xeb" "\xff\xeb\xff\x6f\x46\x83\xeb\xff\xbf\xec\xfa\xa2\xd0\xff\xd7\xff\xd7\xff" "\xd7\xff\xdf\xc8\xfe\xff\x88\xfe\x3f\xb5\x33\x6c\xfd\xff\x98\xfb\x8f\x84" "\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31\xf7\xff\x5a\x98\x89\xfc\x0f\x00" "\x00\x00\xb5\x11\x73\xff\xd1\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe" "\xb9\x30\x93\x3a\xe6\xff\xee\x52\xed\xb5\xed\xff\x8f\x0f\x67\xff\xdf\xf9" "\xff\xaf\xb4\xff\xff\x13\xfd\x7f\xfd\xff\x40\xff\xbf\x37\xfd\xff\x8d\xe1" "\xfc\xff\xfd\xe9\xff\x57\xd0\xff\xd7\xff\x77\xfe\x7f\xfd\x7f\x06\x6a\xd8" "\xfa\xff\x31\xf7\xcf\x87\x99\xd4\x31\xff\x03\x00\x00\x40\x5e\xd2\x8f\x83" "\x63\xee\x3f\x16\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\x7f\x3c\xcc\x44" "\xfe\x07\x00\x00\x80\xda\x88\xb9\xff\x43\x61\x26\x99\xe4\x7f\xe7\xff\xd7" "\xff\x77\xfe\xff\x6b\xd1\xff\x1f\xeb\x58\x5e\xff\xbf\xa4\xff\xaf\xff\x3f" "\x08\xfa\xff\xfd\xe9\xff\x57\xd0\xff\xd7\xff\xd7\xff\xd7\xff\x67\xa0\x86" "\xad\xff\x1f\x73\xff\x42\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff" "\x87\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x3f\x12\x66\x22\xff\x03" "\x00\x00\x40\x6d\xc4\xdc\x7f\x22\xcc\x24\x93\xfc\xaf\xff\xaf\xff\x9f\x7b" "\xff\xbf\x51\x14\x17\x9d\xff\x5f\xff\xbf\xd7\xfa\xf5\xff\x37\x27\xfd\xff" "\xfe\xf4\xff\x2b\xe8\xff\xeb\xff\xeb\xff\xeb\xff\x33\x50\xc3\xd6\xff\x8f" "\xb9\xff\x64\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\xa9\x30\x13" "\xf9\x1f\xf8\x7f\xf6\xee\xa3\x49\xae\xf3\xba\xe3\x70\x93\x06\x11\xca\xae" "\xb2\x3f\x82\xd7\x5e\x79\x69\xaf\xe8\x8f\xe0\xad\x76\xaa\xd2\x5a\xa5\x44" "\xe5\x40\x52\x39\x4b\x54\xce\x81\xca\x39\xe7\x44\xe5\x9c\x73\xa6\x72\x96" "\x28\x51\x91\x52\x15\x54\x00\xce\x39\xc0\x60\x1a\xb7\x07\x40\x63\xfa\xde" "\xf7\x3c\xcf\xe6\x18\x30\xa0\xee\x21\x1a\x50\xfd\x85\xfa\xf1\x02\x00\x00" "\xc3\xc8\xdd\x7f\xb7\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xbf\x7b\xdc" "\xd2\x64\xff\xeb\xff\xf5\xff\xdd\xfb\xff\xd5\x4e\x9e\xff\xbf\xf7\xc7\xeb" "\xff\xcf\xd0\xff\xeb\xff\xb7\x61\x5f\x7f\x7f\x64\xfd\x8f\xbb\x50\x14\x7e" "\xc1\xfe\xff\xbf\xff\xe7\xba\x3b\xeb\xff\xf5\xff\xfa\xff\x49\xfa\x7f\xfd" "\xbf\xfe\x9f\xf3\xcd\xad\xff\xcf\xdd\x7f\x8f\xb8\xa5\xc9\xfe\x07\x00\x00" "\x80\x0e\x72\xf7\xdf\x33\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xef\x15" "\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xd7\xc5\x2d\x4d\xf6\xbf\xfe\x5f" "\xff\xaf\xff\xd7\xff\xef\xe9\xff\x6f\xd1\xff\xeb\xff\x97\xcd\xf3\xff\xa7" "\xe9\xff\x37\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\xb6\x6a\x6e\xfd\x7f\xee\xfe" "\x7b\xc7\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x3e\x71\x8b\xfd\x0f" "\x00\x00\x00\xc3\xc8\xdd\x7f\xdf\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee" "\xbf\x5f\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\xff\xa5\xf4\xff\x47\x3d\xff" "\xff\xbc\xaf\x47\xff\xaf\xff\x5f\x47\xff\x3f\x4d\xff\xbf\x81\xfe\x5f\xff" "\xaf\xff\xd7\xff\xb3\x55\x73\xeb\xff\x73\xf7\xdf\x3f\x6e\x69\xb2\xff\x01" "\x00\x00\xa0\x83\xdc\xfd\x0f\x88\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe" "\x07\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x83\xe2\x96\x26\xfb\x5f" "\xff\xaf\xff\xd7\xff\x2f\xa5\xff\x3f\xa4\xe7\xff\xeb\xff\xf5\xff\x0b\x77" "\xf3\xea\xec\x9f\x09\x87\xdd\xff\x1f\xdd\xc2\xbf\x7f\x40\xff\x3f\xef\xfe" "\x7f\xb5\xd2\xff\x4f\x39\x70\x3f\xbf\xfe\xcb\x5b\xce\xfb\xbf\x00\xfd\xbf" "\xfe\x9f\xfd\xe6\xd6\xff\xe7\xee\x7f\x70\xdc\xf2\x7f\xab\xd5\xd1\x4b\xfd" "\x22\x01\x00\x00\x80\x59\xc9\xdd\xff\x90\xb8\xa5\xc9\xdf\xff\x03\x00\x00" "\x40\x07\xb9\xfb\xaf\x8f\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x1b\xe2" "\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xeb\x5f\x5f\xff\xbf" "\x4c\x9e\xff\x3f\xed\xf2\xfb\xff\xff\xfa\x8f\xbb\xde\xa5\x6f\xff\xef\xf9" "\xff\xd3\x3c\xff\x7f\xdb\xfd\xff\xa9\x4f\x86\xfe\x9f\x65\x9b\x5b\xff\x9f" "\xbb\xff\xc6\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x34\x6e\xb1" "\xff\x01\x00\x00\x60\x18\xb9\xfb\x1f\x16\xb7\xd8\xff\x00\x00\x00\x30\x8c" "\xdc\xfd\x0f\x8f\x5b\x9a\xec\x7f\xfd\xff\x68\xfd\xff\xbf\xec\xf9\x79\xe7" "\xf4\xff\xa7\x6b\x17\xfd\xbf\xfe\x5f\xff\xaf\xff\x1f\x9d\xfe\x7f\x9a\xe7" "\xff\x6f\x70\xfa\x8f\xb9\x13\xf5\x4d\xfd\xbf\xfe\xdf\xf3\xff\xf5\xff\x5c" "\x9e\xb9\xf5\xff\xb9\xfb\x1f\x11\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee" "\xfe\x47\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xa3\xe2\x16\xfb\x1f" "\x00\x00\x00\x86\x91\xbb\xff\xd1\x71\x4b\x93\xfd\xaf\xff\x1f\xad\xff\xdf" "\xfb\xf3\x3c\xff\x5f\xff\xbf\xee\xf5\xf5\xff\xfa\xff\x91\xe9\xff\xa7\xe9" "\xff\x37\x18\xe5\xf9\xff\x97\xf8\xa9\xd9\x75\x3f\x7f\xb9\x76\xfd\xfe\xf5" "\xff\xfa\x7f\xf6\x9b\x5b\xff\x9f\xbb\xff\x31\x71\x4b\x93\xfd\x0f\x00\x00" "\x00\x1d\xe4\xee\x7f\x6c\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x3f\x2e" "\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x1f\x1f\xb7\x34\xd9\xff\xfa\x7f" "\xfd\xff\x32\xfa\xff\x7c\x05\xfd\xbf\xfe\xff\xca\xf7\xff\x49\xff\xbf\x4c" "\xfa\xff\x69\xfa\xff\x0d\x46\xe9\xff\x2f\xd1\xae\xfb\xf9\xa5\xbf\x7f\xfd" "\xbf\xfe\x9f\xfd\xe6\xd6\xff\xe7\xee\x7f\x42\xdc\xd2\x64\xff\x03\x00\x00" "\x40\x07\xb9\xfb\x9f\x18\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x4f\x8a" "\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x27\xc7\x2d\x4d\xf6\xbf\xfe\x5f" "\xff\xbf\x8c\xfe\xdf\xf3\xff\xf5\xff\x9e\xff\xaf\xff\x3f\x18\xfd\xff\x34" "\xfd\xff\x06\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x56\xcd\xad\xff\xcf\xdd\x7f" "\x53\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x9f\x12\xb7\xd8\xff\x00" "\x00\x00\x30\x8c\xdc\xfd\x4f\x8d\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe" "\xa7\xc5\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xd7\xbf\xbe" "\xfe\x7f\x99\xf4\xff\xd3\xf4\xff\x1b\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\x5b" "\x35\xa3\xfe\xff\x9c\x9f\x75\x7c\xf5\xf4\xb8\xa5\xc9\xfe\x07\x00\x00\x80" "\x0e\x72\xf7\x3f\x23\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x9f\x19\xb7" "\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xcf\x8a\x5b\x9a\xec\x7f\xfd\xff\x6c" "\xfa\xff\xd3\x39\xdf\x58\xfd\xff\x89\xd5\x6a\xa5\xff\x5f\x35\xed\xff\x4f" "\x9c\xf3\xeb\x59\x9f\x4b\xfd\xbf\xfe\xff\x10\xe8\xff\xa7\xe9\xff\x37\xd0" "\xff\xeb\xff\xf5\xff\xfa\x7f\xb6\xea\x70\xfb\xff\x53\x7f\xe6\x4f\xff\xfb" "\x00\x72\xf7\x3f\x3b\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xcf\x89" "\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xe7\xc6\x2d\xf6\x3f\x00\x00\x00" "\x0c\x23\x77\xff\xf3\xe2\x96\x26\xfb\x5f\xff\x3f\x9b\xfe\xff\xb4\xb1\xfa" "\x7f\xcf\xff\x3f\xff\xf3\xd1\xa9\xff\xf7\xfc\xff\xfd\xf4\xff\x87\x43\xff" "\x3f\x4d\xff\xbf\x81\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\x55\x87\xdb\xff\x6f" "\xfe\x76\xee\xfe\xe7\xc7\x4d\x47\xaf\xb9\xe4\x2f\x11\x00\x00\x00\x98\x99" "\xdc\xfd\x2f\x88\x5b\x9a\xfc\xfd\x3f\x00\x00\x00\x74\x90\xbb\xff\x85\x71" "\x8b\xfd\x0f\x00\x00\x00\x73\xf6\xaf\xff\x76\xc1\xff\xd7\x4d\xfb\xbe\x27" "\x77\xff\x8b\xe2\x96\x26\xfb\x5f\xff\xbf\xdd\xfe\xff\xe8\x39\xdf\xa7\xff" "\xd7\xff\x9f\xff\xf9\xd0\xff\xeb\xff\xf5\xff\x57\x9e\xfe\x7f\x9a\xfe\x7f" "\x03\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xab\xe6\xd6\xff\xe7\xee\x7f\x71\xdc" "\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x6f\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\xef\xf9\xff\xfa\x7f\xfd\xbf\xfe\x7f\xfd\xeb\xeb\xff" "\x97\x49\xff\x3f\x4d\xff\xbf\x81\xfe\x5f\xff\xbf\xdb\xfe\xff\xd8\xd9\xff" "\x53\xff\xcf\x18\x2e\xa2\xff\x3f\x79\xf2\xe4\xf5\x57\xbc\xff\xcf\xdd\xff" "\xb2\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xbf\x3c\x6e\xb1\xff\x01" "\x00\x00\x60\x18\xb9\xfb\x5f\x11\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd" "\xaf\x8c\x5b\x9a\xec\x7f\xfd\x7f\xd3\xfe\x3f\x3f\xea\x17\xd9\xff\x1f\xdf" "\x6d\xff\x7f\xc3\x6a\xa5\xff\xd7\xff\xeb\xff\xf5\xff\xd3\xf4\xff\xd3\xf4" "\xff\x1b\xe8\xff\xf5\xff\x9e\xff\xaf\xff\x67\xab\xe6\xf6\xfc\xff\xdc\xfd" "\xaf\x8a\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xab\xe3\x16\xfb\x1f" "\x00\x00\x00\x86\x91\xbb\xff\x35\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd" "\xff\xda\xb8\xa5\xc9\xfe\xd7\xff\x37\xed\xff\x3d\xff\x5f\xff\xaf\xff\x3f" "\xec\xfe\xff\x8e\x95\xfe\xff\x50\x2c\xa2\xff\x3f\x71\xe1\xd7\x9f\x7b\xff" "\x7f\xa3\xfe\x5f\xff\x3f\xa1\x5d\xff\xff\xff\xff\xbb\xe7\x9b\xfa\x7f\xfd" "\x3f\xfb\xcd\xad\xff\xcf\xdd\xff\xba\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e" "\x72\xf7\xbf\x3e\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xdf\x10\xb7\xd8" "\xff\x00\x00\x00\x30\x8c\xdc\xfd\x6f\x8c\x9b\x8e\x34\xd9\xff\xfa\x7f\xfd" "\xbf\xfe\x5f\xff\xaf\xff\x5f\xff\xfa\x87\xfc\xfc\xff\xa3\xab\xd5\x4a\xff" "\xbf\x05\x8b\xe8\xff\x27\xcc\xbd\xff\xdf\xce\xf3\xff\xcf\xff\x5d\x7e\x96" "\xfe\x5f\xff\xbf\xe4\xf7\xaf\xff\xd7\xff\xb3\xdf\xdc\xfa\xff\xdc\xfd\x6f" "\x8a\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x9b\xe3\x16\xfb\x1f\x00" "\x00\x00\x86\x91\xbb\xff\x2d\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff" "\xd6\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xe1\xfb\xff\x1b\x17" "\xd1\xff\x7b\xfe\xff\x96\xe8\xff\xa7\xcd\xa3\xff\xbf\x30\xfd\xbf\xfe\x7f" "\xc9\xef\x5f\xff\xaf\xff\xe7\xe0\x76\xd5\xff\xe7\xee\x7f\x5b\xdc\xd2\x64" "\xff\x03\x00\x00\x40\x07\xb9\xfb\xdf\x1e\xb7\xd8\xff\x00\x00\x00\x30\x8c" "\xdc\xfd\xef\x88\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x77\xc6\x2d\x4d" "\xf6\xbf\xfe\x5f\xff\x7f\x31\xfd\x7f\xbe\x4f\xfd\xff\x58\xfd\xff\xb1\xd9" "\xf5\xff\xc7\xf7\xfc\xe7\x35\x79\xfe\xbf\xfe\x7f\x4b\xf4\xff\xd3\xf4\xff" "\x1b\xe8\xff\xf5\xff\xfa\xff\x9b\xf4\xff\x6c\xd3\xdc\x9e\xff\x9f\xbb\xff" "\x5d\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x77\xdc\xfa\x9f\x6e" "\xed\x7f\x00\x00\x00\x18\x46\xee\xfe\xf7\xc4\x2d\xf6\x3f\x00\x00\x00\x0c" "\x23\x77\xff\x7b\xe3\x96\x26\xfb\x5f\xff\xaf\xff\xf7\xfc\x7f\xfd\xff\xf0" "\xcf\xff\xd7\xff\xb7\xa2\xff\x9f\xa6\xff\xdf\x40\xff\xaf\xff\xd7\xff\x7b" "\xfe\x3f\x5b\x35\xb7\xfe\x3f\x77\xff\xfb\xe2\x96\x26\xfb\x1f\x00\x00\x00" "\x3a\xc8\xdd\xff\xfe\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x40\xdc" "\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xdf\x12\xb7\x34\xd9\xff\xfa\x7f\xfd" "\xbf\xfe\x5f\xff\xaf\xff\x3f\xf3\x6b\xa8\xff\x1f\x83\xfe\x7f\xda\xe1\xf4" "\xff\x27\xf4\xff\xfa\xff\xea\xe7\xaf\x8a\xdf\x05\xfa\x7f\xfd\xff\xa6\x9f" "\xcf\x98\xe6\xd6\xff\xe7\xee\xff\x60\xdc\xd2\x64\xff\x03\x00\x00\x40\x07" "\xb9\xfb\x3f\x14\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x1f\x8e\x5b\xec" "\x7f\x00\x00\x00\x58\xa4\x23\x6b\xbe\x2f\x77\xff\x47\xe2\x96\x26\xfb\x5f" "\xff\xaf\xff\xd7\xff\xeb\xff\x0f\xd6\xff\x5f\x75\xdb\xc8\xfd\xff\xba\xd7" "\xd7\xff\x2f\xd3\x4e\xfa\xff\xfc\x50\xe8\xff\x3d\xff\x3f\xf4\xe9\xff\xff" "\x73\xcf\xb7\x96\xf6\xfc\xff\xf3\xff\xfb\x4b\xff\xaf\xff\x67\xfb\xe6\xd6" "\xff\xe7\xee\xff\x68\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x3f\x16" "\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x1f\x8f\x5b\xec\x7f\x00\x00\x00" "\x18\x46\xee\xfe\x4f\xc4\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x7b" "\xfe\xff\xfa\xd7\xd7\xff\x2f\x93\xe7\xff\x4f\xd3\xff\x6f\xa0\xff\xdf\xe9" "\xf3\xf3\x97\xfe\xfe\xf5\xff\xfa\x7f\xf6\x9b\x5b\xff\x9f\xbb\xff\x93\x71" "\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x54\xdc\x62\xff\x03\x00\x00" "\xc0\x30\x72\xf7\x7f\x3a\x6e\xb1\xff\x01\x00\x00\x60\x18\xa7\x77\x7f\xc6" "\x65\x0d\xf7\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xd7\xbf\xbe\xfe\x7f" "\x99\xf4\xff\xd3\xf4\xff\x1b\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\x5b\x35\xb7" "\xfe\xff\x33\xa7\x7f\xd6\xf1\xd5\x67\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a" "\xc8\xdd\xff\xb9\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x7c\xdc\x62" "\xff\x03\x00\x00\xc0\x30\x72\xf7\x7f\x21\x6e\x69\xb2\xff\xf5\xff\xfa\xff" "\x65\xf4\xff\x27\x4f\x9e\xbc\x5e\xff\xaf\xff\xdf\xfb\xf5\x9c\xed\xff\x6f" "\xd5\xff\x53\xf4\xff\xd3\xf4\xff\x1b\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\x5b" "\x35\xb7\xfe\x3f\x77\xff\x17\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd" "\xff\xa5\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x72\xdc\x62\xff\x03" "\x00\x00\xc0\x30\x72\xf7\x7f\x25\x6e\x69\xb2\xff\xf5\xff\x33\xe8\xff\x8f" "\xeb\xff\x3d\xff\x5f\xff\xbf\xf2\xfc\x7f\xfd\xff\x96\xe8\xff\xa7\xe9\xff" "\x37\x18\xb1\xff\x3f\x7e\xf0\x2f\x7f\xd7\xfd\xfc\xe5\xda\xf5\xfb\xd7\xff" "\xeb\xff\xd9\x6f\x6e\xfd\x7f\xee\xfe\xaf\xc6\x2d\x4d\xf6\x3f\x00\x00\x00" "\x74\x90\xbb\xff\x6b\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xf5\xb8" "\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x46\xdc\xd2\x64\xff\xeb\xff\x0f" "\xaf\xff\x3f\xf5\xcf\xae\xcb\xf3\xff\x4f\xac\xd6\xbf\x7f\xfd\xff\xdc\xfa" "\xff\x23\xfa\x7f\xfd\xff\x70\xf4\xff\xd3\xf4\xff\x1b\x8c\xd8\xff\x5f\x84" "\x5d\xf7\xf3\x4b\x7f\xff\xfa\x7f\xfd\x3f\xfb\xcd\xad\xff\xcf\xdd\xff\xcd" "\xb8\x65\xef\xf0\xbb\xe6\xe2\xbe\x4a\x00\x00\x00\x60\x4e\x72\xf7\x7f\x2b" "\x6e\x69\xf2\xf7\xff\x00\x00\x00\xd0\x41\xee\xfe\x6f\xc7\x2d\xf6\x3f\x00" "\x00\x00\x0c\x23\x77\xff\x77\xe2\x96\x26\xfb\x5f\xff\x3f\x83\xe7\xff\x0f" "\xd8\xff\x7b\xfe\xff\xfa\xcf\xc7\xfc\xfa\x7f\xcf\xff\x3f\xe7\xf5\xaf\xd6" "\xff\x8f\x41\xff\x3f\x4d\xff\xbf\x81\xfe\x5f\xff\xaf\xff\xdf\x52\xff\x9f" "\x9f\x66\xfd\x7f\x77\x73\xeb\xff\x73\xf7\x7f\x37\x6e\x69\xb2\xff\x01\x00" "\x00\xa0\x83\xdc\xfd\xdf\x8b\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xef" "\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xad\x71\xcb\x39\xfb\x7f\x5d" "\xdb\x3d\x0a\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xaf\x7f\x7d\xfd\xff\x32" "\xe9\xff\xa7\x1d\xb4\xff\x3f\xb6\xba\xbc\xfe\x3f\xe9\xff\xf5\xff\xfa\xff" "\xae\xfd\xbf\xe7\xff\x73\xc6\xdc\xfa\xff\xdc\xfd\x3f\x88\x5b\xfc\xfd\x3f" "\x00\x00\x00\x2c\xce\x35\x17\xf8\xfe\xdc\xfd\x3f\x8c\x5b\xec\x7f\x00\x00" "\x00\x18\x46\xee\xfe\x1f\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x8f" "\xe3\x96\xdb\xaf\xde\xd5\x5b\x3a\x54\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff" "\x5f\xff\xfa\xfa\xff\x65\xd2\xff\x4f\xf3\xfc\xff\x0d\xf4\xff\xdb\xe8\xe7" "\xaf\xd5\xff\x8f\xd1\xff\xaf\x56\xfa\x7f\x2e\xdf\xdc\xfa\xff\xdc\xfd\x3f" "\x89\x5b\xfc\xfd\x3f\x00\x00\x00\x0c\x23\x77\xff\x4f\xe3\x16\xfb\x1f\x00" "\x00\x00\x86\x91\xbb\xff\x67\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff" "\xf3\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\x2f\xb3\xff\x3f\x9d\x66\xea\xff\xcf" "\xd0\xff\x9f\xa1\xff\x5f\x4f\xff\x7f\x38\xf4\xff\xd3\xf4\xff\x1b\xe8\xff" "\x3d\xff\x5f\xff\xef\xf9\xff\x6c\xd5\xdc\xfa\xff\xdc\xfd\xbf\x88\x5b\x9a" "\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x2f\xe3\x16\xfb\x1f\x00\x00\x00\x86" "\x91\xbb\xff\x57\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xeb\xb8\xa5" "\xc9\xfe\xdf\x59\xff\x1f\xff\xa8\xf5\xff\x8b\xef\xff\x3d\xff\xff\x8a\xf7" "\xff\xa7\xbe\x3a\xfd\xbf\xfe\x5f\xff\x7f\x50\xfa\xff\x69\xfa\xff\x0d\xf4" "\xff\xfa\x7f\xfd\xbf\xfe\x9f\xad\x9a\x5b\xff\x9f\xbb\xff\x37\x71\x4b\x93" "\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x6d\xdc\x62\xff\x03\x00\x00\xc0\x30" "\x72\xf7\xff\x2e\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x6f\x8b\x5b\x9a" "\xec\x7f\xcf\xff\xd7\xff\xeb\xff\xe7\xde\xff\x7b\xfe\xbf\xfe\x5f\xff\x7f" "\x31\xf4\xff\xd3\xf4\xff\xeb\xd5\x2f\x94\xfe\x5f\xff\xaf\xff\xd7\xff\xb3" "\x55\x73\xeb\xff\x73\xf7\xff\x3e\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc" "\xfd\x7f\x88\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xdb\xe3\x16\xfb\x1f" "\x00\x00\x00\x86\x91\xbb\xff\x8f\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff" "\xf5\xff\xfa\xff\xf5\xaf\xaf\xff\x5f\x26\xfd\xff\xb4\x5d\xf6\xff\x77\xfa" "\xf7\xcd\x2f\xeb\xf9\xff\x3b\xef\xff\xf3\x2d\xe8\xff\xf5\xff\xfa\x7f\xb6" "\x62\x6e\xfd\x7f\xee\xfe\x3f\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb" "\xff\xcf\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x97\xb8\xc5\xfe\x07" "\x00\x00\x80\x61\xe4\xee\xff\x6b\xdc\xd2\x64\xff\x6f\xe8\xff\x8f\xd5\x0f" "\xd4\xff\x4f\xd2\xff\xef\x7d\xff\xfa\xff\xf5\x9f\x0f\xfd\xbf\xfe\x5f\xff" "\x7f\xe5\xe9\xff\xa7\x4d\xf7\xff\xe7\xfc\x6e\x6e\xf6\xfc\xff\xa2\xff\xf7" "\xfc\x7f\xfd\xbf\xfe\x9f\xad\x9a\x5b\xff\x9f\xbb\xff\x6f\x71\x4b\x93\xfd" "\x0f\x00\x00\x00\x1d\xe4\xee\xbf\x23\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9" "\xfb\xff\x1e\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xff\x88\x5b\x9a\xec" "\x7f\xcf\xff\x5f\x52\xff\x7f\xad\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x37" "\xd0\xff\x4f\xdb\xe5\xf3\xff\x0f\x42\xff\xaf\xff\x5f\xf2\xfb\xd7\xff\xeb" "\xff\xd9\x6f\x6e\xfd\x7f\xee\xfe\x7f\x06\x00\x00\xff\xff\xa1\x53\x47" "\x1d", 24984)); NONFAILING(syz_mount_image(/*fs=*/0x2000000002c0, /*dir=*/0x200000000040, /*flags=MS_NOSUID|MS_NOEXEC*/ 0xa, /*opts=*/0x200000000140, /*chdir=*/0xfe, /*size=*/0x6198, /*img=*/0x200000000300)); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); setup_sysctl(); setup_cgroups(); const char* reason; (void)reason; if ((reason = setup_usb())) { fprintf(stderr, "reproducer setup failed: USB injection: %s\n", reason); exit(1); } install_segv_handler(); use_temporary_dir(); do_sandbox_none(); return 0; }