// https://syzkaller.appspot.com/bug?id=1fa70dbbf3f9c656d7ce789db5d4370e3660f96f // 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_fsconfig #define __NR_fsconfig 431 #endif #ifndef __NR_fspick #define __NR_fspick 433 #endif #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } struct nlmsg { char* pos; int nesting; struct nlattr* nested[8]; char buf[4096]; }; static void netlink_init(struct nlmsg* nlmsg, int typ, int flags, const void* data, int size) { memset(nlmsg, 0, sizeof(*nlmsg)); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_type = typ; hdr->nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK | flags; memcpy(hdr + 1, data, size); nlmsg->pos = (char*)(hdr + 1) + NLMSG_ALIGN(size); } static void netlink_attr(struct nlmsg* nlmsg, int typ, const void* data, int size) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_len = sizeof(*attr) + size; attr->nla_type = typ; if (size > 0) memcpy(attr + 1, data, size); nlmsg->pos += NLMSG_ALIGN(attr->nla_len); } static void netlink_nest(struct nlmsg* nlmsg, int typ) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_type = typ; nlmsg->pos += sizeof(*attr); nlmsg->nested[nlmsg->nesting++] = attr; } static void netlink_done(struct nlmsg* nlmsg) { struct nlattr* attr = nlmsg->nested[--nlmsg->nesting]; attr->nla_len = nlmsg->pos - (char*)attr; } static int netlink_send_ext(struct nlmsg* nlmsg, int sock, uint16_t reply_type, int* reply_len, bool dofail) { if (nlmsg->pos > nlmsg->buf + sizeof(nlmsg->buf) || nlmsg->nesting) exit(1); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_len = nlmsg->pos - nlmsg->buf; struct sockaddr_nl addr; memset(&addr, 0, sizeof(addr)); addr.nl_family = AF_NETLINK; ssize_t n = sendto(sock, nlmsg->buf, hdr->nlmsg_len, 0, (struct sockaddr*)&addr, sizeof(addr)); if (n != (ssize_t)hdr->nlmsg_len) { if (dofail) exit(1); return -1; } n = recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); if (reply_len) *reply_len = 0; if (n < 0) { if (dofail) exit(1); return -1; } if (n < (ssize_t)sizeof(struct nlmsghdr)) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type == NLMSG_DONE) return 0; if (reply_len && hdr->nlmsg_type == reply_type) { *reply_len = n; return 0; } if (n < (ssize_t)(sizeof(struct nlmsghdr) + sizeof(struct nlmsgerr))) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type != NLMSG_ERROR) { errno = EINVAL; if (dofail) exit(1); return -1; } errno = -((struct nlmsgerr*)(hdr + 1))->error; return -errno; } static int netlink_send(struct nlmsg* nlmsg, int sock) { return netlink_send_ext(nlmsg, sock, 0, NULL, true); } static int netlink_query_family_id(struct nlmsg* nlmsg, int sock, const char* family_name, bool dofail) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = CTRL_CMD_GETFAMILY; netlink_init(nlmsg, GENL_ID_CTRL, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, CTRL_ATTR_FAMILY_NAME, family_name, strnlen(family_name, GENL_NAMSIZ - 1) + 1); int n = 0; int err = netlink_send_ext(nlmsg, sock, GENL_ID_CTRL, &n, dofail); if (err < 0) { return -1; } uint16_t id = 0; struct nlattr* attr = (struct nlattr*)(nlmsg->buf + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg->buf + n; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == CTRL_ATTR_FAMILY_ID) { id = *(uint16_t*)(attr + 1); break; } } if (!id) { errno = EINVAL; return -1; } recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); return id; } static 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 void netlink_add_device_impl(struct nlmsg* nlmsg, const char* type, const char* name, bool up) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; netlink_init(nlmsg, RTM_NEWLINK, NLM_F_EXCL | NLM_F_CREATE, &hdr, sizeof(hdr)); if (name) netlink_attr(nlmsg, IFLA_IFNAME, name, strlen(name)); netlink_nest(nlmsg, IFLA_LINKINFO); netlink_attr(nlmsg, IFLA_INFO_KIND, type, strlen(type)); } static void netlink_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_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 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, destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, loopfd = -1, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } errno = err; return res; } static void 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", "+memory", "+io", "+pids"}; const char* net_controllers[] = {"net", "net_prio", "devices", "blkio", "freezer"}; const char* cpu_controllers[] = {"cpuset", "cpuacct", "hugetlb", "rlimit"}; 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/memory.low", cgroupdir); write_file(file, "%d", 298 << 20); snprintf(file, sizeof(file), "%s/memory.high", cgroupdir); write_file(file, "%d", 299 << 20); snprintf(file, sizeof(file), "%s/memory.max", cgroupdir); write_file(file, "%d", 300 << 20); 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(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 setup_common() { if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) { } } static void setup_binderfs() { if (mkdir("/dev/binderfs", 0777)) { } if (mount("binder", "/dev/binderfs", "binder", 0, NULL)) { } } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setsid(); struct rlimit rlim; rlim.rlim_cur = rlim.rlim_max = (200 << 20); setrlimit(RLIMIT_AS, &rlim); rlim.rlim_cur = rlim.rlim_max = 32 << 20; setrlimit(RLIMIT_MEMLOCK, &rlim); rlim.rlim_cur = rlim.rlim_max = 136 << 20; setrlimit(RLIMIT_FSIZE, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_STACK, &rlim); rlim.rlim_cur = rlim.rlim_max = 128 << 20; setrlimit(RLIMIT_CORE, &rlim); rlim.rlim_cur = rlim.rlim_max = 256; setrlimit(RLIMIT_NOFILE, &rlim); if (unshare(CLONE_NEWNS)) { } if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL)) { } if (unshare(CLONE_NEWIPC)) { } if (unshare(0x02000000)) { } if (unshare(CLONE_NEWUTS)) { } if (unshare(CLONE_SYSVSEM)) { } typedef struct { const char* name; const char* value; } sysctl_t; static const sysctl_t sysctls[] = { {"/proc/sys/kernel/shmmax", "16777216"}, {"/proc/sys/kernel/shmall", "536870912"}, {"/proc/sys/kernel/shmmni", "1024"}, {"/proc/sys/kernel/msgmax", "8192"}, {"/proc/sys/kernel/msgmni", "1024"}, {"/proc/sys/kernel/msgmnb", "1024"}, {"/proc/sys/kernel/sem", "1024 1048576 500 1024"}, }; unsigned i; for (i = 0; i < sizeof(sysctls) / sizeof(sysctls[0]); i++) write_file(sysctls[i].name, sysctls[i].value); } static int wait_for_loop(int pid) { if (pid < 0) exit(1); int status = 0; while (waitpid(-1, &status, __WALL) != pid) { } return WEXITSTATUS(status); } static void drop_caps(void) { struct __user_cap_header_struct cap_hdr = {}; struct __user_cap_data_struct cap_data[2] = {}; cap_hdr.version = _LINUX_CAPABILITY_VERSION_3; cap_hdr.pid = getpid(); if (syscall(SYS_capget, &cap_hdr, &cap_data)) exit(1); const int drop = (1 << CAP_SYS_PTRACE) | (1 << CAP_SYS_NICE); cap_data[0].effective &= ~drop; cap_data[0].permitted &= ~drop; cap_data[0].inheritable &= ~drop; if (syscall(SYS_capset, &cap_hdr, &cap_data)) exit(1); } static int do_sandbox_none(void) { if (unshare(CLONE_NEWPID)) { } int pid = fork(); if (pid != 0) return wait_for_loop(pid); setup_common(); sandbox_common(); drop_caps(); initialize_netdevices_init(); if (unshare(CLONE_NEWNET)) { } write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535"); initialize_netdevices(); setup_binderfs(); loop(); exit(1); } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; retry: while (umount2(dir, MNT_DETACH | UMOUNT_NOFOLLOW) == 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, MNT_DETACH | UMOUNT_NOFOLLOW) == 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, MNT_DETACH | UMOUNT_NOFOLLOW)) 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, MNT_DETACH | UMOUNT_NOFOLLOW)) 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); } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { int i, call, thread; for (call = 0; call < 4; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); if (call == 2) break; event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); close_fds(); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { 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(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[1] = {0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: memcpy((void*)0x20001200, "jfs\000", 4); memcpy((void*)0x20005e40, "./file0\000", 8); *(uint8_t*)0x200000c0 = 0; memcpy( (void*)0x200000c1, "\x83\xe6\xd8\xa5\xe0\x66\x2b\xfe\x51\x5a\x1d\xab\x59\xd3\x7f\x34\xea" "\xd1\x21\x05\xd7\x97\x1e\xab\x2d\x71\x4a\x22\xeb\xc9\x75\x64\xbc\xc0" "\x9a\x0c\xd1\x01\xff\x05\xd2\xd1\x5e\xad\xbe\x50\xbd\x9f\x61\xd7\x0b" "\x04\x47\x94\x10\x91\xf7\x6c\x6b\xb2\xf5\xb6\x63\x4a\xd4\x3c\xfe\x45" "\x50\x53\x49\xf4\x8f\xf0\xdd\x44\x15\x02\x06\xa4\xe8\x7b\x50\xeb\xb0" "\xc1\x0c\x85\xc5\x62\xbe\x50\x10\x0e\xf4\xba\xec\x6f\x7c\xd9\x52\x49" "\x7d\x00\xe5\xef\x3b\x13\x5e\x24\x8b\xa6\xba\x5c\xe0\xee\xcd\xd2\x95" "\x2b\xaf\xbe\x6b\xc0\x76\x19\x49\xb5\xeb\x4e\xd7\x08\x8c\x4a\x2c\x2b" "\xd2\x02\xd5\x01\xfd\xb1\x17\x76\xbc\x67\x7f\xe1\xc2\xd8\x14\xa8\xb6" "\x74\x45\x1b\xd8\xde\xd3\x00\x59\x3c\xc5\x5a\x17\xb5\xd1\x77\x31\x1c" "\x85\x64\x8d\x25\x15\xda\x23\x45\x86\x19\xee\x21\xe7\x42\x2e\x13\x9c" "\xce\x06\xb0\x20\x6f\x1b\x9e\x04\xe0\x85\xcd\x33\x7e\x43\x32\xd9\xd6" "\x1a\x85\xf4\xbd\x20\x8e\x1c\x8a\x30\x1d\xa3\xe9\xf1\x44\x84\x9e\xa1" "\x47\x31\x5a\x96\x71\xe9\xbd\x7b\x07\x0a\x28\xf0\x5c\x77\xd9\x06\x20" "\xeb\xc6\xff\xa8\x9c\x90\x99\x39\xff\xdf\x0f\x8c\x70\xfc\x2a\x72\xf0" "\x10\x70\x24\xfa\x4d\x59\xbf\xe9\x85\x64\x78\x59\x61\x71\x47\x78\x0b" "\xfe\x08\x4c\x9a\x33\xbf\xd0\x85\xb7\xec\xd0\xc8\x03\x71\xe8\xdc\xe1" "\x1f\x61\xf5\xf5\xc6\x10\xae\x52\x63\x72\xd0\x9a\x1a\xe5\xe7\x51\xbd" "\xed\xbf\x5e\xf6\x31\x47\xb2\x1e\x1a\xa7\x4f\xc2\x42\x42\xb8\x3d\xa9" "\x4d\x40\x3e\xac\xc5\x8f\x92\xe2\x60\x67\x96\x98\xba\xa3\x5a\xd8\xc5" "\xf7\xd2\xd7\x39\x9b\x67\xe5\x55\xb5\xe8\x38\x40\x2f\x1f\x98\x0c\x5e" "\x80\x58\xb2\xc2\x9b\x7a\x31\xc7\x6e\x01\x8e\x2c\xcf\xa5\x02\x57\xa3" "\x29\x51\x93\xdf\x5e\xe5\xbd\x9c\xa9\x65\xef\x29\x7d\x05\xcd\x99\x0d" "\x6a\x27\x06\x27\xbd\x82\xd8\x42\xfa\x14\x64\xc9\x17\xc7\xdc\x32\x1a" "\xf5\xc1\xac\xc2\x89\xca\xae\xf3\xe0\xb2\x31\xf6\x38\x23\xe8\xea\x44" "\xec\x30\xb7\x19\x69\x69\x45\x24\x11\xda\x1b\x74\xac\xa8\xf3\xab\xf3" "\xb1\xd4\x7a\x57\x29\x2f\x67\xb3\xec\xfb\x4b\xc1\x0b\x1e\xd8\x92\xac" "\x34\xca\xc8\xfe\xc7\x33\xb2\x91\x26\x99\x79\x06\xb6\xba\xe7\x12\x11" "\xd3\xc3\x2b\x3b\xbb\x31\xb4\xaf\xdc\x8c\xf5\x2d\x82\x1c\x98\x92\x31" "\x3c\x27\x89\x96\x52\xd0\x63\x5c\x33\xac\x30\xd1\x23\xcd\xaa\x21\xc6" "\xce\x88\x98\x91\x32\x03\xf7\x3e\x6d\x95\xda\x34\x3c\xbf\xfb\xe1\x5f" "\xbf\x85\xa8\xff\xfc\x66\x7f\xd6\x94\x0d\x47\xb3\xbc\x8a\xb4\xba\x53" "\xd4\x0f\x63\xaa\x55\x05\x3d\xd1\xa3\x3b\x6d\x8d\x01\x85\x55\x02\x3f" "\x7a\x1f\xcf\x86\xff\x6c\x0d\x76\x9f\xaa\xb1\xd9\xae\x6b\xd9\x29\x15" "\x37\xf4\x65\x58\xf5\x19\xb5\x8f\x0d\x9c\x91\xb0\x1a\xfe\x36\x73\x17" "\x10\x52\x3e\x84\x0a\x6d\x86\xd0\x67\x07\xb8\xf2\x0d\x61\xad\x02\xd7" "\x8b\x7c\x35\x10\xd9\x8e\x36\x76\x8c\xff\x6c\x1f\x19\xd4\x00\xfe\x38" "\x5c\xd2\xb2\xcf\x6e\xf4\x4e\xb0\xfc\x59\xd2\xaf\x32\xa7\x3c\x20\x02" "\xd1\x9a\x9b\xb5\xcb\x28\x5b\x22\x59\x6a\xff\xfb\xfa\x7e\x04\xd3\x6b" "\xdf\xc9\xd4\xc5\x77\x73\xe6\x22\x17\x37\x12\xa9\x19\x6a\x10\xd0\xc1" "\xd7\xf7\x57\x2b\x1f\x60\x3e\xd4\x6f\x30\x9e\xe1\xb8\x45\xa8\xae\x4c" "\x02\x3d\x41\xc5\x0d\x23\x56\xb5\xa0\xea\x2c\x64\xf2\xac\x8d\xe2\xe6" "\x06\x10\xf9\x06\xfd\xe3\x8b\x47\xa2\x01\x00\x00\x00\xbb\xdc\x44\x52" "\x22\x4e\x14\x7e\xe9\x15\x0b\xba\x1e\x70\xc6\xa4\xd8\xb9\x8f\xe9\x0f" "\xc2\xea\x39\xe7\xa3\x3a\x12\x77\x88\xf0\x34\xab\xa1\xc7\x37\x71\x70" "\x05\x3d\xfb\xfb\x4a\xd4\x03\x4d\x23\xec\xde\x4d\x57\x88\x5b\xcf\x37" "\xa0\xf2\xce\x1f\xab\x20\x25\xdf\x81\x9c\xa8\x76\x03\x43\x6f\x1b\x50" "\x7b\x5e\x89\x89\x84\xc9\x9a\xfd\x19\xc6\xe7\x1e\xcd\x41\x7f\x72\xda" "\xe1\xf0\x9a\x94\xc7\xf9\xee\x2e\x16\x27\xda\x0f\xd5\x33\xdf\xec\x73" "\x29\x38\x9b\xd6\x90\x28\x5c\x6a\xee\x79\xb0\xd2\xc4\x75\x6b\x82\xc6" "\xa6\xd1\x2d\x65\x38\x05\xa5\x25\x8c\x37\x0f\x82\xc1\x8a\x22\x30\xc1" "\x71\xd0\x3c\xc3\xe9\x83\xc7\xe8\x42\xaf\x80\xc3\xf0\x16\xae\x48\x35" "\x97\x5c\x02\xed\xfd\xa9\x56\x3a\xe8\x75\xdb\x4e\x3e\x7b\xc9\xf6\xc5" "\x48\x0b\x24\x16\x42\x3e\x8f\x68\x96\xe3\xab\x90\x1e\x3b\x13\xa4\x51" "\x49\x84\xb9\xb5\x5c\x1a\xea\x9e\x64\x11\xa7\xa9\x49\x3b\xbd\xb1\x99" "\xfb\x71\xac\x35\x2c\x0e\x0b\xa1\xc5\x71\x10\xd8\xa1\xeb\x41\x49\x6c" "\x28\xbd\x4d\x0d\x13\x58\xa1\x6d\xf4\x07\x3d\xfc\x62\x10\xf7\x6a\x49" "\xc7\x34\x04\xaf\xc6\x9c\x50\x25\x5a\xa2\x41\xd0\x8d\x43\x40\x6c\x41" "\xcc\xc4\xac\xa2\x6b\xec\x0d\x09\x4d\x70\x53\xdc\x4c\x13\xc2\x04\x02" "\xd5\xfa\x91\x0f\x92\x4e\xde\x22\x81\xfb\xa2\xe0\x9a\x9a\x65\x51\x73" "\xd9\x71\xde\x1a\x99\xd5\x31\x4b\x9a\x70\xda\x79\x98\xd2\x7e\x51\xda" "\xda\x4a\x61\x0c\xd5\x65\x49\xaf\xf5\x16\x97\xd1\xfe\x2b\x02\xb2\xf9" "\x66\x07\xa6\xbb\x1b\xf7\xe1\x30\xfd\x5a\x2f\x55\xab\xce\x0b\x6e\xe2" "\x84\x2d\xef\xb0\x23\xfd\xcf\x50\xb7\x00\xd8\xf9\xf1\x91\x6d\xbb\x2d" "\x0c\x96\xa0\x76\x21\xbc\x27\x70\x4b\xaf\xb9\x0c\x4b\xfd\xbd\x76\x3e" "\x44\x8c\x94\xce\x83\xc1\xf9\x80\x38\x98\x9b\x77\xa1\x4d\x0d\xfd\xb4" "\xc9\x9e\x0f\x9b\xfa\x12\x39\xe2\xe4\x87\x19\x48\x42\x47\x33\x29\x2c" "\x28\xf0\xa6\xd0\xd1\x31\x36\x84\x73\xf7\x69\xd4\x98\x00\x7a\x58\x9e" "\x3a\xd4\x2e\xa5\x29\x6b\x37\x58\xbf\x3e\x77\x1b\xc9\x5d\x4a\x50\xf6" "\x32\x56\x82\xc3\xc1\xf4\x18\x3e\xd4\x70\x0d\xc0\xc7\x12\xa1\x6c\x9a" "\x6a\xff\x13\xc7\x52\xee\xcb\x05\x9c\x9a\x85\xbf\xba\x9b\x7a\x41\xbc" "\x07\x82\x42\x14\x3d\xe5\x00\x19\x02\x73\x73\xe8\x64\x1d\x21\x52\x23" "\xfa\x5f\x34\xda\x0d\x80\x77\xba\x42\xf4\x06\x76\x59\x34\xc3\xc7\xd8" "\x3d\x16\xe5\x01\x08\x99\x4b\x82\xcd\x96\xc2\x43\xa2\x28\xde\xf5\x37" "\x69\x27\xe6\x05\x0c\x6b\xe7\x07\x87\x52\x43\xbf\xbb\x16\xe8\x87\x7c" "\x76\xbb\x1c\xa8\x47\xa5\xf8\xf8\x8c\x92\xcc\x64\xb7\x92\xf1\x90\x71" "\xd4\x17\x46\x4d\x4a\x38\xb6\xe9\x90\x43\x1f\x27\x7c\xd5\x13\x44\x5f" "\xfd\x30\xff\x01\xf7\x02\xca\x3b\x5c\x82\xf9\x7e\xd8\x0f\x24\x09\xaf" "\xdc\xf2\x4f\x48\x75\xea\xd9\xcd\xec\xda\x9f\x82\x77\xfa\xe2\x8a\x57" "\xf7\x8f\xe8\x0e\x21\xe9\xa2\xa8\x09\x46\xea\xe7\xbc\xdc\xca\x54\x5f" "\x68\x1f\x0d\x28\x67\x56\x68\xc9\x38\x82\x20\x2a\x11\x89\xf9\xb8\xc0" "\x13\x47\xda\xb7\xbb\x62\x0e\x50\x08\x93\x68\xd2\x17\x93\x1c\x2d\xa8" "\xd5\xef\x7d\x91\x38\xa3\x89\x3d\x25\x54\xa3\x69\xea\xa0\xd1\xbd\xa5" "\xf6\xc2\xed\xc0\x97\xb8\x4f\x04\xc5\xf2\x69\x44\xb6\x89\x9a\x0e\x20" "\x98\x29\x03\x45\xcd\x04\x7a\x0c\x8b\x9f\x2a\xeb\x45\x01\xf8\x21\xe1" "\x1e\x8f\xc0\x70\x3d\x71\xc7\xdd\xb3\x3f\xf2\xdb\x66\x99\x40\x06\xa4" "\x9f\x10\x24\xa0\xff\x61\x71\x8d\x90\xbf\xcb\x46\x31\x8b\xd7\x3d\x2b" "\x3f\xcf\x6a\x84\xc3\xbe\xa8\xf1\x2f\xb1\xbb\xa9\x7f\xc0\x20\x0f\x4f" "\xcc\x51\x99\x1c\x4f\xe9\xce\xb5\x35\x0c\xeb\xcc\xbe\x64\x58\xd9\x0a" "\x17\xcd\x7e\x7b\xe5\xb3\x29\x6a\xbe\xe1\x3b\x14\x8d\x26\xe2\x93\x52" "\x51\x54\xc6\x4b\x17\xb4\x14\x30\x43\x44\x03\xdd\xba\x2d\xc2\x1e\xb4" "\x8a\x82\x5c\xe2\x19\x57\x7d\x99\xe4\xce\xdc\x38\x8c\x74\xdf\xfe\xa4" "\xc9\x75\x84\x3a\x55\x88\x34\x18\xfa\x88\xad\x68\xef\xb0\xda\xc3\x0a" "\xfb\x4d\x56\x5a\xa3\x39\xd3\x57\x7e\x9c\xef\x3b\x4a\x9d\xbb\xc6\x74" "\x9c\xea\xfb\x9c\xb8\xc9\xc6\x25\xe1\xae\xde\xa1\x57\x72\x8b\xf1\x1c" "\xa6\xd6\xb1\x6a\x09\xc4\xc9\x1c\x82\xd6\x32\xfa\x15\x57\xd4\xe5\xee" "\x34\x99\x6a\xa8\x99\x42\xcf\x00\x9b\xb6\xd4\xfa\x04\x5c\xea\x05\x8e" "\x26\x5c\xf7\xd0\xce\x53\x34\x0d\x7b\x0b\x45\x61\x38\x1f\x39\xd7\x48" "\xa0\xb7\x1f\x7b\xeb\x67\xf8\x35\x0b\x31\xc2\x85\xed\x18\x90\x81\xe0" "\xa2\xc5\x12\xa5\xc1\x6f\xb1\x41\x95\x33\xae\x97\x50\x4c\x29\x11\x30" "\xdc\xbf\x9a\x4e\xf4\x86\x10\xc6\x09\x49\x16\x69\x2f\xd2\x96\xc7\xa5" "\xa2\x18\x0f\xf8\x09\xd8\xe9\x68\x2a\xc1\x3d\xa6\x9d\x04\xa8\xdc\x01" "\xb7\xd9\xf2\x09\x27\x18\xd0\xb3\xd4\xc4\xe0\xf8\x6f\x21\x32\xa8\x0e" "\x5c\x75\x53\xdd\x7c\x2c\x92\x41\xf2\xa9\x0a\x59\xe3\x54\xef\xc6\x39" "\xbb\x04\xa9\x59\x5b\xc6\x04\x98\x12\x80\x5c\xe2\xfe\x15\xe6\x1c\x9a" "\xfe\x2f\x0b\x52\xeb\xf2\x74\xf1\x7c\x60\x4d\xd5\x7e\x8c\x3a\xa9\xe6" "\x41\x1d\x59\x62\xe6\x9d\x74\xcf\xcb\xbd\x86\xbf\xe5\x3d\x6f\xd6\x5c" "\x99\x8b\x9b\x5f\x55\x8c\x3f\xe2\xb7\x05\x21\xff\x33\xec\xa9\xb9\x0c" "\x24\x40\x30\xc7\x2e\x5c\xfe\x8e\x4c\xbd\x4f\x86\xa6\x05\x96\xdc\xcb" "\xa4\x47\xd0\x23\xf0\x66\x7d\x75\x80\x5c\x92\x27\xa5\x72\x83\xc1\xd3" "\xe0\x83\xf1\x82\xee\xfc\x88\x82\x3c\xca\x36\x5a\x17\x13\x8f\x33\x39" "\xc2\x9f\xce\x3e\xfc\xd6\x28\x81\xcf\x34\xff\x09\x32\xd8\x74\x08\x2f" "\x26\xeb\x83\xfb\xeb\xb8\x69\x4b\xd6\xae\xfa\x33\xf7\x34\x5b\xec\xfd" "\x90\xf1\x97\x54\x52\xc7\xd1\x0d\x1c\xa0\x14\xf5\x3e\x2b\x6f\x81\x4c" "\x33\x79\x85\x0b\x55\x8a\xea\x70\x2f\xed\xbb\x1a\x7d\x7d\x00\x9e\xa2" "\xc9\x45\x6e\x1b\xec\xab\x57\x6d\x1d\x60\x87\x0d\xff\x6f\x5a\x52\x78" "\x86\x45\x88\xd2\xd1\x15\xb0\x22\x4f\x02\x02\xd7\x7c\x77\xac\x4d\x83" "\x07\xb1\x68\x18\x8c\x71\xaa\x00\xfc\x46\xee\xe6\x7c\x8c\x82\x3a\x15" "\xa5\x41\x16\x18\x5d\xca\x81\xba\x54\xa5\x81\x85\xee\x31\x0f\xf2\x3f" "\xc7\xac\x7a\x19\xd0\xe5\x70\x49\xca\x8d\xb8\x2a\xf2\x0d\x57\x34\x93" "\x3d\x35\x10\x35\xf9\x85\xb2\x4a\x99\x0b\xa2\x3d\x00\x8d\xd6\x57\x59" "\x0c\xc5\x0c\xbe\x92\xde\xc6\xda\x8a\xbd\x66\xf1\x75\x8f\xb1\xda\xa8" "\x47\xb2\xaa\xea\x21\xb1\xe4\xa5\x5a\xa3\xfb\xb2\xfe\xb4\xa7\xf4\x99" "\x1a\x42\x7c\xca\x10\x11\x36\xbf\xa3\xd8\x15\x71\xcc\x85\x86\xc5\x08" "\xf5\xf3\xf5\x66\xd3\x1a\x28\xbd\xf2\xa5\x97\x59\x9e\x73\x84\x12\xc1" "\x7f\xcd\xb1\x8e\x05\x2c\x7a\x0a\x9c\x63\xf0\xe5\x79\xf9\x38\xcf\xd9" "\x88\xf4\xb4\x35\xc7\xf2\xd9\x43\xaf\xfe\xe9\xea\xe4\x9a\x6f\x71\x4c" "\x90\x40\x39\xb2\x0d\xd9\x0e\xb5\xf6\xae\x33\xa3\xd2\xa8\x5d\xae\x5d" "\xb7\x5b\x04\x7e\x83\x99\x21\x59\xfc\xb1\x71\x05\x2e\x45\x8a\xb6\x90" "\x36\x63\x49\x15\xf1\x42\x03\x1c\xaa\xd8\x67\x89\x91\x28\x26\x0c\x3a" "\x15\xf9\x9f\x67\xba\x34\x2c\x41\xe3\xba\xdf\x1f\x00\x00\x00\x6a\xa8" "\x67\x93\x81\xb0\x8a\x84\x09\x18\x9b\xd8\x45\x76\x42\x99\xd9\x03\xec" "\xba\x55\x46\x24\x88\xa5\x0f\xb5\x7e\x3a\x08\x90\xfd\xd8\x6f\x7c\x1c" "\xd6\x3b\xbe\xe4\x24\xd2\xd3\xe3\x20\x35\x1e\x37\x86\x33\xac\xfd\x25" "\x7c\x9e\x76\x21\x49\x20\x50\x6f\xd3\xe4\x27\x62\x28\xb4\x44\xb4\xb3" "\xaf\x78\xed\x0f\x4c\x7f\x7c\xc0\x95\xf4\x9f\xe8\x07\xb1\xa7\xa6\x29" "\x19\x4e\xfb\x1a\x7f\x10\xef\xe2\x1c\x2f\xd3\x47\xdf\x18\x9d\xcf\x61" "\x31\xf5\x2e\x37\x7f\xd0\x85\x64\xdf\x33\x9a\x68\xa9\x4e\x82\xbb\x02" "\xc0\x17\x66\x7f\xae\x02\xa9\x53\xc6\x8c\x4c\x0a\x0f\x74\x07\x85\x71" "\xc6\xad\x83\x6f\x73\x1b\x6b\x1a\xd6\x92\x9e\x4e\x2c\xd0\x2f\xe0\x21" "\xcf\xf9\x8c\x08\xe7\x2f\xfc\x27\xd2\xd9\xc1\x32\x58\xcd\x7e\xd7\xfd" "\xb4\xf4\xbf\x2e\xee\x53\x01\xf9\x97\xd6\x0c\xd6\x26\x96\x53\x9b\xb5" "\x76\xfc\xc4\x80\xf2\x4e\xb1\xbe\x80\x1f\xd5\x45\x83\x6f\x35\xcf\xc7" "\xd9\xd0\x22\xf0\xb8\x2f\xd8\x42\xa1\x9f\x68\x3f\xc8\x13\xd8\x24\xdd" "\xba\xb6\xe9\x51\x3c\xd2\x20\xc8\x5f\x92\x8d\x3d\xa9\x75\x15\xae\xa7" "\xf6\xb4\xd9\xc9\x72\x83\x69\xa8\x8f\x2e\x9a\x3a\x69\x15\x1a\xa9\xfa" "\x36\x9e\x7b\xdb\x32\xf0\x8f\x44\x54\x73\xee\x18\x9a\x60\x22\x6d\x67" "\x7e\x8f\x14\x51\xe4\x8a\x8e\x3c\xf1\x0f\xe0\x75\x9c\x2d\x1d\xd5\xef" "\xa4\x24\xa1\x1c\xd3\x83\xd9\x07\xe9\xda\x26\x06\x21\xee\x70\xc4\xcf" "\xe4\xa8\x49\xdb\x84\x38\xc7\x11\x0e\x90\xb7\x6b\x6a\xff\xb9\xb8\x53" "\xb0\x66\x0e\xa6\x0e\x04\x3a\xcd\xec\xd3\x83\xca\x2c\x6d\x22\x60\xa0" "\x5e\x06\xe6\x0b\x70\xd4\x8d\x7c\x30\xf0\x46\x17\x6e\x4c\x41\x79\x78" "\x3e\xca\x70\x4a\x1d\x81\xe7\x6b\x59\xc9\x7d\x57\x4f\x90\x81\xb6\x5b" "\xd3\xdc\xf6\x2a\x7e\x6d\xb6\x01\xf1\x61\x6d\xaf\x0d\xea\x64\x9a\x19" "\xcd\x42\xd2\xba\x24\x30\x87\x98\x85\xd6\x7e\x8b\xd1\xbb\xee\x20\x56" "\x56\x36\xf6\x4d\xfc\x2c\x45\x5d\x27\x6b\xc7\x31\x8b\x61\xe1\x64\xd9" "\xa7\x82\x44\x26\x13\x89\x6c\xfd\xb4\xa9\x30\x1b\x3f\x1d\xda\x3d\x69" "\xdc\x7b\xcf\x4a\xec\x55\x45\x76\x88\x49\xb1\xb5\x1e\xd9\x40\x3e\xbd" "\x66\x5a\xa2\x1e\x24\xee\x00\xb0\x73\x28\x13\x6f\x60\xc5\xec\xff\xdf" "\xd8\x0f\x8f\xc5\xc9\xce\xa0\xa5\xc7\x27\x65\x71\x34\xbc\x08\x3f\xf8" "\xf7\xe2\x73\xdc\xf6\xd3\x2c\xbe\x3b\xe3\xa4\x4e\xbd\x77\x27\xa4\xb4" "\xd3\x70\xbf\x75\x2c\x63\x68\xe2\xa2\xc7\xfd\x73\xc3\x5e\xca\x4f\x70" "\xed\x0f\xe1\x2b\xda\x1b\xda\x74\xde\xc4\xe5\x3a\xa9\xda\x99\xd4\x7b" "\x41\x8d\x44\x0a\x00\x17\x2e\x61\xe4\x4e\xbd\x3e\x2d\xf8\x32\x9b\x58" "\x88\xc6\x7e\x9d\xcd\x45\x88\x07\x4d\x74\x90\xb7\x3d\x85\x38\x86\xb5" "\x11\xe7\xc5\xf3\xb3\xec\xc2\x59\x3a\x34\x9c\xf1\x80\x63\x9e\x20\x72" "\x87\xdd\xa8\xf2\x61\xee\xdc\xfb\x21\x1b\x3e\x2c\x31\xbf\xef\xd2\xea" "\x25\x68\x1f\x81\xe3\xb5\x4a\xcf\x15\x09\xf4\x32\xd2\xc4\x92\x5e\x02" "\x1e\x4e\x80\xee\x85\x26\x12\xe4\x44\xc9\x46\x99\x2e\x8b\x4f\x66\xda" "\x2d\xa6\xc0\x17\x60\x9c\xa5\x3c\x35\x9e\x5e\x93\x2c\xab\x61\x85\xe3" "\x39\x1d\xb2\xa6\x9f\x4c\x92\xb0\x4c\xc9\x8a\x31\x3a\x4a\xa9\xfe\x6c" "\xd5\xd3\xf7\x8c\x42\x9b\x14\x4c\x0f\xce\x11\xf0\x4b\xd9\x5d\xfb\xe4" "\xea\x96\x64\x60\x55\xe7\xd0\x4c\x16\x52\x78\x91\x4c\x35\x4c\x12\xbc" "\x39\x61\xdf\xae\x7e\x86\xbe\xee\xc4\x0a\x05\xb3\x76\x36\x3f\xbf\xec" "\xbf\x10\xae\x69\xaa\x70\xf8\x10\x24\x7a\xae\x84\x35\x0e\x49\x5c\x73" "\xfa\x44\x29\xa2\x57\x67\x1c\xcc\x75\xf6\x07\x86\x41\x2e\x48\x10\x26" "\x27\xf4\x09\x46\xb5\xb8\x06\x84\x8c\xba\xba\xa2\x02\xb1\x37\x55\x93" "\x07\xd4\x6a\x56\x4c\x39\x39\x8f\x78\xf5\x63\xb3\xea\xc0\x22\x4a\x42" "\xbf\x9f\xce\x62\x4a\xaf\x61\x5e\xe4\x13\x93\xac\x14\x79\xfc\x8a\x8d" "\xaa\x19\xd0\xe6\xa9\x68\x56\xf6\x74\xbd\x73\x9a\xf8\xe3\xe1\x83\xd7" "\x2b\xa9\x8e\xdd\x30\x5b\x82\x32\x7d\x62\x23\x37\xad\xf1\x5e\x01\xf8" "\x38\x7a\x8f\x54\x22\x4e\x27\x2c\x6f\x54\xdd\x97\x27\x1f\xdf\x7a\x52" "\x63\x17\x21\xfc\x65\x4f\x07\x76\x5b\x43\x88\xa6\xab\xc0\xd3\x40\xb6" "\x74\xb4\xa4\x10\x91\xc3\x2b\xe7\xfd\x33\xdf\xe3\xd7\xf7\x66\xaf\x31" "\x86\xf7\x55\x6a\xc9\xac\x2c\x34\xd3\xb4\x8d\x15\x7e\xd6\xd4\x2a\xeb" "\x13\xf5\xb8\xcf\xa7\x17\x07\x0f\x3b\xee\x57\xb2\x44\x93\xba\x07\x94" "\xe8\x74\xeb\x9e\x79\x23\x16\xbe\x1e\x6e\x29\x2b\x90\x41\x30\xb4\x6e" "\x40\x62\x50\x27\x7d\x89\xb3\x83\x99\x49\x48\x8a\x2f\x16\x4a\xa8\x18" "\x66\xd1\x02\xbd\x2a\xd3\x3e\x20\xdd\x98\x08\xd3\x65\x29\x2b\x76\x91" "\x2a\xef\x62\xd1\x0f\xec\x35\xcb\xd8\x28\xa5\x1e\x80\xb9\x08\xfa\xe4" "\x1c\x47\xa8\x33\x3f\x28\xfb\xca\xcc\x13\x9b\x04\xdb\x6b\x04\x97\x58" "\x9f\x40\xa1\x51\x0d\x1f\x99\xa8\x2e\x56\x5b\xe1\x2d\xc3\x72\x6e\x24" "\xb0\x94\xf2\xbe\xef\xe6\xd3\x45\xa2\x67\xf7\x24\x7e\x7d\x81\x81\x41" "\xe8\x4c\x4b\xf2\xa0\xfd\xee\x58\x68\xb9\x33\x20\x19\x45\x62\x40\x6e" "\x30\xc0\x4f\x41\x8b\x5e\x1e\xc1\x24\xd0\x13\x73\x85\x24\x08\xc1\x53" "\x5b\x4a\xbe\x98\x0e\x0e\xda\x8a\xb3\x7d\xfc\x6b\x92\xda\x57\xbd\x79" "\xab\x57\x68\xca\xc0\xd4\xa9\x40\xa9\xa4\x07\xd7\x0a\x1e\xb0\xd4\x2e" "\x5b\xa1\x5c\x32\x1c\x20\xc1\xea\x8a\x39\xa3\x4e\x84\x37\x00\x0a\x54" "\x6e\x3e\x8b\x00\xc1\x4a\x8a\xb0\x50\xf4\x18\x03\xe7\x39\x05\xdd\x40" "\xce\xa2\x16\x88\x5f\x4f\x01\x58\xdf\x2f\xce\x37\x6c\x9e\x75\x03\x7d" "\x77\x0f\xff\xa2\xde\x5a\x63\xd5\x4f\xf2\x04\x44\x09\x88\x73\xda\x0f" "\xca\x3a\x21\x3b\xad\x69\x83\xc4\x6f\x0c\xba\xb8\x50\x47\x7e\x0d\x40" "\x13\x51\xf8\x60\xb2\x97\x24\x8b\x32\x65\x31\x71\xbb\x86\x47\x2c\xa8" "\x4b\xa8\x7d\x96\x39\x2d\x3e\x78\xb6\x47\x87\x70\x6d\x6d\xab\x2c\xfe" "\xe2\x01\x0b\xea\x43\xd6\x2d\xcf\x2c\x98\x70\x6e\x7f\x61\x77\x39\xae" "\x89\x58\x9e\x6b\xae\x9a\x30\xaf\xf8\xf4\xfc\xca\x5a\x36\x14\x75\x11" "\x08\xda\xaf\x63\x91\xd9\xf4\xb4\x8d\xb1\x20\x1f\x10\xe5\x82\x8c\x52" "\x3f\xcc\xc4\x27\xd2\xc4\x0b\x80\xe1\x08\x11\x67\x78\x20\x7a\xee\x79" "\xb4\x5e\xdf\x5d\x2f\x00\xc7\xa7\x3a\x10\xfd\xa5\xb1\x65\x8e\xa8\x78" "\x20\xe0\x2a\xf3\xcb\xeb\xde\x29\xd0\x74\xbc\x39\xe3\x53\xd0\x6d\x2c" "\x87\x6d\xc9\x4e\xab\x19\xbb\x78\x17\x34\x8f\x16\x94\x1c\xb8\xfc\x8d" "\x23\x93\x87\xe4\x9d\x73\x31\xb1\xdc\xf4\x84\x7b\x77\xac\xf2\xe0\xfa" "\x9a\xde\xdf\x89\x07\x20\x67\x95\x31\xd5\x28\x7f\xd3\xac\xaa\xad\x84" "\xe6\x0e\x23\x06\x63\x55\x03\xcf\x9c\x6f\x14\x54\xf7\x9e\x2a\x4c\x7e" "\xa5\xad\x01\x09\xeb\x86\xa9\x25\x99\x8a\x46\xd3\xea\xf9\x3c\xc1\xb2" "\xa5\x63\x15\x2c\x53\x34\xd8\xf9\x41\x7c\x05\x02\x91\x11\x5a\x17\x0d" "\x33\x7b\xa2\xf5\xf0\xea\x2c\xfe\x01\xbf\x46\xe2\xdb\x31\xa7\x53\x54" "\x62\x2d\x51\x42\x38\x13\xb8\x8a\x3b\xcb\x4f\x42\x5f\xfb\x08\x51\x4e" "\xf7\x88\x06\x9d\x71\x43\x5b\x4f\x72\x2f\x99\x10\x55\x93\x7e\xae\xdc" "\xda\xd1\x9f\xd3\x01\x02\xd9\x6b\xac\x8a\xfc\x14\x85\xeb\x44\x80\x57" "\xea\xf6\xf7\xc3\xb9\xeb\xee\x35\xde\x67\x87\xc7\x20\xc3\xf4\x32\x41" "\x42\x71\xcc\x89\x0a\x28\xbe\x47\x6d\x16\x62\x25\xf6\xea\x77\x45\x2a" "\x80\x48\x3d\xff\x8a\x0e\x62\xa8\x37\x26\xfa\x69\xaa\x3f\xfc\xcc\x34" "\x6a\xa5\x9d\xc6\xe5\xfd\x98\x4a\xa1\xbe\xa1\x19\x3b\xdd\x49\xa6\x64" "\x0a\xdf\x4e\x42\x2f\x3f\xec\xfd\x72\x13\x39\xa3\xc4\x32\x1e\x97\xa2" "\x5d\x3c\x27\xd3\x27\x0b\x14\xda\xf4\x9c\x88\x57\x3e\xbe\xbf\xd4\x05" "\x85\x27\xae\x6b\x9f\xb9\x38\x54\x20\x46\x8a\xeb\xf8\xc2\xdf\x2a\x6b" "\xb2\xd3\x28\x79\xa3\x8c\x59\x04\xf7\x7e\x5c\x7c\x9f\xf5\x2a\x73\x62" "\x3b\x83\x2a\x2b\x7b\xa7\x1e\x56\xed\x99\x8e\x5c\x9f\xed\xf1\x0d\xee" "\xf3\x17\xce\x73\x48\xee\xb3\x22\x91\xc1\x40\x28\xc7\x7c\xc2\x32\x0e" "\xd2\x01\xf8\xc0\xa2\xf9\x95\x84\xaf\x4d\x08\x42\x3f\x7c\xd4\x93\x7e" "\x2c\x50\xba\x7e\xf6\x14\x08\x82\x3a\xeb\x21\x0c\xd9\x9c\x30\x0b\xeb" "\x3b\x8f\x1d\xff\x27\x0c\x0a\xee\xe9\x8c\xf9\xea\x30\x5f\x69\xa8\x5e" "\xa8\xd0\x6b\xdd\x43\xf9\x5d\x43\x3b\x8c\xbf\x67\x46\x46\x35\x0d\x2e" "\x8f\xc6\x2b\x1c\x26\xd1\x93\x5d\xa8\x52\x5f\x67\x48\xc1\x31\xf3\xb2" "\x5a\x51\xe1\x9f\x75\xdf\x5c\x3c\xd4\x65\x95\x37\x57\xad\x51\xe0\x48" "\x36\xc1\xcc\x46\xb5\xbd\x2f\xf8\xbe\x52\x41\x96\x91\x5b\xe5\x30\xdf" "\xab\xc5\x36\x3c\x95\xc4\xe1\x0e\x8e\xeb\x24\xa3\x39\x48\xe3\xd8\xf7" "\xc2\xa4\xd4\x6f\x65\xbb\x80\x1e\x2e\x7f\x53\xa3\xb4\x52\xbc\x93\x05" "\x62\xa9\x1e\x53\x0d\x6d\x6d\x06\xb7\x4c\xeb\x9f\xfc\x3c\xe8\x33\xea" "\x3b\x38\xae\x7a\xda\x9f\xae\x6b\x5e\xea\x4d\xe7\x2c\x1c\xd0\x89\x45" "\x3d\x8e\xeb\xa1\x3f\xec\x2e\xe8\x2f\xa0\x34\xaf\x74\xd2\x42\x7e\x62" "\x2f\x51\x7d\xb0\xe7\xba\x96\x39\xcc\x38\xb3\xc8\x77\x53\xdc\x9a\xd0" "\xbf\x71\x3a\x43\x94\x47\xdd\x79\xa6\x05\x65\xc2\x83\x71\x57\x04\x11" "\x0f\xa2\xd7\x19\x10\xeb\xa6\x75\xd8\x2a\x5a\x23\x28\x29\xdd\x68\xf8" "\xb3\x83\xda\xd2\xd0\xa2\x4e\x50\x6f\x59\x12\x48\xf1\xd6\x66\x96\xc2" "\x5f\x60\x71\x31\x45\xe9\xe0\xd2\x3e\xd2\x5d\xba\x6c\x79\x9f\xbc\x45" "\xd0\x69\x8e\xb9\x0f\xf4\xe9\x7d\x98\x31\x3a\x58\xa0\x72\x4c\x14\x4d" "\x71\xc0\x77\x84\x0a\xa5\x95\x42\xe8\x16\x7d\x4b\x01\xb1\xcc\xc8\x26" "\xc7\x4e\x3a\xd9\x9f\x8b\x7f\xa4\xba\x3d\x5a\xef\xd7\xd3\x43\xce\x33" "\x99\x2d\xa0\x52\xce\x4c\x2b\x31\xc2\x0b\xdb\xa4\x0f\x70\x91\x90\xa7" "\xe8\xc8\xa5\xb4\xe5\x0d\xfe\xf4\x60\x58\x00\x33\x3b\xf7\xfb\xa8\x13" "\xdb\x69\xaa\x11\xcc\x13\xba\x6e\x52\x14\xb5\xa9\x1d\xff\x9f\x53\x9e" "\x65\x07\xdb\x71\x32\xde\x50\xaf\xb1\xca\x4e\x91\x1d\xdb\x32\x0a\x1e" "\xe7\x9b\xb7\xcc\x8c\x5f\xcc\x15\x0b\x8f\x15\x2e\x24\xd8\xc1\x59\xae" "\x08\xdf\x26\x6c\x10", 4340); sprintf((char*)0x200011b5, "0x%016llx", (long long)-1); memcpy( (void*)0x2000bc80, "\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\xe6\x59\x42\xa0\x40\xdb\x05\x2c" "\xd8\xb0\x40\xd9\xa2\x44\xae\x5b\x45\xa4\x80\x92\x80\xd2\x2a\x22\xae" "\xbc\x61\xc1\x1f\x01\x42\x62\x89\x10\x4b\x56\xfc\x01\x5d\xb0\x65\xc7" "\x1f\x40\xa4\x04\x09\xd4\x15\x83\xc6\xf7\x1c\x67\x3c\xb9\xce\x75\xea" "\xf8\x8e\xed\xf3\xf9\x48\xce\xcc\x6f\xce\x8c\xef\x99\x7c\xef\xd3\x33" "\x73\x4f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xf1\xc3\x1f\xfc\xf8\x5c\x2f\x22\xae\xfc\x2a\x2d\x58\x89\xf8\x5c\x0c" "\x22\xfa\x11\x4b\x75\xbd\x1a\x11\x4b\xab\x2b\x79\xfd\x61\x44\xbc\x18" "\x5b\xcd\xf1\x42\x44\x8c\x16\x22\xea\xed\xb7\xfe\x79\x2e\xe2\x8d\x88" "\xf8\xe4\x44\xc4\xfd\x07\x77\xd6\xea\xc5\xe7\xf7\xd8\x8f\xef\xff\xf9" "\x1f\x7f\xf8\xc9\x33\x3f\xfa\xfb\x9f\x46\x67\xfe\xfb\x97\x5b\x83\x37" "\x77\x5b\xef\xf6\xed\xdf\xfe\xe7\xaf\x77\xf7\xb7\xcf\x00\x00\x00\x50" "\x9a\xaa\xaa\xaa\x5e\xfa\x98\x7f\x32\x7d\xbe\xef\x77\xdd\x29\x00\x60" "\x2e\xf2\xeb\x7f\x95\xe4\xe5\x6a\xb5\x5a\xad\x56\xab\x8f\x5f\xdd\x54" "\x4d\x77\xb7\x59\x44\xc4\x46\x73\x9b\xfa\x3d\x83\xc3\xf1\x00\x70\xc4" "\x6c\xc4\xa7\x5d\x77\x81\x0e\xc9\xbf\x68\xc3\x88\x78\xa6\xeb\x4e\x00" "\x87\x5a\xaf\xeb\x0e\x70\x20\xee\x3f\xb8\xb3\xd6\x4b\xf9\xf6\x9a\xaf" "\x07\xab\x93\xf6\x7c\x2e\xc8\x8e\xfc\x37\x7a\xdb\xd7\x77\xec\x36\x9d" "\xa5\x7d\x8e\xc9\xbc\xee\x5f\x9b\x31\x88\xe7\x77\xe9\xcf\xd2\x9c\xfa" "\x70\x98\xe4\xfc\xfb\xed\xfc\xaf\x4c\xda\xc7\x69\xbd\x83\xce\x7f\x5e" "\x76\xcb\x7f\x3c\xb9\xf4\xa9\x38\x39\xff\x41\x3b\xff\x96\xe3\x93\x7f" "\x7f\x6a\xfe\xa5\xca\xf9\x0f\x9f\x28\xff\x81\xfc\x01\x00\x00\x00\x00" "\xe0\x10\xcb\x7f\xff\x5f\xe9\xf8\xf8\xef\xc2\xfe\x77\x65\x4f\x1e\x77" "\xfc\x77\x75\x4e\x7d\x00\x00\x00\x00\x00\x00\x00\x80\xa7\x6d\xbf\xe3" "\xff\x6d\x33\xfe\x1f\x00\x00\x00\x1c\x5a\xf5\x67\xf5\xda\xef\x4e\x3c" "\x5c\xb6\xdb\x77\xb1\xd5\xcb\x2f\xf7\x22\x9e\x6d\xad\x0f\x14\x66\x75" "\xf2\x37\xc0\xe5\xae\xfb\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x25\x19\x4e\xce\xe1\xbd\xdc\x8b\x18\x45\xc4\xb3\xcb\xcb\x55\x55\xd5" "\x3f\x4d\xed\xfa\x49\xed\x77\xfb\xa3\xae\xf4\xfd\x87\x92\x75\xfd\x24" "\x0f\x00\x00\x13\x9f\x9c\x68\x5d\xcb\xdf\x8b\x58\x8c\x88\xcb\xe9\xbb" "\xfe\x46\xcb\xcb\xcb\x55\xb5\xb8\xb4\x5c\x2d\x57\x4b\x0b\xf9\xfd\xec" "\x78\x61\xb1\x5a\x6a\x7c\xae\xcd\xd3\x7a\xd9\xc2\x78\x0f\x6f\x88\x87" "\xe3\xaa\xfe\x65\x8b\x8d\xed\x9a\x66\x7d\x5e\x9e\xd5\xde\xfe\x7d\xf5" "\x6d\x8d\xab\xc1\x1e\x3a\x36\x1f\x1d\x06\x0e\x00\x11\x31\x79\x35\xba" "\xef\x15\xe9\x98\xa9\xaa\xe7\xa2\xeb\x77\x39\x1c\x0d\x1e\xff\xc7\x8f" "\xc7\x3f\x7b\xd1\xf5\xfd\x14\x00\x00\x00\x38\x78\x55\x55\x55\xbd\x34" "\xcc\xdf\xc9\x74\xcc\xbf\xdf\x75\xa7\x00\x80\xb9\xc8\xaf\xff\xed\xe3" "\x02\x6a\xb5\x5a\xad\x56\xab\x8f\x5f\xdd\x54\x4d\x77\xb7\x59\x44\xc4" "\x46\x73\x9b\xfa\x3d\x83\xe1\xf8\x01\xe0\x88\xd9\x88\x4f\xbb\xee\x02" "\x1d\x92\x7f\xd1\x86\x11\xf1\x62\xd7\x9d\x00\x0e\xb5\x5e\xd7\x1d\xe0" "\x40\xdc\x7f\x70\x67\xad\x97\xf2\xed\x35\x5f\x0f\x56\x27\xed\xf9\x5c" "\x90\x1d\xf9\x6f\xf4\xb6\xb6\xcb\xdb\x4f\x9b\xce\xd2\x3e\xc7\x64\x5e" "\xf7\xaf\xcd\x18\xc4\xf3\xbb\xf4\xe7\x85\x39\xf5\xe1\x30\xc9\xf9\xf7" "\xdb\xf9\x5f\x99\xb4\x8f\xd3\x7a\x07\x9d\xff\xbc\xec\x96\x7f\xbd\x9f" "\x2b\x1d\xf4\xa7\x6b\x39\xff\x41\x3b\xff\x96\xe3\x93\x7f\x7f\x6a\xfe" "\xa5\xca\xf9\x0f\x9f\x28\xff\x81\xfc\x01\x00\x00\x00\x00\xe0\x10\xcb" "\x7f\xff\x5f\x71\xfc\x37\xef\x32\x00\x00\x00\x00\x00\x00\x00\x1c\x39" "\xf7\x1f\xdc\x59\xcb\xd7\xbd\xe6\xe3\xff\x5f\x98\xb2\x9e\xeb\x3f\x8f" "\xa7\x9c\x7f\x4f\xfe\x45\xca\xf9\xf7\x5b\xf9\x7f\xb5\xb5\xde\xa0\x31" "\x7f\xef\x9d\x87\xf9\xff\xfb\xc1\x9d\xb5\x3f\xde\xfa\xd7\xe7\xf3\x74" "\xaf\xf9\x2f\xe4\x99\x5e\xba\x67\xf5\xd2\x3d\xa2\x97\x6e\xa9\x37\x4c" "\xd3\xfd\xec\xdd\xa3\x36\x47\x83\x71\x7d\x4b\xa3\x5e\x7f\x30\x4c\xe7" "\xfc\x54\xa3\xf7\xe2\x5a\x5c\x8f\xf5\x38\xbb\x63\xdd\x7e\xfa\xff\x78" "\xd8\x7e\x6e\x47\x7b\xdd\xd3\xd1\x8e\xf6\xf3\x3b\xda\x87\x8f\xb4\x5f" "\xd8\xd1\x3e\x4a\xdf\x3b\x50\x2d\xe5\xf6\xd3\xb1\x16\x3f\x8f\xeb\xf1" "\xee\x56\x7b\xdd\xb6\x30\x63\xff\x17\x67\xb4\x57\x33\xda\x73\xfe\x03" "\x8f\xff\x22\xe5\xfc\x87\x8d\x9f\x3a\xff\xe5\xd4\xde\x6b\x4d\x6b\xf7" "\x3e\xee\x3f\xf2\xb8\x6f\x4e\xa7\xdd\xce\xdb\xd7\xbe\xf8\x9b\xb3\x07" "\xbf\x3b\x33\x6d\xc6\x60\x7b\xdf\x9a\xea\xfd\x3b\xd5\x41\x7f\xb6\xfe" "\x4f\x9e\x19\xc7\x2f\x6f\xae\xdf\x38\x7d\xfb\xea\xad\x5b\x37\xce\x45" "\x9a\xec\x58\x7a\x3e\xd2\xe4\x29\xcb\xf9\x8f\xd2\xcf\xf6\xf3\xff\xcb" "\x93\xf6\xfc\xbc\xdf\x7c\xbc\xde\xfb\x78\xfc\xc4\xf9\x1f\x16\x9b\x31" "\xdc\x35\xff\x97\x1b\xf3\xf5\xfe\xbe\x3a\xe7\xbe\x75\x21\xe7\x3f\x4e" "\x3f\x39\xff\x77\x53\xfb\xf4\xc7\xff\x51\xce\x7f\xf7\xc7\xff\x6b\x1d" "\xf4\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1e\xa7\xaa" "\xaa\xad\x4b\x44\xdf\x8e\x88\x8b\xe9\xfa\x9f\xae\xae\xcd\x04\x00\xe6" "\x2b\xbf\xfe\x57\x49\x5e\xae\x56\xab\xd5\x9f\xb1\x1e\xc4\xe1\xea\x8f" "\x5a\xad\x6e\xd4\x4d\xd5\x74\x6f\x35\x8b\x88\xf8\x5b\x73\x9b\xfa\x3d" "\xc3\xaf\xa7\xfd\x32\x00\xe0\x30\xfb\x5f\x44\xfc\xb3\xeb\x4e\xd0\x19" "\xf9\x17\x2c\x7f\xdf\x5f\x3d\x7d\xa5\xeb\xce\x00\x73\x75\xf3\xc3\x8f" "\x7e\x7a\xf5\xfa\xf5\xf5\x1b\x37\xbb\xee\x09\x00\x00\x00\x00\x00\x00" "\x00\xf0\x59\xe5\xf1\x3f\x57\x1b\xe3\x3f\xbf\x12\x11\x2b\xad\xf5\x76" "\x8c\xff\xfa\x4e\xac\xee\x77\xfc\xcf\x61\x9e\xd9\x1e\x60\xf4\x29\x0f" "\xf4\xbd\x8b\xcd\xfe\x78\xd0\x6f\x0c\x37\xfe\x52\x3c\x7e\xfc\xef\x53" "\xf1\xf8\xf1\xbf\x87\x33\x6e\x6f\x34\xa3\x7d\x3c\xa3\x7d\x61\x46\xfb" "\xe2\x8c\xf6\xa9\x17\x7a\x34\xe4\xfc\x5f\x6a\x8c\x77\x5e\xe7\x7f\xb2" "\x35\xfc\x7a\x09\xe3\xbf\xb6\xc7\xbc\x2f\x41\xce\xff\x54\xe3\xfe\x5c" "\xe7\xff\x95\xd6\x7a\xcd\xfc\xab\xdf\x1f\xe5\xfc\xfb\x3b\xf2\x3f\x73" "\xeb\x83\x5f\x9c\xb9\xf9\xe1\x47\xaf\x5f\xfb\xe0\xea\xfb\xeb\xef\xaf" "\xff\xec\xc2\xb9\x73\x67\x2f\x5c\xbc\x78\xe9\xd2\xa5\x33\xef\x5d\xbb" "\xbe\x7e\x76\xf2\x6f\x87\x3d\x3e\x58\x39\xff\x3c\xf6\xb5\xf3\x40\xcb" "\x92\xf3\xcf\x99\xcb\xbf\x2c\x39\xff\x2f\xa5\x5a\xfe\x65\xc9\xf9\x7f" "\x39\xd5\xf2\x2f\x4b\xce\x3f\xbf\xdf\x93\x7f\x59\x72\xfe\xf9\xb3\x8f" "\xfc\xcb\x92\xf3\x7f\x35\xd5\xf2\x2f\x4b\xce\xff\x6b\xa9\x96\x7f\x59" "\x72\xfe\xaf\xa5\x5a\xfe\x65\xc9\xf9\x7f\x3d\xd5\xf2\x2f\x4b\xce\xff" "\xf5\x54\xcb\xbf\x2c\x39\xff\xd3\xa9\x96\x7f\x59\x72\xfe\x67\x52\x2d" "\xff\xb2\xe4\xfc\xf3\x11\x2e\xf9\x97\x25\xe7\x9f\xcf\x6c\x90\x7f\x59" "\x72\xfe\xe7\x53\x2d\xff\xb2\xe4\xfc\x2f\xa4\x5a\xfe\x65\xc9\xf9\xbf" "\x91\x6a\xf9\x97\x25\xe7\xff\x8d\x54\xcb\xbf\x2c\x39\xff\x8b\xa9\x96" "\x7f\x59\x72\xfe\xdf\x4c\xb5\xfc\xcb\x92\xf3\xbf\x94\x6a\xf9\x97\x25" "\xe7\xff\xad\x54\xcb\xbf\x2c\x39\xff\x6f\xa7\x5a\xfe\x65\xc9\xf9\xbf" "\x99\x6a\xf9\x97\x25\xe7\xff\x9d\x54\xcb\xbf\x2c\x39\xff\xef\xa6\x5a" "\xfe\x65\xc9\xf9\x7f\x2f\xd5\xf2\x2f\x4b\xce\xff\xad\x54\xcb\xbf\x2c" "\x0f\xbf\xff\xdf\x8c\x19\x33\x66\xf2\x4c\xd7\xcf\x4c\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x40\xdb\x3c\x4e\x27\xee\x7a\x1f\x01\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xfe\xcf\x0e\x1c\x08\x00\x00\x00\x00\x00\xf9\xbf\x36\x42\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x15\x76\xe0\x40\x00" "\x00\x00\x00\x00\xc8\xff\xb5\x11\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xb0\x77\x77\x31\x72\x9d\xf5\xfd\xc0\xcf" "\xbe\xd9\x6b\x07\x88\x81\x90\xbf\xe3\xbf\x81\xb5\x63\x8c\x71\x96\xec" "\xfa\x25\x7e\xa1\x75\x31\x21\x84\x34\x81\xd2\xbc\x51\xd2\x97\xd8\xae" "\x77\xed\x6c\xf0\x5b\xbc\xeb\x92\xa4\x91\x6c\x14\x28\x91\x30\x2a\xaa" "\xa8\x9a\x9b\xb6\x80\xa2\x36\x37\x15\x56\xc5\x05\xad\x52\x94\x8b\xaa" "\x2f\x57\x4d\x7b\x41\x6f\x2a\xaa\x4a\x54\x8a\x68\x40\x01\xb5\x52\x5b" "\xb5\xd9\x6a\xce\x3c\xcf\xb3\x33\xe3\xb3\x73\xd6\xf1\xc4\x99\x39\xe7" "\xf3\x91\xe2\x9f\x77\xe6\xcc\x3c\x67\xce\x9c\x99\xdd\xef\x9a\xef\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd0\x6a\xd3\x47\x67\xbf\x34" "\x94\x65\x59\xe3\xbf\xfc\x8f\x75\x59\xf6\x96\xc6\xdf\xd7\x4c\xac\xcb" "\x2f\xfb\xd0\x9b\xbd\x87\x00\x00\x00\xc0\xd5\xfa\xdf\xfc\xcf\x57\xaf" "\x4f\x17\x1c\x5c\xc1\x8d\x5a\xb6\xf9\xeb\xf7\xfc\xdd\xb7\x17\x17\x17" "\x17\xb3\xcf\x8c\xfc\xee\xd8\xd7\x16\x17\xd3\x15\x13\x59\x36\xb6\x3a" "\xcb\xf2\xeb\xa2\x4b\xff\xf2\xd0\x50\xeb\x36\xc1\xd3\xd9\xf8\xd0\x70" "\xcb\xd7\xc3\x25\xcb\x8f\x94\x5c\x3f\x5a\x72\xfd\x58\xc9\xf5\xab\x4a" "\xae\x5f\x5d\x72\xfd\x78\xc9\xf5\x97\x1d\x80\xcb\xac\x69\xfe\x3e\x26" "\xbf\xb3\x2d\xf9\x5f\xd7\x35\x0f\x69\x76\x43\x36\x96\x5f\xb7\xa5\xe0" "\x56\x4f\x0f\xad\x1e\x1e\x8e\xbf\xcb\xc9\x0d\xe5\xb7\x59\x1c\x3b\x96" "\xcd\x65\x27\xb2\xd9\x6c\xba\x6d\xfb\xe6\xb6\x43\xf9\xf6\x2f\x6c\x6a" "\xac\x75\x57\x16\xd7\x1a\x6e\x59\x6b\x63\xe3\x0c\xf9\xc9\x53\x47\xe3" "\x3e\x0c\x85\x63\xbc\xa5\x6d\xad\xa5\xfb\x8c\x7e\xf4\x91\x6c\xe2\xa7" "\x3f\x79\xea\xe8\x1f\x2d\xbc\x72\x53\xd1\x2c\x3d\x0c\x6d\xf7\xd7\xdc" "\xcf\x6d\x9b\x1b\xfb\xf9\x85\x70\x49\x73\x5f\x87\xb2\xd5\xe9\x98\xc4" "\xfd\x1c\x6e\xd9\xcf\x8d\x05\xcf\xc9\x48\xdb\x7e\x0e\xe5\xb7\x6b\xfc" "\xbd\x73\x3f\x5f\x5d\xe1\x7e\x8e\x2c\xed\xe6\x35\xd5\xf9\x9c\x8f\x67" "\xc3\xf9\xdf\x5f\xca\x8f\xd3\x68\xeb\xaf\xf5\xd2\x71\xda\x18\x2e\xfb" "\xcf\x9b\xb3\x2c\xbb\xb0\xb4\xdb\x9d\xdb\x5c\xb6\x56\x36\x9c\xad\x6d" "\xbb\x64\x78\xe9\xf9\x19\x6f\x9e\x91\x8d\xfb\x68\x9c\x4a\xef\xc8\x46" "\xaf\xe8\x3c\xdd\xb4\x82\xf3\xb4\x31\x67\xb6\xb4\x9f\xa7\x9d\xaf\x89" "\xf8\xfc\x6f\x0a\xb7\x1b\x5d\x66\x1f\x5a\x9f\xa6\x1f\x7d\x7e\xd5\x65" "\xcf\xfb\x95\x9e\xa7\x51\xe3\x51\x2f\xf7\x5a\xe9\x3c\x07\x7b\xfd\x5a" "\xe9\x97\x73\x30\x9e\x17\x2f\xe5\x0f\xfa\x99\xc2\x73\x70\x4b\x78\xfc" "\x4f\x6d\x5d\xfe\x1c\x2c\x3c\x77\x0a\xce\xc1\xf4\xb8\x5b\xce\xc1\xcd" "\x65\xe7\xe0\xf0\xaa\x91\x7c\x9f\xd3\x93\x30\x94\xdf\x66\xe9\x1c\xdc" "\xd1\xb6\xfd\x48\xbe\xd2\x50\x3e\x5f\xde\xda\xfd\x1c\x9c\x5a\x38\x79" "\x66\x6a\xfe\x89\x27\x3f\x38\x77\xf2\xc8\xf1\xd9\xe3\xb3\xa7\x76\xed" "\xd8\x31\xbd\x6b\xcf\x9e\x7d\xfb\xf6\x4d\x1d\x9b\x3b\x31\x3b\xdd\xfc" "\xf3\x75\x1e\xed\xfe\xb7\x36\x1b\x4e\xaf\x81\xcd\xe1\xd8\xc5\xd7\xc0" "\xfb\x3b\xb6\x6d\x3d\x55\x17\xbf\xd1\xbb\xd7\xe1\x78\x97\xd7\xe1\xba" "\x7c\x8b\x7f\x4d\xdb\xf6\xfa\x75\x38\xda\xf9\xe0\x86\xae\xcd\x0b\xf2" "\xf2\x73\xba\xf9\xda\x78\xa0\x71\xd0\xc7\x2f\x0e\x67\xcb\xbc\xc6\xf2" "\xe7\x67\xfb\xd5\xbf\x0e\xd3\xe3\x6e\x79\x1d\x8e\xb6\xbc\x0e\x0b\xbf" "\xa7\x14\xbc\x0e\x47\x57\xf0\x3a\x6c\x6c\x73\x66\xfb\xca\x7e\x66\x19" "\x6d\xf9\xaf\x68\x1f\xde\xa8\xef\x05\xeb\x5a\xce\xc1\xce\x9f\x47\xd6" "\x75\x6c\xdb\xeb\x9f\x47\xfa\xe5\x1c\x1c\x0f\xe7\xc5\x3f\x6d\x5f\xfe" "\x7b\xc1\xc6\xb0\xbf\xcf\x4c\x5e\xe9\xcf\x23\x23\x97\x9d\x83\xe9\xe1" "\x86\xf7\x9e\xc6\x25\xe9\xe7\xfd\xf1\x7d\xf9\x28\x3a\x2f\x37\x34\xae" "\xb8\x6e\x55\x76\x6e\x7e\xf6\xec\xad\x8f\x1f\x59\x58\x38\xbb\x23\x0b" "\xe3\x9a\x78\x67\xcb\xb9\xd2\x79\xbe\xae\x6d\x79\x4c\xd9\x65\xe7\xeb" "\xf0\x15\x9f\xaf\x07\xe7\xde\xf3\xcc\x86\x82\xcb\xd7\x85\x63\x35\xfe" "\xc1\xc6\x1f\xe3\xcb\x3e\x57\x8d\x6d\x76\xdf\xda\xfd\xb9\xca\xbf\xbb" "\x15\x1f\xcf\xb6\x4b\x77\x66\x61\xf4\xd8\xb5\x3e\x9e\x45\xdf\xcd\x1b" "\xc7\x33\x65\xc9\x2e\xc7\xb3\xb1\xcd\x17\xa6\xae\xfe\x67\xf1\x94\x4b" "\x5b\xde\x7f\xc7\x96\x79\xff\x8d\xb9\xff\xb5\xe6\x7a\xe9\xae\x9e\x1e" "\x19\x1b\x6d\xbe\x7e\x47\xd2\xd1\x19\x6b\x7b\x3f\x6e\x7f\xaa\x46\xf3" "\xf7\xae\xa1\x7c\xed\x57\xa7\x56\xf6\x7e\x3c\x16\xfe\xbb\xd6\xef\xc7" "\x37\x74\x79\x3f\x5e\xdf\xb1\x6d\xaf\xdf\x8f\xc7\x3a\x1f\x5c\x7c\x3f" "\x1e\x2a\xfb\x6d\xc7\xd5\xe9\x7c\x3e\xc7\xc3\x79\x72\x62\xba\xfb\xfb" "\x71\x63\x9b\xf5\x3b\xaf\xf4\x9c\x1c\xed\xfa\x7e\x7c\x73\x98\x43\xe1" "\xf8\x7f\x20\x24\x85\x94\x8b\x5a\xce\x9d\xe5\xce\xdb\xb4\xd6\xe8\xe8" "\x58\x78\x5c\xa3\x71\x85\xf6\xf3\x74\x57\xdb\xf6\x63\x21\x9b\x35\xd6" "\x7a\x7e\xe7\xeb\x3b\x4f\xb7\xdd\xdc\xbc\xaf\x91\xf4\xe8\x96\x5c\xab" "\xf3\x74\xa2\x63\xdb\x5e\x9f\xa7\xe9\xfd\x6a\xb9\xf3\x74\xa8\xec\xb7" "\x6f\xaf\x4f\xe7\xf3\x39\x1e\xce\x8b\x1b\x76\x75\x3f\x4f\x1b\xdb\xbc" "\xb8\xfb\xea\xdf\x3b\xd7\xc4\xbf\xb6\xbc\x77\xae\x2a\x3b\x07\xc7\x46" "\x56\x35\xf6\x79\x2c\x9d\x84\xcd\xf7\xfb\xc5\x35\xf1\x1c\xbc\x35\x3b" "\x9a\x9d\xce\x4e\x64\x33\xf9\xb5\xab\xf2\xf3\x69\x28\x5f\x6b\xf2\xb6" "\x95\x9d\x83\xab\xc2\x7f\xd7\xfa\xbd\x72\x7d\x97\x73\x70\x5b\xc7\xb6" "\xbd\x3e\x07\xd3\xf7\xb1\xe5\xce\xbd\xa1\xd1\xcb\x1f\x7c\x0f\x74\x3e" "\x9f\xe3\xe1\xbc\x78\xf6\xb6\xee\xe7\x60\x63\x9b\x3b\xf6\xf6\xf6\x67" "\xd7\x6d\xe1\x92\xb4\x4d\xcb\xcf\xae\x9d\xbf\x5f\x5b\xee\x77\x5e\x1b" "\x3a\x0e\xd3\x1b\xf9\x3b\xaf\xc6\x7e\xfe\xe5\xde\xee\xbf\x9b\x6d\x6c" "\x73\x62\xdf\x95\xe6\xcc\xee\xc7\xe9\x96\x70\xc9\x75\x05\xc7\xa9\xf3" "\xf5\xbb\xdc\x6b\x6a\x26\xbb\x36\xc7\x69\x7d\xd8\xcf\x57\xf6\x2d\x7f" "\x9c\x1a\xfb\xd3\xd8\xe6\x6b\xfb\x57\x78\x3e\x1d\xcc\xb2\xec\xfc\x63" "\xb7\xe7\xbf\xef\x0d\xff\xbe\xf2\xa7\xe7\xbe\xf7\xed\xb6\x7f\x77\x29" "\xfa\x37\x9d\xf3\x8f\xdd\xfe\xe3\xb7\x1e\xfb\xab\x2b\xd9\x7f\x00\x06" "\xdf\x6b\xcd\xb1\xb6\xf9\xbd\xae\xe5\x5f\xa6\x56\xf2\xef\xff\x00\x00" "\x00\xc0\x40\x88\xb9\x7f\x38\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9" "\x3f\xfe\xaf\xc2\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xd1\x30\x93" "\x9a\xe4\xff\xf5\x77\xbc\x32\xf7\xda\xf9\x2c\x35\xf3\x17\x83\x78\x7d" "\x3a\x0c\x77\x37\xb7\x8b\x1d\xd7\xe9\xf0\xf5\xc4\xe2\x92\xc6\xe5\xb7" "\x3f\x37\xfb\x1f\x7f\x7e\x7e\x65\x6b\x0f\x67\x59\xf6\x3f\x77\xff\x66" "\xe1\xf6\xeb\xef\x8e\xfb\xd5\x34\x11\xf6\xf3\xd2\xc7\xda\x2f\xbf\xfc" "\x86\xe7\x57\xb4\xfe\xe1\x07\x97\xb6\x6b\xed\xaf\x7f\x3d\xdc\x7f\x7c" "\x3c\x2b\x3d\x0d\x8a\x2a\xb8\xd3\x59\x96\xbd\x70\xfd\x57\xf2\x75\x26" "\x1e\xba\x98\xcf\x17\xef\x3e\x9c\xcf\xfb\x2e\x3c\xf3\x74\x63\x9b\x57" "\xf7\x37\xbf\x8e\xb7\x7f\xf9\x9d\xcd\xed\x7f\x3f\x94\x7f\x0f\x1e\x3b" "\xd2\x76\xfb\x97\xc3\x71\xf8\x41\x98\xd3\xf7\x14\x1f\x8f\x78\xbb\x6f" "\x5d\xfc\xc0\xc6\xbd\x9f\x5e\x5a\x2f\xde\x6e\x68\xf3\xdb\xf2\x87\xfd" "\xec\xc3\xcd\xfb\x8d\x9f\x93\xf3\xd5\xa7\x9b\xdb\xc7\xe3\xbc\xdc\xfe" "\xff\xc5\x97\x9f\xff\x56\x63\xfb\xc7\xdf\x57\xbc\xff\xe7\x87\x8b\xf7" "\xff\xf9\x70\xbf\xcf\x85\xf9\x5f\xef\x6e\x6e\xdf\xfa\x1c\x34\xbe\x8e" "\xb7\xfb\x62\xd8\xff\xb8\x5e\xbc\xdd\xad\xdf\xfc\x6e\xe1\xfe\x5f\xfa" "\x52\x73\xfb\x33\x77\x36\xb7\x3b\x1c\x66\x5c\x7f\x5b\xf8\x7a\xcb\x9d" "\xaf\xcc\xb5\x1e\xaf\xc7\x87\x8e\xb4\x3d\xae\xec\xe3\xcd\xed\xe2\xfa" "\xd3\xdf\xfb\xed\xfc\xfa\x78\x7f\xf1\xfe\x3b\xf7\x7f\xfc\xd0\xc5\xb6" "\xe3\xd1\x79\x7e\xbc\xf8\x0f\xcd\xfb\x99\xea\xd8\x3e\x5e\x1e\xd7\x89" "\xfe\xac\x63\xfd\xc6\xfd\xb4\x9e\x9f\x71\xfd\xe7\x7f\xeb\x70\xdb\x71" "\x2e\x5b\xff\xd2\x7d\x2f\xbf\xbb\x71\xbf\x9d\xeb\xdf\xd2\xb1\xdd\x99" "\xc7\xb6\xe7\xeb\x2f\xdd\x5f\xfb\x27\x36\xfd\xc1\x17\xbf\x52\xb8\x5e" "\xdc\x9f\x83\x7f\x72\xa6\xed\xf1\x1c\xbc\x37\xbc\x8e\xc3\xfa\xcf\x3e" "\x1c\xce\xc7\x70\xfd\x7f\x5f\x6a\xde\x5f\xe7\xa7\x2b\x1c\xbe\xb7\xfd" "\xfd\x27\x6e\xff\xf5\x75\xe7\xdb\x1e\x4f\x74\xd7\x4f\x9b\xeb\x5f\xfa" "\xf0\xf1\x7c\xae\x1e\x5f\xb3\xf6\xba\xb7\xbc\xf5\x6d\x17\xde\xdb\x38" "\x76\x59\xf6\xd2\xfd\xcd\xfb\x2b\x5b\xff\xf8\x1f\x9e\x6e\xdb\xff\x6f" "\xdc\xd8\x3c\x1e\xf1\xfa\xd8\xd1\xef\x5c\x7f\x39\x71\xfd\xb3\x9f\x9b" "\x3c\x75\x7a\xfe\xdc\xdc\x4c\xcb\x51\xcd\x3f\x3b\xe7\x13\xcd\xfd\x89" "\xfb\x7b\x7d\x78\x6f\xed\xfc\xfa\xd0\xe9\x85\x47\x66\xcf\x4e\x4c\x4f" "\x4c\x67\xd9\x44\x75\x3f\x42\xef\x75\xfb\x66\x98\x3f\x6e\x8e\x0b\x57" "\x7a\xfb\xed\x0f\x86\xe7\x73\xc3\xef\xbd\xb0\x76\xeb\xdf\x7f\x39\x5e" "\xfe\x8f\x0f\x34\x2f\xbf\x78\x4f\xf3\xfb\xd6\xfb\xc3\x76\x5f\x0d\x97" "\xaf\x0b\xcf\xdf\xd5\xae\xff\xec\xa6\x1b\xf3\xd7\xf7\xd0\x8b\xcd\xaf" "\xdb\x7a\xec\x3d\xb0\x71\xcb\x0f\xf7\xad\x68\xc3\xf0\xf8\x3b\x7f\x2e" "\x88\xe7\xfb\x99\x77\x3d\x92\x1f\x87\xc6\x75\xf9\xf7\x8d\xf8\xba\xbe" "\xca\xfd\xff\xfe\x4c\xf3\x7e\xbe\x13\x8e\xeb\x62\xf8\x64\xe6\xcd\x37" "\x2e\xad\xd7\xba\x7d\xfc\x6c\x84\x8b\xf7\x37\x5f\xef\x57\x7d\xfc\xc2" "\xdb\x5c\x7c\x5e\xff\x38\x3c\xdf\x9f\xfc\x41\xf3\xfe\xe3\x7e\xc5\xc7" "\xfb\xfd\xf0\x73\xcc\x77\xd7\xb7\xbf\xdf\xc5\xf3\xe3\x3b\xe7\x87\x3b" "\xef\x3f\xff\x14\x8f\x0b\xe1\xfd\x24\xbb\xd0\xbc\x3e\x6e\x15\x8f\xf7" "\xc5\x57\x6f\x2c\xdc\xbd\xf8\x39\x24\xd9\x85\x9b\xf2\xaf\x7f\x27\xdd" "\xcf\x4d\x57\xf4\x30\x97\x33\xff\xc4\xfc\xd4\x89\xb9\x53\xe7\x1e\x9f" "\x5a\x98\x9d\x5f\x98\x9a\x7f\xe2\xc9\x43\x27\x4f\x9f\x3b\xb5\x70\x28" "\xff\x2c\xcf\x43\x8f\x96\xdd\x7e\xe9\xfd\x69\x6d\xfe\xfe\x34\x33\xbb" "\x67\x77\x96\xbf\x5b\x9d\x6e\x8e\x37\xd8\x9b\xbd\xff\x67\x1e\x3c\x3a" "\xb3\x77\x7a\xeb\xcc\xec\xb1\x23\xe7\x8e\x2d\x3c\x78\x66\xf6\xec\xf1" "\xa3\xf3\xf3\x47\x67\x67\xe6\xb7\x1e\x39\x76\x6c\xf6\x73\x65\xb7\x9f" "\x9b\x39\xb0\x63\xe7\xfe\x5d\x7b\x77\x4e\x1e\x9f\x9b\x39\xb0\x6f\xff" "\xfe\x5d\xfb\x27\xe7\x4e\x9d\x6e\xec\x46\x73\xa7\x4a\xec\x99\xfe\xec" "\xe4\xa9\xb3\x87\xf2\x9b\xcc\x1f\xd8\xbd\x7f\xc7\x6d\xb7\xed\x9e\x9e" "\x3c\x79\x7a\x66\xf6\xc0\xde\xe9\xe9\xc9\x73\x65\xb7\xcf\xbf\x37\x4d" "\x36\x6e\xfd\x1b\x93\x67\x67\x4f\x1c\x59\x98\x3b\x39\x3b\x39\x3f\xf7" "\xe4\xec\x81\x1d\xfb\xf7\xec\xd9\x59\xfa\x69\x80\x27\xcf\x1c\x9b\x9f" "\x98\x3a\x7b\xee\xd4\xd4\xb9\xf9\xd9\xb3\x53\xcd\xc7\x32\xb1\x90\x5f" "\xdc\xf8\xde\x57\x76\x7b\xaa\x69\xfe\x9f\x9b\x3f\xcf\x76\x1a\x6a\x7e" "\x10\x5f\xf6\xa9\x5b\xf6\xa4\xcf\x67\x6d\x78\xee\xf3\xcb\xde\x55\x73" "\x93\x8e\x0f\x10\x7d\x25\x7c\x16\xcd\xdf\xbe\xfd\xcc\xbe\x95\x7c\x1d" "\x73\xff\x58\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\xab\xc2" "\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x57\x87\x99\xc8\xff\x00\x00" "\x00\x50\x19\x31\xf7\x8f\x87\x99\xd4\x24\xff\xeb\xff\xeb\xff\xeb\xff" "\xeb\xff\xeb\xff\x17\xaf\xaf\xff\x3f\x98\xf4\xff\xbb\xd3\xff\x2f\xa1" "\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x4f\xf5\x5b\xff\x3f\xe6\xfe\x35\x59" "\x56\xcb\xfc\x0f\x00\x00\x00\x75\x10\x73\xff\xda\x30\x13\xf9\x1f\x00" "\x00\x00\x2a\x23\xe6\xfe\xeb\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98" "\xfb\xdf\x12\x66\x52\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff" "\x5f\xbc\xbe\xfe\xff\x60\xd2\xff\xef\x4e\xff\xbf\x84\xfe\xbf\xfe\xbf" "\xfe\xbf\xfe\x3f\x3d\xd5\x6f\xfd\xff\x98\xfb\xdf\x1a\x66\x52\x93\xfc" "\x0f\x00\x00\x00\x75\x10\x73\xff\xdb\xc2\x4c\x9a\xf9\x7f\xf4\xcd\xd9" "\x2b\x00\x00\x00\xa0\x97\x62\xee\xbf\x3e\xcc\xc4\xbf\xff\x03\x00\x00" "\x40\x65\xc4\xdc\xbf\x2e\xcc\xa4\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f" "\xff\x5f\xff\xbf\x78\x7d\xfd\xff\xc1\xa4\xff\xdf\x9d\xfe\x7f\x09\xfd" "\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x7a\xaa\xdf\xfa\xff\x31\xf7\xbf\x3d\xcc" "\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\x77\x84\x99\xc8\xff\x00" "\x00\x00\x50\x19\x31\xf7\xbf\x33\xcc\x44\xfe\x07\x00\x00\x80\xca\x88" "\xb9\xff\x86\x30\x93\x9a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd" "\xff\xe2\xf5\xf5\xff\x07\x93\xfe\x7f\x77\xfa\xff\x25\xf4\xff\xf5\xff" "\xf5\xff\xf5\xff\xe9\xa9\x7e\xeb\xff\xc7\xdc\xff\xae\x30\x93\x9a\xe4" "\x7f\x00\x00\x00\xa8\x83\x98\xfb\x6f\x0c\x33\x91\xff\x01\x00\x00\xa0" "\x32\x62\xee\xff\x7f\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xeb" "\xc3\x4c\x6a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x8b\xd7" "\xd7\xff\x1f\x4c\xfa\xff\xdd\xe9\xff\x97\xd0\xff\xd7\xff\xd7\xff\xd7" "\xff\xa7\xa7\xfa\xad\xff\x1f\x73\xff\x4d\x61\x26\x35\xc9\xff\x00\x00" "\x00\x50\x07\x31\xf7\x6f\x08\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee" "\xff\xff\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x1b\xc3\x4c\x6a" "\x92\xff\xf5\xff\xf5\xff\xf5\xff\x97\xe9\xff\xff\xfb\xd1\x91\x7f\xd3" "\xff\xd7\xff\xd7\xff\x1f\x38\xfa\xff\xdd\xe9\xff\x97\xd0\xff\xd7\xff" "\xd7\xff\xd7\xff\xa7\xa7\xfa\xad\xff\x1f\x73\xff\xbb\xc3\x4c\x6a\x92" "\xff\x01\x00\x00\xa0\x0e\x62\xee\x7f\x4f\x98\x89\xfc\x0f\x00\x00\x00" "\x95\x11\x73\xff\x7b\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x27" "\xc2\x4c\x6a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xfd\xff\xff\xeb\xff\x17" "\xaf\xaf\xff\x3f\x98\xf4\xff\xbb\xd3\xff\x2f\xa1\xff\xaf\xff\xaf\xff" "\xaf\xff\x4f\x4f\xf5\x5b\xff\x3f\xe6\xfe\x4d\x61\x26\x35\xc9\xff\x00" "\x00\x00\x50\x07\x31\xf7\x6f\x0e\x33\x91\xff\x01\x00\x00\xa0\x32\x62" "\xee\xbf\x39\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x4b\x98\x49" "\x4d\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xf1\xfa\xfa\xff" "\x83\x49\xff\xbf\x3b\xfd\xff\x12\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xf4" "\x54\xbf\xf5\xff\x63\xee\x7f\x5f\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4" "\x41\xcc\xfd\x5b\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xdf\x1f" "\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x2d\xcc\xa4\x26\xf9\x5f" "\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\x78\x7d\xfd\xff\xc1\xa4\xff" "\xdf\x9d\xfe\x7f\x09\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x7a\xaa\xdf\xfa" "\xff\x31\xf7\x7f\x20\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe" "\xed\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xb7\x84\x99\xc8\xff" "\x00\x00\x00\x50\x19\x31\xf7\x4f\x86\x99\xd4\x24\xff\xeb\xff\xeb\xff" "\xeb\xff\xeb\xff\xeb\xff\x17\xaf\xaf\xff\x3f\x98\xf4\xff\xbb\xd3\xff" "\x2f\xa1\xff\xdf\xa5\x3f\x5f\xfe\x63\x91\xfe\xbf\xfe\xbf\xfe\x3f\x9d" "\xfa\xad\xff\x1f\x73\xff\x07\xc3\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e" "\x62\xee\xbf\x35\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x2a\xcc" "\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x3a\xcc\xa4\x26\xf9\x5f\xff" "\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\x78\x7d\xfd\xff\xc1\xa4\xff\xdf" "\x9d\xfe\x7f\x09\xfd\x7f\xff\xff\xff\xfa\xff\xfa\xff\xf4\x54\xbf\xf5" "\xff\x63\xee\xdf\x11\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73\xff" "\xce\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x5d\x61\x26\xf2\x3f" "\x00\x00\x00\x54\x46\xcc\xfd\xbb\xc3\x4c\x6a\x92\xff\xf5\xff\xf5\xff" "\xf5\xff\xf5\xff\xf5\xff\x8b\xd7\xd7\xff\x1f\x4c\xfa\xff\xdd\xe9\xff" "\x97\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xa7\xfa\xad\xff\x1f\x73\xff" "\x6d\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\xef\x09\x33\x91" "\xff\x01\x00\x00\xa0\x32\x62\xee\xdf\x1b\x66\x22\xff\x03\x00\x00\x40" "\x65\xc4\xdc\xbf\x2f\xcc\xa4\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff" "\x5f\xff\xbf\x78\x7d\xfd\xff\xc1\xa4\xff\xdf\x9d\xfe\x7f\x09\xfd\x7f" "\xfd\x7f\xfd\x7f\xfd\x7f\x7a\xaa\xdf\xfa\xff\x31\xf7\xef\x0f\x33\xa9" "\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\xff\x43\x61\x26\xf2\x3f\x00\x00" "\x00\x54\x46\xcc\xfd\x3f\x13\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc" "\xff\xb3\x61\xfe\xcd\xa3\x8f\xff\x30\xff\x6b\x4d\xf2\xbf\xfe\xbf\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xf1\xfa\xfa\xff\x83\x49\xff\xbf\x3b\xfd" "\xff\x12\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xf4\x54\xbf\xf5\xff\x63\xee" "\x3f\x10\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73\xff\xcf\x85\x99" "\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x7f\x38\xcc\x44\xfe\x07\x00\x00" "\x80\xca\x88\xb9\xff\x60\x98\x49\x4d\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf" "\xfe\xff\xeb\xed\xff\x6f\x78\x51\xff\x3f\xd3\xff\xef\x3b\xfa\xff\xdd" "\xe9\xff\x97\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xa7\xfa\xad\xff\x1f" "\x73\xff\x47\xc2\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62\xee\xbf\x3d" "\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xa3\x61\x26\xf2\x3f\x00" "\x00\x00\x54\x46\xcc\xfd\x77\x84\x99\xd4\x24\xff\xeb\xff\xeb\xff\xeb" "\xff\xeb\xff\xfb\xff\xff\x2f\x5e\x5f\xff\x7f\x30\xe9\xff\x77\xa7\xff" "\x5f\x42\xff\x5f\xff\x5f\xff\x5f\xff\x9f\x9e\xea\xb7\xfe\x7f\xcc\xfd" "\x1f\x0b\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\xff\xce\x30\x13" "\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x8f\x87\x99\xc8\xff\x00\x00\x00" "\x50\x19\x31\xf7\xdf\x15\x66\x52\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf" "\xff\xaf\xff\x5f\xbc\xbe\xfe\xff\x60\xd2\xff\xef\x4e\xff\xbf\x84\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x3d\xd5\x6f\xfd\xff\x98\xfb\x7f\x3e\xcc" "\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\xbb\xc3\x4c\xe4\x7f\x00" "\x00\x00\xa8\x8c\x98\xfb\xef\x09\x33\x91\xff\x01\x00\x00\xa0\x32\x62" "\xee\xff\x44\x98\x49\x4d\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe" "\x7f\xf1\xfa\xfa\xff\x83\x49\xff\xbf\x3b\xfd\xff\x12\xfa\xff\xfa\xff" "\xfa\xff\xfa\xff\xf4\x54\xbf\xf5\xff\x63\xee\xff\x64\x98\x49\x4d\xf2" "\x3f\x00\x00\x00\xd4\x41\xcc\xfd\xbf\x10\x66\x22\xff\x03\x00\x00\x40" "\x65\xc4\xdc\xff\xa9\x30\x93\x15\xe7\xff\x3d\xf7\xbe\x01\xbb\x05\x00" "\x00\x00\xf4\x50\xcc\xfd\xbf\x18\x66\x52\x93\x7f\xff\xd7\xff\xd7\xff" "\xd7\xff\xd7\xff\xd7\xff\x2f\x5e\x5f\xff\x7f\x30\xe9\xff\x77\xa7\xff" "\x5f\x42\xff\x5f\xff\x5f\xff\x5f\xff\x9f\x9e\xea\xb7\xfe\x7f\xcc\xfd" "\xf7\x86\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\x7f\x5f\x98\x89" "\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xfd\x61\x26\xf2\x3f\x00\x00\x00" "\x54\x46\xcc\xfd\x0f\x84\x99\xd4\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb" "\xff\xeb\xff\x17\xaf\xaf\xff\x3f\x98\xf4\xff\xbb\xd3\xff\x2f\xa1\xff" "\xaf\xff\xaf\xff\xaf\xff\x4f\x4f\xf5\x5b\xff\x3f\xe6\xfe\x07\xc3\x4c" "\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62\xee\xff\x74\x98\x89\xfc\x0f\x00" "\x00\x00\x95\x11\x73\xff\x2f\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31" "\xf7\x7f\x26\xcc\xa4\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff" "\xbf\x78\x7d\xfd\xff\xc1\xa4\xff\xdf\x9d\xfe\x7f\x09\xfd\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\x7a\xaa\xdf\xfa\xff\x31\xf7\x3f\x14\x66\x52\x93\xfc" "\x0f\x00\x00\x00\x75\x10\x73\xff\x2f\x87\x99\xc8\xff\x00\x00\x00\x50" "\x19\x31\xf7\xff\x4a\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xaf" "\x86\x99\xd4\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x17\xaf" "\xaf\xff\x3f\x98\xf4\xff\xbb\xd3\xff\x2f\xa1\xff\xaf\xff\xaf\xff\xaf" "\xff\x4f\x4f\xf5\x5b\xff\x3f\xe6\xfe\x5f\x0b\x33\xa9\x49\xfe\x07\x00" "\x00\x80\x3a\x88\xb9\xff\xe1\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6" "\xfe\x43\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x87\xc3\x4c\x6a" "\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x8b\xd7\xd7\xff\x1f" "\x4c\xfa\xff\xdd\xe9\xff\x97\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xa7" "\xfa\xad\xff\x1f\x73\xff\x91\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83" "\x98\xfb\x7f\x3d\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x68\x98" "\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x4c\x98\x49\x4d\xf2\xbf\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xf1\xfa\xfa\xff\x83\x49\xff\xbf" "\x3b\xfd\xff\x12\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xf4\x54\xbf\xf5\xff" "\x63\xee\x9f\x0d\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\xff\x58" "\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xf1\x30\x13\xf9\x1f\x00" "\x00\x00\x2a\x23\xe6\xfe\x47\xc2\x4c\x6a\x92\xff\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\xf5\xff\x8b\xd7\xd7\xff\x1f\x4c\xfa\xff\xdd\xe9\xff\x97" "\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xa7\xfa\xad\xff\x1f\x73\xff\x5c" "\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\x8f\x86\x99\xc8\xff" "\x00\x00\x00\x50\x19\x31\xf7\x7f\x36\xcc\x44\xfe\x07\x00\x00\x80\xca" "\x88\xb9\xff\x44\x98\x49\x4d\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf" "\xfe\x7f\xf1\xfa\xfa\xff\x83\x49\xff\xbf\x3b\xfd\xff\x12\xfa\xff\xfa" "\xff\xfa\xff\xfa\xff\xf4\x54\xbf\xf5\xff\x63\xee\x3f\x19\x66\x52\x93" "\xfc\x0f\x00\x00\x00\x75\x10\x73\xff\xa9\x30\x13\xf9\x1f\x00\x00\x00" "\x2a\x23\xe6\xfe\xd3\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x67" "\xc2\x4c\x6a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x8b\xd7" "\xd7\xff\x1f\x4c\xfa\xff\xdd\xe9\xff\x97\xd0\xff\xd7\xff\xd7\xff\xd7" "\xff\xa7\xa7\xfa\xad\xff\x1f\x73\xff\x63\x61\x26\x35\xc9\xff\x00\x00" "\x00\x50\x07\x31\xf7\x9f\x0d\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee" "\x9f\x0f\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x5f\x08\x33\xa9\x49" "\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x2f\x5e\x5f\xff\x7f\x30" "\xe9\xff\x77\xa7\xff\x5f\x42\xff\x5f\xff\x5f\xff\x5f\xff\x9f\x9e\xea" "\xb7\xfe\x7f\xcc\xfd\xff\xc7\xde\x5d\xeb\x88\xb2\x1d\x61\x18\xbd\xa1" "\x03\xbf\x93\x9f\xc8\x72\x64\x66\x66\x66\x66\x66\xbe\x66\x66\x66\x66" "\x66\xb6\x8f\x21\xb0\x64\x55\x55\xe2\xf6\x6e\x59\x6a\x9d\xd3\x5d\xb5" "\x56\x52\xd9\xec\xd1\x44\xf3\x07\x9f\xfa\xae\x71\xcb\x90\xfd\x0f\x00" "\x00\x00\x13\xe4\xee\xbf\x5b\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb" "\xef\x1e\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\x7b\xc4\x2d\x43\xf6" "\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xb7\xdf\xd7\xff\x5f\x93\xfe" "\x7f\x4d\xff\xbf\x43\xff\xaf\xff\xd7\xff\xeb\xff\x39\xd4\xd9\xfa\xff" "\xdc\xfd\xf7\x8c\x5b\x86\xec\x7f\x00\x00\x00\x98\x20\x77\xff\xbd\xe2" "\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\x7f\xef\xb8\xc5\xfe\x07\x00\x00" "\x80\x36\x72\xf7\xdf\x27\x6e\x19\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\xbf\xfd\xbe\xfe\xff\x9a\xf4\xff\x6b\xfa\xff\x1d\xfa\x7f\xfd" "\xbf\xfe\x5f\xff\xcf\xa1\xce\xd6\xff\xe7\xee\xbf\x6f\xdc\x32\x64\xff" "\x03\x00\x00\xc0\x04\xb9\xfb\xef\x17\xb7\xd8\xff\x00\x00\x00\xd0\x46" "\xee\xfe\xfb\xc7\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x01\x71\xcb" "\x90\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xed\xf7\xf5\xff\xd7" "\xa4\xff\x5f\xd3\xff\xef\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x0e\x75\xb6" "\xfe\x3f\x77\xff\x03\xe3\x96\x21\xfb\x1f\x00\x00\x00\x26\xc8\xdd\xff" "\xa0\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\x3f\x38\x6e\xb1\xff\x01" "\x00\x00\xa0\x8d\xdc\xfd\x0f\x89\x5b\x86\xec\x7f\xfd\xbf\xfe\x5f\xff" "\xaf\xff\xd7\xff\x6f\xbf\xaf\xff\xbf\x26\xfd\xff\x9a\xfe\x7f\x87\xfe" "\x5f\xff\x7f\xb3\xfa\xff\x8d\x7f\x1e\xf5\xff\x74\x74\xb6\xfe\x3f\x77" "\xff\x43\xe3\x96\x21\xfb\x1f\x00\x00\x00\x26\xc8\xdd\xff\xb0\xb8\xc5" "\xfe\x07\x00\x00\x80\x36\x72\xf7\x3f\x3c\x6e\xb1\xff\x01\x00\x00\xa0" "\x8d\xdc\xfd\x8f\x88\x5b\x86\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7" "\xff\x6f\xbf\xaf\xff\xbf\x26\xfd\xff\x9a\xfe\x7f\x87\xfe\x5f\xff\xef" "\xfb\xff\xfa\x7f\x0e\x75\xb6\xfe\x3f\x77\xff\x23\xe3\x96\x21\xfb\x1f" "\x00\x00\x00\x26\xc8\xdd\xff\xa8\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72" "\xf7\x3f\x3a\x6e\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd\x8f\x89\x5b\x86" "\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x6f\xbf\xaf\xff\xbf\x26" "\xfd\xff\x9a\xfe\x7f\x87\xfe\x5f\xff\xaf\xff\xd7\xff\x73\xa8\xb3\xf5" "\xff\xb9\xfb\x1f\x1b\xb7\x0c\xd9\xff\x00\x00\x00\x30\x41\xee\xfe\xc7" "\xc5\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\xf1\x71\x8b\xfd\x0f\x00" "\x00\x00\x6d\xe4\xee\x7f\x42\xdc\x32\x64\xff\xeb\xff\xf5\xff\xfa\x7f" "\xfd\xbf\xfe\x7f\xfb\x7d\xfd\xff\x35\xe9\xff\xd7\xf4\xff\x3b\xf4\xff" "\xfa\x7f\xfd\xbf\xfe\x9f\x43\x9d\xad\xff\xcf\xdd\xff\xc4\xb8\x65\xc8" "\xfe\x07\x00\x00\x80\x09\x72\xf7\x3f\x29\x6e\xb1\xff\x01\x00\x00\xa0" "\x8d\xdc\xfd\x4f\x8e\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\x53\xe2" "\x96\x21\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xdb\xef\xeb\xff" "\xaf\x49\xff\xbf\xa6\xff\xdf\xa1\xff\xd7\xff\xeb\xff\xf5\xff\x1c\xea" "\x6c\xfd\x7f\xee\xfe\xa7\xc6\x2d\x43\xf6\x3f\x00\x00\x00\x4c\x90\xbb" "\xff\x69\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\x7f\x7a\xdc\x62\xff" "\x03\x00\x00\x40\x1b\xb9\xfb\x9f\x11\xb7\x0c\xd9\xff\xfa\x7f\xfd\xbf" "\xfe\x5f\xff\xaf\xff\xdf\x7e\x5f\xff\x7f\x4d\xfa\xff\x35\xfd\xff\x0e" "\xfd\xbf\xfe\x5f\xff\xaf\xff\xe7\x50\x67\xeb\xff\x73\xf7\x3f\x33\x6e" "\x19\xb2\xff\x01\x00\x00\x60\x82\xdc\xfd\xcf\x8a\x5b\xec\x7f\x00\x00" "\x00\x68\x23\x77\xff\xb3\xe3\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff" "\x9c\xb8\x65\xc8\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xf6\xfb" "\xfa\xff\x6b\xd2\xff\xaf\xe9\xff\x77\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f" "\x87\x3a\x5b\xff\x9f\xbb\xff\xb9\x71\xcb\x90\xfd\x0f\x00\x00\x00\x13" "\xe4\xee\x7f\x5e\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\x9f\x1f\xb7" "\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\x17\xc4\x2d\x43\xf6\xbf\xfe\x5f" "\xff\xaf\xff\xd7\xff\xeb\xff\xb7\xdf\xd7\xff\x5f\x53\xbf\xfe\xff\xf6" "\x3b\xde\xe5\xc6\xff\xfb\x53\xfe\x37\xfd\xff\x0e\xfd\xbf\xfe\x5f\xff" "\xaf\xff\xe7\x50\x67\xeb\xff\x73\xf7\xbf\x30\x6e\x19\xb2\xff\x01\x00" "\x00\x60\x82\xdc\xfd\x2f\x8a\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff" "\x8b\xe3\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\x92\xb8\x65\xc8\xfe" "\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xf6\xfb\xfa\xff\x6b\xea\xd7" "\xff\xfb\xfe\xff\x6d\xfa\xff\xa2\xff\x3f\xf7\xef\xaf\xff\xd7\xff\xf3" "\xdf\xce\xd6\xff\xe7\xee\x7f\x69\xdc\x32\x64\xff\x03\x00\x00\xc0\x04" "\xb9\xfb\x5f\x16\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\x97\xc7\x2d" "\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x15\x71\xcb\x90\xfd\xaf\xff\xd7" "\xff\xeb\xff\xf5\xff\xfa\xff\xed\xf7\xf5\xff\xd7\xa4\xff\x5f\xd3\xff" "\xef\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x0e\x75\xb6\xfe\x3f\x77\xff\x2b" "\xe3\x96\x21\xfb\x1f\x00\x00\x00\x26\xc8\xdd\xff\xaa\xb8\xc5\xfe\x07" "\x00\x00\x80\x36\x72\xf7\xbf\x3a\x6e\xb1\xff\x01\x00\x00\xa0\x8d\xdc" "\xfd\xaf\x89\x5b\x86\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x6f" "\xbf\xaf\xff\xbf\x26\xfd\xff\x9a\xfe\x7f\x87\xfe\x5f\xff\xaf\xff\xd7" "\xff\x73\xa8\xb3\xf5\xff\xb9\xfb\x5f\x1b\xb7\x0c\xd9\xff\x00\x00\x00" "\x30\x41\xee\xfe\xd7\xc5\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\xf5" "\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\x7f\x43\xdc\x32\x64\xff\xeb" "\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xfb\x7d\xfd\xff\x35\xe9\xff\xd7" "\xf4\xff\x3b\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x43\x9d\xad\xff\xcf\xdd" "\xff\xc6\xb8\x65\xc8\xfe\x07\x00\x00\x80\x09\x72\xf7\xbf\x29\x6e\xb1" "\xff\x01\x00\x00\xa0\x8d\xdc\xfd\x6f\x8e\x5b\xec\x7f\x00\x00\x00\x68" "\x23\x77\xff\x5b\xe2\x96\x21\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5" "\xff\xdb\xef\xeb\xff\xaf\x49\xff\xbf\xa6\xff\xdf\xa1\xff\xd7\xff\xeb" "\xff\xf5\xff\x1c\xea\x6c\xfd\x7f\xee\xfe\xb7\xc6\x2d\x43\xf6\x3f\x00" "\x00\x00\x4c\x90\xbb\xff\x6d\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee" "\x7f\x7b\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\x6f\x8f\x5b\x86\xec" "\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x6f\xbf\xaf\xff\xbf\x26\xfd" "\xff\x9a\xfe\x7f\x87\xfe\x5f\xff\xaf\xff\xd7\xff\x73\xa8\xb3\xf5\xff" "\xb9\xfb\xdf\x11\xb7\x0c\xd9\xff\x00\x00\x00\x30\x41\xee\xfe\x77\xc6" "\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x5d\x71\x8b\xfd\x0f\x00\x00" "\x00\x6d\xe4\xee\x7f\x77\xdc\x32\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd" "\xbf\xfe\x7f\xfb\x7d\xfd\xff\x35\xe9\xff\xd7\xf4\xff\x3b\xf4\xff\xfa" "\x7f\xfd\xbf\xfe\x9f\x43\x9d\xad\xff\xcf\xdd\xff\x9e\xb8\x65\xc8\xfe" "\x07\x00\x00\x80\x09\x72\xf7\xbf\x37\x6e\xb1\xff\x01\x00\x00\xa0\x8d" "\xdc\xfd\xef\x8b\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\xfb\xe3\x96" "\x21\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xdb\xef\xeb\xff\xaf" "\x49\xff\xbf\xa6\xff\xdf\xa1\xff\xd7\xff\xeb\xff\xf5\xff\x1c\xea\x6c" "\xfd\x7f\xee\xfe\x0f\xc4\x2d\x43\xf6\x3f\x00\x00\x00\x4c\x90\xbb\xff" "\x83\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\xff\x50\xdc\x62\xff\x03" "\x00\x00\x40\x1b\xb9\xfb\x3f\x1c\xb7\x0c\xd9\xff\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\xaf\xff\xdf\x7e\x5f\xff\x7f\x4d\xfa\xff\x35\xfd\xff\x0e\xfd" "\xbf\xfe\x5f\xff\xaf\xff\xe7\x50\x67\xeb\xff\x73\xf7\x7f\x24\x6e\x19" "\xb2\xff\x01\x00\x00\x60\x82\xdc\xfd\x1f\x8d\x5b\xec\x7f\x00\x00\x00" "\x68\x23\x77\xff\xc7\xe2\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xf1" "\xb8\x65\xc8\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xf6\xfb\xfa" "\xff\x6b\xd2\xff\xaf\xe9\xff\x77\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\x87" "\x3a\x5b\xff\x9f\xbb\xff\x13\x71\xcb\x90\xfd\x0f\x00\x00\x00\x13\xe4" "\xee\xff\x64\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\x3f\x15\xb7\xd8" "\xff\x00\x00\x00\xd0\x46\xee\xfe\x4f\xc7\x2d\x43\xf6\xbf\xfe\x5f\xff" "\x7f\xab\xfa\xff\x3b\xe9\xff\xf5\xff\xfa\xff\xfa\xab\xea\xff\x8f\xa3" "\xff\x5f\xd3\xff\xef\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x0e\x75\xb6\xfe" "\x3f\x77\xff\x67\xe2\x96\x21\xfb\x1f\x00\x00\x00\x26\xc8\xdd\xff\xd9" "\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\x7f\x2e\x6e\xb1\xff\x01\x00" "\x00\xa0\x8d\xdc\xfd\x9f\x8f\x5b\x86\xec\x7f\xfd\xbf\xfe\xdf\xf7\xff" "\xf5\xff\xfa\xff\xed\xf7\xf5\xff\xd7\xa4\xff\x5f\xd3\xff\xef\xd0\xff" "\xeb\xff\xf5\xff\xfa\x7f\x0e\x75\xb6\xfe\x3f\x77\xff\x17\xe2\x96\x21" "\xfb\x1f\x00\x00\x00\x26\xc8\xdd\xff\xc5\xb8\xc5\xfe\x07\x00\x00\x80" "\x36\x72\xf7\x7f\x29\x6e\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd\x5f\x8e" "\x5b\x86\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x6f\xbf\xaf\xff" "\xbf\x26\xfd\xff\x9a\xfe\x7f\x87\xfe\x5f\xff\xaf\xff\xd7\xff\x73\xa8" "\xb3\xf5\xff\xb9\xfb\xbf\x12\xb7\x0c\xd9\xff\x00\x00\x00\x30\x41\xee" "\xfe\xaf\xc6\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x6b\x71\x8b\xfd" "\x0f\x00\x00\x00\x6d\xe4\xee\xff\x7a\xdc\x32\x64\xff\xeb\xff\xf5\xff" "\xfa\x7f\xfd\xbf\xfe\x7f\xfb\x7d\xfd\xff\x35\xe9\xff\xd7\xf4\xff\x3b" "\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x43\x9d\xad\xff\xcf\xdd\xff\x8d\xb8" "\x65\xc8\xfe\x07\x00\x00\x80\x09\x72\xf7\x7f\x33\x6e\xb1\xff\x01\x00" "\x00\xa0\x8d\xdc\xfd\xdf\x8a\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff" "\xb7\xe3\x96\x21\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xdb\xef" "\xeb\xff\xaf\x49\xff\xbf\xa6\xff\xdf\xa1\xff\xd7\xff\xeb\xff\xf5\xff" "\x1c\xea\x6c\xfd\x7f\xee\xfe\xef\xc4\x2d\x43\xf6\x3f\x00\x00\x00\x4c" "\x90\xbb\xff\xbb\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\xff\x5e\xdc" "\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\xbf\x1f\xb7\x0c\xd9\xff\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\xaf\xff\xdf\x7e\x5f\xff\x7f\x4d\xfa\xff\x35\xfd" "\xff\x0e\xfd\xbf\xfe\x5f\xff\xaf\xff\xe7\x50\x67\xeb\xff\x73\xf7\xff" "\x20\x6e\x19\xb2\xff\x01\x00\x00\x60\x82\xdc\xfd\x3f\x8c\x5b\xec\x7f" "\x00\x00\x00\x68\x23\x77\xff\x8f\xe2\x16\xfb\x1f\x00\x00\x00\xda\xc8" "\xdd\xff\xe3\xb8\x65\xc8\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff" "\xf6\xfb\xfa\xff\x6b\xd2\xff\xaf\xe9\xff\x77\xe8\xff\xf5\xff\xfa\x7f" "\xfd\x3f\x87\x3a\x5b\xff\x9f\xbb\xff\x27\x71\xcb\x90\xfd\x0f\x00\x00" "\x00\x13\xe4\xee\xff\x69\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\x7f" "\x16\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\x9f\xc7\x2d\x43\xf6\xbf" "\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xb7\xdf\xd7\xff\x5f\x93\xfe\x7f" "\x4d\xff\xbf\x43\xff\xaf\xff\xd7\xff\xeb\xff\x39\xd4\xd9\xfa\xff\xdc" "\xfd\xbf\x88\x5b\x86\xec\x7f\x00\x00\x00\x98\x20\x77\xff\x2f\xe3\x16" "\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xab\xb8\xc5\xfe\x07\x00\x00\x80" "\x36\x72\xf7\xff\x3a\x6e\x19\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f" "\xff\xbf\xfd\xbe\xfe\xff\x9a\xf4\xff\x6b\xfa\xff\x1d\xfa\x7f\xfd\xbf" "\xfe\x5f\xff\xcf\xa1\xce\xd6\xff\xe7\xee\xff\x4d\xdc\x32\x64\xff\x03" "\x00\x00\xc0\x04\xb9\xfb\x7f\x1b\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee" "\xfe\xdf\xc5\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\xf7\x71\xcb\x90" "\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xed\xf7\xf5\xff\xd7\xa4" "\xff\x5f\xd3\xff\xef\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x0e\xb5\xe8\xff" "\xef\x7c\xdb\x2d\xe8\xff\x73\xf7\xff\x21\x6e\x19\xb2\xff\x01\x00\x00" "\x60\x82\xdc\xfd\x7f\x8c\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\x9f" "\xe2\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xe7\xb8\x65\xc8\xfe\xd7" "\xff\xaf\xfa\xff\x3b\xe8\xff\xf5\xff\xfa\x7f\xfd\x7f\xd1\xff\x5f\x83" "\xfe\x7f\x4d\xff\xbf\x43\xff\xaf\xff\xd7\xff\xeb\xff\x39\xd4\xa2\xff" "\xff\x8f\x9b\xdd\xff\xe7\xee\xff\x4b\xdc\x32\x64\xff\x03\x00\x00\xc0" "\x04\xb9\xfb\xff\x1a\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\xbf\xc5" "\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x46\xdc\x32\x64\xff\xeb\xff" "\x7d\xff\x5f\xff\xaf\xff\xd7\xff\x6f\xbf\xaf\xff\xbf\x26\xfd\xff\x9a" "\xfe\x7f\x87\xfe\x5f\xff\xaf\xff\xd7\xff\x73\xa8\xb3\xf5\xff\xb9\xfb" "\xff\x1e\xb7\x0c\xd9\xff\x00\x00\x00\x30\x41\xee\xfe\x7f\xc4\x2d\xf6" "\x3f\x00\x00\x00\xb4\x91\xbb\xff\x9f\x71\x8b\xfd\x0f\x00\x00\x00\x6d" "\xe4\xee\xff\x57\xdc\x32\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe" "\x7f\xfb\x7d\xfd\xff\x35\xe9\xff\xd7\xf4\xff\x3b\xf4\xff\xfa\x7f\xfd" "\xbf\xfe\x9f\x43\x9d\xad\xff\xcf\xdd\xff\xef\x00\x00\x00\xff\xff\x1e" "\xec\x81\x0a", 24126); syz_mount_image(0x20001200, 0x20005e40, 0, 0x200000c0, 1, 0x5e3e, 0x2000bc80); break; case 1: memcpy((void*)0x20000000, ".\000", 2); res = syscall(__NR_fspick, 0xffffff9c, 0x20000000ul, 0ul); if (res != -1) r[0] = res; break; case 2: syscall(__NR_fsconfig, r[0], 7ul, 0ul, 0ul, 0ul); { int i; for (i = 0; i < 32; i++) { syscall(__NR_fsconfig, r[0], 7ul, 0ul, 0ul, 0ul); } } break; case 3: memcpy((void*)0x20004300, ".\000", 2); syscall(__NR_mount, 0ul, 0x20004300ul, 0ul, 0x18c8423ul, 0ul); { int i; for (i = 0; i < 32; i++) { syscall(__NR_mount, 0ul, 0x20004300ul, 0ul, 0x18c8423ul, 0ul); } } break; } } int main(void) { syscall(__NR_mmap, 0x1ffff000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 7ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x21000000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); setup_cgroups(); for (procid = 0; procid < 6; procid++) { if (fork() == 0) { use_temporary_dir(); do_sandbox_none(); } } sleep(1000000); return 0; }