// https://syzkaller.appspot.com/bug?id=0f2cf7b72ba525cc8d9f12a776ab45f440dadac4 // 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 #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 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; } #define MAX_FDS 30 #define BTPROTO_HCI 1 #define ACL_LINK 1 #define SCAN_PAGE 2 typedef struct { uint8_t b[6]; } __attribute__((packed)) bdaddr_t; #define HCI_COMMAND_PKT 1 #define HCI_EVENT_PKT 4 #define HCI_VENDOR_PKT 0xff struct hci_command_hdr { uint16_t opcode; uint8_t plen; } __attribute__((packed)); struct hci_event_hdr { uint8_t evt; uint8_t plen; } __attribute__((packed)); #define HCI_EV_CONN_COMPLETE 0x03 struct hci_ev_conn_complete { uint8_t status; uint16_t handle; bdaddr_t bdaddr; uint8_t link_type; uint8_t encr_mode; } __attribute__((packed)); #define HCI_EV_CONN_REQUEST 0x04 struct hci_ev_conn_request { bdaddr_t bdaddr; uint8_t dev_class[3]; uint8_t link_type; } __attribute__((packed)); #define HCI_EV_REMOTE_FEATURES 0x0b struct hci_ev_remote_features { uint8_t status; uint16_t handle; uint8_t features[8]; } __attribute__((packed)); #define HCI_EV_CMD_COMPLETE 0x0e struct hci_ev_cmd_complete { uint8_t ncmd; uint16_t opcode; } __attribute__((packed)); #define HCI_OP_WRITE_SCAN_ENABLE 0x0c1a #define HCI_OP_READ_BUFFER_SIZE 0x1005 struct hci_rp_read_buffer_size { uint8_t status; uint16_t acl_mtu; uint8_t sco_mtu; uint16_t acl_max_pkt; uint16_t sco_max_pkt; } __attribute__((packed)); #define HCI_OP_READ_BD_ADDR 0x1009 struct hci_rp_read_bd_addr { uint8_t status; bdaddr_t bdaddr; } __attribute__((packed)); #define HCI_EV_LE_META 0x3e struct hci_ev_le_meta { uint8_t subevent; } __attribute__((packed)); #define HCI_EV_LE_CONN_COMPLETE 0x01 struct hci_ev_le_conn_complete { uint8_t status; uint16_t handle; uint8_t role; uint8_t bdaddr_type; bdaddr_t bdaddr; uint16_t interval; uint16_t latency; uint16_t supervision_timeout; uint8_t clk_accurancy; } __attribute__((packed)); struct hci_dev_req { uint16_t dev_id; uint32_t dev_opt; }; struct vhci_vendor_pkt_request { uint8_t type; uint8_t opcode; } __attribute__((packed)); struct vhci_pkt { uint8_t type; union { struct { uint8_t opcode; uint16_t id; } __attribute__((packed)) vendor_pkt; struct hci_command_hdr command_hdr; }; } __attribute__((packed)); #define HCIDEVUP _IOW('H', 201, int) #define HCISETSCAN _IOW('H', 221, int) static int vhci_fd = -1; static void rfkill_unblock_all() { int fd = open("/dev/rfkill", O_WRONLY); if (fd < 0) exit(1); struct rfkill_event event = {0}; event.idx = 0; event.type = RFKILL_TYPE_ALL; event.op = RFKILL_OP_CHANGE_ALL; event.soft = 0; event.hard = 0; if (write(fd, &event, sizeof(event)) < 0) exit(1); close(fd); } static void hci_send_event_packet(int fd, uint8_t evt, void* data, size_t data_len) { struct iovec iv[3]; struct hci_event_hdr hdr; hdr.evt = evt; hdr.plen = data_len; uint8_t type = HCI_EVENT_PKT; iv[0].iov_base = &type; iv[0].iov_len = sizeof(type); iv[1].iov_base = &hdr; iv[1].iov_len = sizeof(hdr); iv[2].iov_base = data; iv[2].iov_len = data_len; if (writev(fd, iv, sizeof(iv) / sizeof(struct iovec)) < 0) exit(1); } static void hci_send_event_cmd_complete(int fd, uint16_t opcode, void* data, size_t data_len) { struct iovec iv[4]; struct hci_event_hdr hdr; hdr.evt = HCI_EV_CMD_COMPLETE; hdr.plen = sizeof(struct hci_ev_cmd_complete) + data_len; struct hci_ev_cmd_complete evt_hdr; evt_hdr.ncmd = 1; evt_hdr.opcode = opcode; uint8_t type = HCI_EVENT_PKT; iv[0].iov_base = &type; iv[0].iov_len = sizeof(type); iv[1].iov_base = &hdr; iv[1].iov_len = sizeof(hdr); iv[2].iov_base = &evt_hdr; iv[2].iov_len = sizeof(evt_hdr); iv[3].iov_base = data; iv[3].iov_len = data_len; if (writev(fd, iv, sizeof(iv) / sizeof(struct iovec)) < 0) exit(1); } static bool process_command_pkt(int fd, char* buf, ssize_t buf_size) { struct hci_command_hdr* hdr = (struct hci_command_hdr*)buf; if (buf_size < (ssize_t)sizeof(struct hci_command_hdr) || hdr->plen != buf_size - sizeof(struct hci_command_hdr)) exit(1); switch (hdr->opcode) { case HCI_OP_WRITE_SCAN_ENABLE: { uint8_t status = 0; hci_send_event_cmd_complete(fd, hdr->opcode, &status, sizeof(status)); return true; } case HCI_OP_READ_BD_ADDR: { struct hci_rp_read_bd_addr rp = {0}; rp.status = 0; memset(&rp.bdaddr, 0xaa, 6); hci_send_event_cmd_complete(fd, hdr->opcode, &rp, sizeof(rp)); return false; } case HCI_OP_READ_BUFFER_SIZE: { struct hci_rp_read_buffer_size rp = {0}; rp.status = 0; rp.acl_mtu = 1021; rp.sco_mtu = 96; rp.acl_max_pkt = 4; rp.sco_max_pkt = 6; hci_send_event_cmd_complete(fd, hdr->opcode, &rp, sizeof(rp)); return false; } } char dummy[0xf9] = {0}; hci_send_event_cmd_complete(fd, hdr->opcode, dummy, sizeof(dummy)); return false; } static void* event_thread(void* arg) { while (1) { char buf[1024] = {0}; ssize_t buf_size = read(vhci_fd, buf, sizeof(buf)); if (buf_size < 0) exit(1); if (buf_size > 0 && buf[0] == HCI_COMMAND_PKT) { if (process_command_pkt(vhci_fd, buf + 1, buf_size - 1)) break; } } return NULL; } #define HCI_HANDLE_1 200 #define HCI_HANDLE_2 201 #define HCI_PRIMARY 0 #define HCI_OP_RESET 0x0c03 static void initialize_vhci() { int hci_sock = socket(AF_BLUETOOTH, SOCK_RAW, BTPROTO_HCI); if (hci_sock < 0) exit(1); vhci_fd = open("/dev/vhci", O_RDWR); if (vhci_fd == -1) exit(1); const int kVhciFd = 202; if (dup2(vhci_fd, kVhciFd) < 0) exit(1); close(vhci_fd); vhci_fd = kVhciFd; struct vhci_vendor_pkt_request vendor_pkt_req = {HCI_VENDOR_PKT, HCI_PRIMARY}; if (write(vhci_fd, &vendor_pkt_req, sizeof(vendor_pkt_req)) != sizeof(vendor_pkt_req)) exit(1); struct vhci_pkt vhci_pkt; if (read(vhci_fd, &vhci_pkt, sizeof(vhci_pkt)) != sizeof(vhci_pkt)) exit(1); if (vhci_pkt.type == HCI_COMMAND_PKT && vhci_pkt.command_hdr.opcode == HCI_OP_RESET) { char response[1] = {0}; hci_send_event_cmd_complete(vhci_fd, HCI_OP_RESET, response, sizeof(response)); if (read(vhci_fd, &vhci_pkt, sizeof(vhci_pkt)) != sizeof(vhci_pkt)) exit(1); } if (vhci_pkt.type != HCI_VENDOR_PKT) exit(1); int dev_id = vhci_pkt.vendor_pkt.id; pthread_t th; if (pthread_create(&th, NULL, event_thread, NULL)) exit(1); int ret = ioctl(hci_sock, HCIDEVUP, dev_id); if (ret) { if (errno == ERFKILL) { rfkill_unblock_all(); ret = ioctl(hci_sock, HCIDEVUP, dev_id); } if (ret && errno != EALREADY) exit(1); } struct hci_dev_req dr = {0}; dr.dev_id = dev_id; dr.dev_opt = SCAN_PAGE; if (ioctl(hci_sock, HCISETSCAN, &dr)) exit(1); struct hci_ev_conn_request request; memset(&request, 0, sizeof(request)); memset(&request.bdaddr, 0xaa, 6); *(uint8_t*)&request.bdaddr.b[5] = 0x10; request.link_type = ACL_LINK; hci_send_event_packet(vhci_fd, HCI_EV_CONN_REQUEST, &request, sizeof(request)); struct hci_ev_conn_complete complete; memset(&complete, 0, sizeof(complete)); complete.status = 0; complete.handle = HCI_HANDLE_1; memset(&complete.bdaddr, 0xaa, 6); *(uint8_t*)&complete.bdaddr.b[5] = 0x10; complete.link_type = ACL_LINK; complete.encr_mode = 0; hci_send_event_packet(vhci_fd, HCI_EV_CONN_COMPLETE, &complete, sizeof(complete)); struct hci_ev_remote_features features; memset(&features, 0, sizeof(features)); features.status = 0; features.handle = HCI_HANDLE_1; hci_send_event_packet(vhci_fd, HCI_EV_REMOTE_FEATURES, &features, sizeof(features)); struct { struct hci_ev_le_meta le_meta; struct hci_ev_le_conn_complete le_conn; } le_conn; memset(&le_conn, 0, sizeof(le_conn)); le_conn.le_meta.subevent = HCI_EV_LE_CONN_COMPLETE; memset(&le_conn.le_conn.bdaddr, 0xaa, 6); *(uint8_t*)&le_conn.le_conn.bdaddr.b[5] = 0x11; le_conn.le_conn.role = 1; le_conn.le_conn.handle = HCI_HANDLE_2; hci_send_event_packet(vhci_fd, HCI_EV_LE_META, &le_conn, sizeof(le_conn)); pthread_join(th, NULL); close(hci_sock); } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define XT_TABLE_SIZE 1536 #define XT_MAX_ENTRIES 10 struct xt_counters { uint64_t pcnt, bcnt; }; struct ipt_getinfo { char name[32]; unsigned int valid_hooks; unsigned int hook_entry[5]; unsigned int underflow[5]; unsigned int num_entries; unsigned int size; }; struct ipt_get_entries { char name[32]; unsigned int size; uint64_t entrytable[XT_TABLE_SIZE / sizeof(uint64_t)]; }; struct ipt_replace { char name[32]; unsigned int valid_hooks; unsigned int num_entries; unsigned int size; unsigned int hook_entry[5]; unsigned int underflow[5]; unsigned int num_counters; struct xt_counters* counters; uint64_t entrytable[XT_TABLE_SIZE / sizeof(uint64_t)]; }; struct ipt_table_desc { const char* name; struct ipt_getinfo info; struct ipt_replace replace; }; static struct ipt_table_desc ipv4_tables[] = { {.name = "filter"}, {.name = "nat"}, {.name = "mangle"}, {.name = "raw"}, {.name = "security"}, }; static struct ipt_table_desc ipv6_tables[] = { {.name = "filter"}, {.name = "nat"}, {.name = "mangle"}, {.name = "raw"}, {.name = "security"}, }; #define IPT_BASE_CTL 64 #define IPT_SO_SET_REPLACE (IPT_BASE_CTL) #define IPT_SO_GET_INFO (IPT_BASE_CTL) #define IPT_SO_GET_ENTRIES (IPT_BASE_CTL + 1) struct arpt_getinfo { char name[32]; unsigned int valid_hooks; unsigned int hook_entry[3]; unsigned int underflow[3]; unsigned int num_entries; unsigned int size; }; struct arpt_get_entries { char name[32]; unsigned int size; uint64_t entrytable[XT_TABLE_SIZE / sizeof(uint64_t)]; }; struct arpt_replace { char name[32]; unsigned int valid_hooks; unsigned int num_entries; unsigned int size; unsigned int hook_entry[3]; unsigned int underflow[3]; unsigned int num_counters; struct xt_counters* counters; uint64_t entrytable[XT_TABLE_SIZE / sizeof(uint64_t)]; }; struct arpt_table_desc { const char* name; struct arpt_getinfo info; struct arpt_replace replace; }; static struct arpt_table_desc arpt_tables[] = { {.name = "filter"}, }; #define ARPT_BASE_CTL 96 #define ARPT_SO_SET_REPLACE (ARPT_BASE_CTL) #define ARPT_SO_GET_INFO (ARPT_BASE_CTL) #define ARPT_SO_GET_ENTRIES (ARPT_BASE_CTL + 1) static void checkpoint_iptables(struct ipt_table_desc* tables, int num_tables, int family, int level) { int fd = socket(family, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: case ENOENT: return; } exit(1); } for (int i = 0; i < num_tables; i++) { struct ipt_table_desc* table = &tables[i]; strcpy(table->info.name, table->name); strcpy(table->replace.name, table->name); socklen_t optlen = sizeof(table->info); if (getsockopt(fd, level, IPT_SO_GET_INFO, &table->info, &optlen)) { switch (errno) { case EPERM: case ENOENT: case ENOPROTOOPT: continue; } exit(1); } if (table->info.size > sizeof(table->replace.entrytable)) exit(1); if (table->info.num_entries > XT_MAX_ENTRIES) exit(1); struct ipt_get_entries entries; memset(&entries, 0, sizeof(entries)); strcpy(entries.name, table->name); entries.size = table->info.size; optlen = sizeof(entries) - sizeof(entries.entrytable) + table->info.size; if (getsockopt(fd, level, IPT_SO_GET_ENTRIES, &entries, &optlen)) exit(1); table->replace.valid_hooks = table->info.valid_hooks; table->replace.num_entries = table->info.num_entries; table->replace.size = table->info.size; memcpy(table->replace.hook_entry, table->info.hook_entry, sizeof(table->replace.hook_entry)); memcpy(table->replace.underflow, table->info.underflow, sizeof(table->replace.underflow)); memcpy(table->replace.entrytable, entries.entrytable, table->info.size); } close(fd); } static void reset_iptables(struct ipt_table_desc* tables, int num_tables, int family, int level) { int fd = socket(family, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: case ENOENT: return; } exit(1); } for (int i = 0; i < num_tables; i++) { struct ipt_table_desc* table = &tables[i]; if (table->info.valid_hooks == 0) continue; struct ipt_getinfo info; memset(&info, 0, sizeof(info)); strcpy(info.name, table->name); socklen_t optlen = sizeof(info); if (getsockopt(fd, level, IPT_SO_GET_INFO, &info, &optlen)) exit(1); if (memcmp(&table->info, &info, sizeof(table->info)) == 0) { struct ipt_get_entries entries; memset(&entries, 0, sizeof(entries)); strcpy(entries.name, table->name); entries.size = table->info.size; optlen = sizeof(entries) - sizeof(entries.entrytable) + entries.size; if (getsockopt(fd, level, IPT_SO_GET_ENTRIES, &entries, &optlen)) exit(1); if (memcmp(table->replace.entrytable, entries.entrytable, table->info.size) == 0) continue; } struct xt_counters counters[XT_MAX_ENTRIES]; table->replace.num_counters = info.num_entries; table->replace.counters = counters; optlen = sizeof(table->replace) - sizeof(table->replace.entrytable) + table->replace.size; if (setsockopt(fd, level, IPT_SO_SET_REPLACE, &table->replace, optlen)) exit(1); } close(fd); } static void checkpoint_arptables(void) { int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: case ENOENT: return; } exit(1); } for (unsigned i = 0; i < sizeof(arpt_tables) / sizeof(arpt_tables[0]); i++) { struct arpt_table_desc* table = &arpt_tables[i]; strcpy(table->info.name, table->name); strcpy(table->replace.name, table->name); socklen_t optlen = sizeof(table->info); if (getsockopt(fd, SOL_IP, ARPT_SO_GET_INFO, &table->info, &optlen)) { switch (errno) { case EPERM: case ENOENT: case ENOPROTOOPT: continue; } exit(1); } if (table->info.size > sizeof(table->replace.entrytable)) exit(1); if (table->info.num_entries > XT_MAX_ENTRIES) exit(1); struct arpt_get_entries entries; memset(&entries, 0, sizeof(entries)); strcpy(entries.name, table->name); entries.size = table->info.size; optlen = sizeof(entries) - sizeof(entries.entrytable) + table->info.size; if (getsockopt(fd, SOL_IP, ARPT_SO_GET_ENTRIES, &entries, &optlen)) exit(1); table->replace.valid_hooks = table->info.valid_hooks; table->replace.num_entries = table->info.num_entries; table->replace.size = table->info.size; memcpy(table->replace.hook_entry, table->info.hook_entry, sizeof(table->replace.hook_entry)); memcpy(table->replace.underflow, table->info.underflow, sizeof(table->replace.underflow)); memcpy(table->replace.entrytable, entries.entrytable, table->info.size); } close(fd); } static void reset_arptables() { int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: case ENOENT: return; } exit(1); } for (unsigned i = 0; i < sizeof(arpt_tables) / sizeof(arpt_tables[0]); i++) { struct arpt_table_desc* table = &arpt_tables[i]; if (table->info.valid_hooks == 0) continue; struct arpt_getinfo info; memset(&info, 0, sizeof(info)); strcpy(info.name, table->name); socklen_t optlen = sizeof(info); if (getsockopt(fd, SOL_IP, ARPT_SO_GET_INFO, &info, &optlen)) exit(1); if (memcmp(&table->info, &info, sizeof(table->info)) == 0) { struct arpt_get_entries entries; memset(&entries, 0, sizeof(entries)); strcpy(entries.name, table->name); entries.size = table->info.size; optlen = sizeof(entries) - sizeof(entries.entrytable) + entries.size; if (getsockopt(fd, SOL_IP, ARPT_SO_GET_ENTRIES, &entries, &optlen)) exit(1); if (memcmp(table->replace.entrytable, entries.entrytable, table->info.size) == 0) continue; } else { } struct xt_counters counters[XT_MAX_ENTRIES]; table->replace.num_counters = info.num_entries; table->replace.counters = counters; optlen = sizeof(table->replace) - sizeof(table->replace.entrytable) + table->replace.size; if (setsockopt(fd, SOL_IP, ARPT_SO_SET_REPLACE, &table->replace, optlen)) exit(1); } close(fd); } #define NF_BR_NUMHOOKS 6 #define EBT_TABLE_MAXNAMELEN 32 #define EBT_CHAIN_MAXNAMELEN 32 #define EBT_BASE_CTL 128 #define EBT_SO_SET_ENTRIES (EBT_BASE_CTL) #define EBT_SO_GET_INFO (EBT_BASE_CTL) #define EBT_SO_GET_ENTRIES (EBT_SO_GET_INFO + 1) #define EBT_SO_GET_INIT_INFO (EBT_SO_GET_ENTRIES + 1) #define EBT_SO_GET_INIT_ENTRIES (EBT_SO_GET_INIT_INFO + 1) struct ebt_replace { char name[EBT_TABLE_MAXNAMELEN]; unsigned int valid_hooks; unsigned int nentries; unsigned int entries_size; struct ebt_entries* hook_entry[NF_BR_NUMHOOKS]; unsigned int num_counters; struct ebt_counter* counters; char* entries; }; struct ebt_entries { unsigned int distinguisher; char name[EBT_CHAIN_MAXNAMELEN]; unsigned int counter_offset; int policy; unsigned int nentries; char data[0] __attribute__((aligned(__alignof__(struct ebt_replace)))); }; struct ebt_table_desc { const char* name; struct ebt_replace replace; char entrytable[XT_TABLE_SIZE]; }; static struct ebt_table_desc ebt_tables[] = { {.name = "filter"}, {.name = "nat"}, {.name = "broute"}, }; static void checkpoint_ebtables(void) { int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: case ENOENT: return; } exit(1); } for (size_t i = 0; i < sizeof(ebt_tables) / sizeof(ebt_tables[0]); i++) { struct ebt_table_desc* table = &ebt_tables[i]; strcpy(table->replace.name, table->name); socklen_t optlen = sizeof(table->replace); if (getsockopt(fd, SOL_IP, EBT_SO_GET_INIT_INFO, &table->replace, &optlen)) { switch (errno) { case EPERM: case ENOENT: case ENOPROTOOPT: continue; } exit(1); } if (table->replace.entries_size > sizeof(table->entrytable)) exit(1); table->replace.num_counters = 0; table->replace.entries = table->entrytable; optlen = sizeof(table->replace) + table->replace.entries_size; if (getsockopt(fd, SOL_IP, EBT_SO_GET_INIT_ENTRIES, &table->replace, &optlen)) exit(1); } close(fd); } static void reset_ebtables() { int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: case ENOENT: return; } exit(1); } for (unsigned i = 0; i < sizeof(ebt_tables) / sizeof(ebt_tables[0]); i++) { struct ebt_table_desc* table = &ebt_tables[i]; if (table->replace.valid_hooks == 0) continue; struct ebt_replace replace; memset(&replace, 0, sizeof(replace)); strcpy(replace.name, table->name); socklen_t optlen = sizeof(replace); if (getsockopt(fd, SOL_IP, EBT_SO_GET_INFO, &replace, &optlen)) exit(1); replace.num_counters = 0; table->replace.entries = 0; for (unsigned h = 0; h < NF_BR_NUMHOOKS; h++) table->replace.hook_entry[h] = 0; if (memcmp(&table->replace, &replace, sizeof(table->replace)) == 0) { char entrytable[XT_TABLE_SIZE]; memset(&entrytable, 0, sizeof(entrytable)); replace.entries = entrytable; optlen = sizeof(replace) + replace.entries_size; if (getsockopt(fd, SOL_IP, EBT_SO_GET_ENTRIES, &replace, &optlen)) exit(1); if (memcmp(table->entrytable, entrytable, replace.entries_size) == 0) continue; } for (unsigned j = 0, h = 0; h < NF_BR_NUMHOOKS; h++) { if (table->replace.valid_hooks & (1 << h)) { table->replace.hook_entry[h] = (struct ebt_entries*)table->entrytable + j; j++; } } table->replace.entries = table->entrytable; optlen = sizeof(table->replace) + table->replace.entries_size; if (setsockopt(fd, SOL_IP, EBT_SO_SET_ENTRIES, &table->replace, optlen)) exit(1); } close(fd); } static void checkpoint_net_namespace(void) { checkpoint_ebtables(); checkpoint_arptables(); checkpoint_iptables(ipv4_tables, sizeof(ipv4_tables) / sizeof(ipv4_tables[0]), AF_INET, SOL_IP); checkpoint_iptables(ipv6_tables, sizeof(ipv6_tables) / sizeof(ipv6_tables[0]), AF_INET6, SOL_IPV6); } static void reset_net_namespace(void) { reset_ebtables(); reset_arptables(); reset_iptables(ipv4_tables, sizeof(ipv4_tables) / sizeof(ipv4_tables[0]), AF_INET, SOL_IP); reset_iptables(ipv6_tables, sizeof(ipv6_tables) / sizeof(ipv6_tables[0]), AF_INET6, SOL_IPV6); } static void setup_gadgetfs(); static void setup_binderfs(); static void setup_fusectl(); static void sandbox_common_mount_tmpfs(void) { write_file("/proc/sys/fs/mount-max", "100000"); if (mkdir("./syz-tmp", 0777)) exit(1); if (mount("", "./syz-tmp", "tmpfs", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot", 0777)) exit(1); if (mkdir("./syz-tmp/newroot/dev", 0700)) exit(1); unsigned bind_mount_flags = MS_BIND | MS_REC | MS_PRIVATE; if (mount("/dev", "./syz-tmp/newroot/dev", NULL, bind_mount_flags, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/proc", 0700)) exit(1); if (mount("syz-proc", "./syz-tmp/newroot/proc", "proc", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/selinux", 0700)) exit(1); const char* selinux_path = "./syz-tmp/newroot/selinux"; if (mount("/selinux", selinux_path, NULL, bind_mount_flags, NULL)) { if (errno != ENOENT) exit(1); if (mount("/sys/fs/selinux", selinux_path, NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); } if (mkdir("./syz-tmp/newroot/sys", 0700)) exit(1); if (mount("/sys", "./syz-tmp/newroot/sys", 0, bind_mount_flags, NULL)) exit(1); if (mount("/sys/kernel/debug", "./syz-tmp/newroot/sys/kernel/debug", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/sys/fs/smackfs", "./syz-tmp/newroot/sys/fs/smackfs", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/proc/sys/fs/binfmt_misc", "./syz-tmp/newroot/proc/sys/fs/binfmt_misc", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mkdir("./syz-tmp/newroot/syz-inputs", 0700)) exit(1); if (mount("/syz-inputs", "./syz-tmp/newroot/syz-inputs", NULL, bind_mount_flags | MS_RDONLY, NULL) && errno != ENOENT) exit(1); if (mkdir("./syz-tmp/pivot", 0777)) exit(1); if (syscall(SYS_pivot_root, "./syz-tmp", "./syz-tmp/pivot")) { if (chdir("./syz-tmp")) exit(1); } else { if (chdir("/")) exit(1); if (umount2("./pivot", MNT_DETACH)) exit(1); } if (chroot("./newroot")) exit(1); if (chdir("/")) exit(1); setup_gadgetfs(); setup_binderfs(); setup_fusectl(); } static void setup_gadgetfs() { if (mkdir("/dev/gadgetfs", 0777)) { } if (mount("gadgetfs", "/dev/gadgetfs", "gadgetfs", 0, NULL)) { } } static void setup_fusectl() { if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) { } } static void setup_binderfs() { if (mkdir("/dev/binderfs", 0777)) { } if (mount("binder", "/dev/binderfs", "binder", 0, NULL)) { } } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); if (getppid() == 1) exit(1); struct rlimit rlim; rlim.rlim_cur = rlim.rlim_max = (200 << 20); setrlimit(RLIMIT_AS, &rlim); rlim.rlim_cur = rlim.rlim_max = 32 << 20; setrlimit(RLIMIT_MEMLOCK, &rlim); rlim.rlim_cur = rlim.rlim_max = 136 << 20; setrlimit(RLIMIT_FSIZE, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_STACK, &rlim); rlim.rlim_cur = rlim.rlim_max = 128 << 20; setrlimit(RLIMIT_CORE, &rlim); rlim.rlim_cur = rlim.rlim_max = 256; setrlimit(RLIMIT_NOFILE, &rlim); if (unshare(CLONE_NEWNS)) { } if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL)) { } if (unshare(CLONE_NEWIPC)) { } if (unshare(0x02000000)) { } if (unshare(CLONE_NEWUTS)) { } if (unshare(CLONE_SYSVSEM)) { } typedef struct { const char* name; const char* value; } sysctl_t; static const sysctl_t sysctls[] = { {"/proc/sys/kernel/shmmax", "16777216"}, {"/proc/sys/kernel/shmall", "536870912"}, {"/proc/sys/kernel/shmmni", "1024"}, {"/proc/sys/kernel/msgmax", "8192"}, {"/proc/sys/kernel/msgmni", "1024"}, {"/proc/sys/kernel/msgmnb", "1024"}, {"/proc/sys/kernel/sem", "1024 1048576 500 1024"}, }; unsigned i; for (i = 0; i < sizeof(sysctls) / sizeof(sysctls[0]); i++) write_file(sysctls[i].name, sysctls[i].value); } static int wait_for_loop(int pid) { if (pid < 0) exit(1); int status = 0; while (waitpid(-1, &status, __WALL) != pid) { } return WEXITSTATUS(status); } static void drop_caps(void) { struct __user_cap_header_struct cap_hdr = {}; struct __user_cap_data_struct cap_data[2] = {}; cap_hdr.version = _LINUX_CAPABILITY_VERSION_3; cap_hdr.pid = getpid(); if (syscall(SYS_capget, &cap_hdr, &cap_data)) exit(1); const int drop = (1 << CAP_SYS_PTRACE) | (1 << CAP_SYS_NICE); cap_data[0].effective &= ~drop; cap_data[0].permitted &= ~drop; cap_data[0].inheritable &= ~drop; if (syscall(SYS_capset, &cap_hdr, &cap_data)) exit(1); } static int do_sandbox_none(void) { if (unshare(CLONE_NEWPID)) { } int pid = fork(); if (pid != 0) return wait_for_loop(pid); initialize_vhci(); sandbox_common(); drop_caps(); if (unshare(CLONE_NEWNET)) { } write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535"); sandbox_common_mount_tmpfs(); loop(); exit(1); } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void setup_loop() { checkpoint_net_namespace(); } 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); } reset_net_namespace(); } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void close_fds() { for (int fd = 3; fd < MAX_FDS; fd++) close(fd); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { setup_loop(); int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); close_fds(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x2000480 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // } // } // chdir: int8 = 0xfd (1 bytes) // size: len = 0x62f4 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x62f4) // } // ] // returns fd_dir memcpy((void*)0x200000000080, "jfs\000", 4); memcpy((void*)0x200000000440, "./file0\000", 8); memcpy( (void*)0x2000000006c0, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xdf\xec\x9b\x5f\x42\xd3\xa8" "\x87\xaa\x44\x08\xb9\x6d\x78\x29\xa5\x79\x2d\x21\x50\xa0\xed\x01\x0e\x5c" "\x38\xa0\x5c\x51\x22\xd7\xad\x22\x52\x40\x49\x40\x69\x15\x11\x57\xbe\x70" "\xe0\x8f\x00\x21\x71\x41\x42\x88\x23\x27\xfe\x80\x1e\xb8\x72\xe3\x0f\x20" "\x52\x82\x04\xea\xa9\x83\xd6\x7e\x1e\x67\x3c\x5d\x67\xed\x24\xde\x59\xfb" "\xf9\x7c\x24\x67\xe6\xb7\xcf\xac\xf7\x99\x7c\x77\x76\x67\x3d\x33\xfb\x04" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x3f\xfc\xc1\x8f" "\xcf\x55\x11\x71\xe5\x57\xe9\x86\x13\x11\x9f\x8b\x7e\x44\x2f\x62\x69\x5c" "\xaf\x44\xc4\xd2\xca\x89\xbc\xfc\x20\x22\x5e\x88\xcd\xe6\x78\x3e\x22\x86" "\x0b\x11\x55\x6e\x7c\x36\xe2\xf5\x88\xf8\xf8\x78\xc4\xfd\x07\x77\x56\xc7" "\x37\x9d\xdf\x63\x3f\xbe\xff\x97\x7f\xfe\xe1\x27\xc7\x7e\xf4\x8f\x3f\x0f" "\xcf\xfc\xef\xaf\xb7\xfa\x6f\xec\xb6\xdc\xed\xdb\xbf\xfd\xef\xdf\xee\x3e" "\xfe\xfa\x02\x00\x00\x40\x89\xea\xba\xae\xab\xf4\x31\xff\x64\xfa\x7c\xdf" "\xeb\xba\x53\x00\xc0\x4c\xe4\xf7\xff\x3a\xc9\xb7\xab\xe7\xae\x5e\x9f\xb3" "\xfe\xa8\xd5\x6a\xb5\xfa\x10\xd6\x4d\xf5\x64\x77\x9b\x45\x44\xac\x37\xef" "\x33\xde\x67\x70\x38\x1e\x00\x0e\x99\xf5\xf8\xa4\xeb\x2e\xd0\x21\xf9\x17" "\x6d\x10\x11\xc7\xba\xee\x04\x30\xd7\xaa\xae\x3b\xc0\x81\xb8\xff\xe0\xce" "\x6a\x95\xf2\xad\x9a\xef\x07\x2b\x5b\xed\xf9\x5c\x90\x1d\xf9\xaf\x57\xdb" "\xd7\x77\xec\x36\x9d\xa6\x7d\x8e\xc9\xac\x9e\x5f\x1b\xd1\x8f\xe7\x76\xe9" "\xcf\xd2\x8c\xfa\x30\x4f\x72\xfe\xbd\x76\xfe\x57\xb6\xda\x47\x69\xb9\x83" "\xce\x7f\x56\x76\xcb\x7f\xb4\x75\xe9\x53\x71\x72\xfe\xfd\x76\xfe\x2d\x47" "\x27\xff\xde\xc4\xfc\x4b\x95\xf3\x1f\xec\x2b\xff\xbe\xfc\x01\x00\x00\x00" "\x00\x60\x8e\xe5\xbf\xff\x9f\xe8\xf8\xf8\xef\xc2\x93\xaf\xca\x9e\x3c\xea" "\xf8\xef\xca\x8c\xfa\x00\x00\x00\x00\x00\x00\x00\x00\x4f\xdb\x93\x8e\xff" "\xb7\xad\x32\xfe\x1f\x00\x00\x00\xcc\xab\xf1\x67\xf5\xb1\xdf\x1d\x7f\x78" "\x5b\xf3\x5c\xff\x51\xec\xbc\xfd\x72\x15\xf1\x4c\x6b\x79\xa0\x30\xe9\x62" "\x99\xe5\xae\xfb\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x25\x19\x6c" "\x9d\xc3\x7b\xb9\x8a\x18\x46\xc4\x33\xcb\xcb\x75\x5d\x8f\x7f\x9a\xda\xf5" "\x7e\x3d\xe9\xfd\x0f\xbb\xd2\xd7\x1f\x4a\xd6\xf5\x8b\x3c\x00\x00\x6c\xf9" "\xf8\x78\xeb\x5a\xfe\x2a\x62\x31\x22\x2e\xa7\xef\xfa\x1b\x2e\x2f\x2f\xd7" "\xf5\xe2\xd2\x72\xbd\x5c\x2f\x2d\xe4\xfd\xd9\xd1\xc2\x62\xbd\xd4\xf8\x5c" "\x9b\xa7\xe3\xdb\x16\x46\x7b\xd8\x21\x1e\x8c\xea\xf1\x2f\x5b\x6c\xdc\xaf" "\x69\xda\xe7\xe5\x69\xed\xed\xdf\x37\x7e\xac\x51\xdd\xdf\x43\xc7\x66\xa3" "\xc3\xc0\x01\x20\x22\xb6\xde\x8d\xee\x7b\x47\x3a\x62\xea\xfa\xd9\xe8\x7a" "\x2f\x87\xc3\xc1\xf6\x7f\xf4\xd8\xfe\xd9\x8b\xae\x9f\xa7\x00\x00\x00\xc0" "\xc1\xab\xeb\xba\xae\xd2\xd7\x79\x9f\x4c\xc7\xfc\x7b\x5d\x77\x0a\x00\x98" "\x89\xfc\xfe\xdf\x3e\x2e\xa0\x56\xab\xd5\x6a\xb5\xfa\xe8\xd5\x4d\xf5\x64" "\x77\x9b\x45\x44\xac\x37\xef\x33\xde\x67\x30\x1c\x3f\x00\x1c\x32\xeb\xf1" "\x49\xd7\x5d\xa0\x43\xf2\x2f\xda\x20\x22\x5e\xe8\xba\x13\xc0\x5c\xab\xba" "\xee\x00\x07\xe2\xfe\x83\x3b\xab\x55\xca\xb7\x6a\xbe\x1f\xa4\xf1\xdd\xf3" "\xb9\x20\x3b\xf2\x5f\xaf\x36\xef\x97\xef\x3f\x69\x3a\x4d\xfb\x1c\x93\x59" "\x3d\xbf\x36\xa2\x1f\xcf\xed\xd2\x9f\xe7\x67\xd4\x87\x79\x92\xf3\xef\xb5" "\xf3\xbf\xb2\xd5\x3e\x4a\xcb\x1d\x74\xfe\xb3\xb2\x5b\xfe\xe3\xf5\x3c\xd1" "\x41\x7f\xba\x96\xf3\xef\xb7\xf3\x6f\x39\x3a\xf9\xf7\x26\xe6\x5f\xaa\x9c" "\xff\x60\x5f\xf9\xf7\xe5\x0f\x00\x00\x00\x00\x00\x73\x2c\xff\xfd\xff\xc4" "\x5c\x1d\xff\x1d\x3d\xee\xea\x4c\xf5\xa8\xe3\xbf\x2b\x07\xf6\xa8\x00\x00" "\x00\x00\x00\x00\x00\x70\xb0\xee\x3f\xb8\xb3\x9a\xaf\x7b\xcd\xc7\xff\xbf" "\x30\x61\x39\xd7\x7f\x1e\x4d\x39\xff\x4a\xfe\x45\xca\xf9\xf7\x5a\xf9\x7f" "\xb5\xb5\x5c\xbf\x31\x7f\xef\xed\x87\xf9\xff\xe7\xc1\x9d\xd5\x3f\xde\xfa" "\xf7\xe7\xf3\x74\xaf\xf9\x2f\xe4\x99\x2a\x3d\xb3\xaa\xf4\x8c\xa8\xd2\x23" "\x55\x83\x34\x7d\x92\xb5\xfb\xac\x8d\x61\x7f\x34\x7e\xa4\x61\xd5\xeb\x0f" "\xd2\x39\x3f\xf5\xf0\xdd\xb8\x16\xd7\x63\x2d\xce\xee\x58\xb6\x97\xfe\x3f" "\x1e\xb6\x9f\xdb\xd1\x3e\xee\xe9\x70\xb3\xbd\xee\x6f\xb5\x9f\xdf\xd1\x3e" "\xd8\x6e\xcf\xf7\xbf\xb0\xa3\x7d\x98\xce\x74\xaa\x97\x72\xfb\xe9\x58\x8d" "\x9f\xc7\xf5\x78\x67\xb3\x7d\xdc\xb6\x30\x65\xfd\x17\xa7\xb4\xd7\x53\xda" "\x73\xfe\xfd\xa7\xb6\xfd\xef\xed\xdb\x60\x6d\xff\xf3\x21\xe7\x3f\x68\xfc" "\x8c\xf3\x5f\x4e\xed\x55\x6b\x3a\x76\xef\xa3\xde\x67\xb6\xfb\xe6\x74\xd2" "\xe3\xbc\x75\xed\x8b\xbf\x39\x7b\xf0\xab\x33\xd5\x46\xf4\xb7\xd7\xad\x69" "\xbc\x7e\x2f\x75\xd0\x9f\xcd\xff\x93\x63\xa3\xf8\xe5\xcd\xb5\x1b\xa7\x6f" "\x5f\xbd\x75\xeb\xc6\xb9\x48\x93\x1d\xb7\x9e\x8f\x34\x79\xca\x72\xfe\xc3" "\xf4\xb3\xfd\xfa\xff\xf2\x56\x7b\x7e\xdd\x6f\x6e\xaf\xf7\x3e\x1a\xed\x3b" "\xff\x79\xb1\x11\x83\x5d\xf3\x7f\xb9\x31\x3f\x5e\xdf\x57\x66\xdc\xb7\x2e" "\xe4\xfc\x47\xe9\x27\xe7\xff\x4e\x6a\x9f\xbc\xfd\xef\x23\xff\xde\x9f\x66" "\xb6\x2e\xd3\xe4\x5d\x8d\xdd\xf2\x7f\x75\xd6\x1d\x02\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x80\x29\xea\xba\xde\xbc\x44\xf4\xad\x88\xb8\x98" "\xae\xff\xe9\xea\xda\x4c\x00\x60\xb6\xf2\xfb\x7f\x9d\xe4\xdb\x67\x55\xf7" "\x67\xfc\x78\x6a\xf5\x21\xaf\xab\x39\xeb\xcf\x4c\xeb\x4f\xeb\xf9\xea\x8f" "\x5a\x7d\x18\xeb\xa6\x7a\xb2\x37\x9b\x45\x44\xfc\xbd\x79\x9f\xf1\x3e\xc3" "\xaf\x27\xfd\x32\x00\x60\x9e\x7d\x1a\x11\xff\xea\xba\x13\x74\x46\xfe\x05" "\xcb\xdf\xf7\x37\x9e\x9e\xea\xba\x33\xc0\x4c\xdd\xfc\xe0\xc3\x9f\x5e\xbd" "\x7e\x7d\xed\xc6\xcd\xae\x7b\x02\x00\x00\x00\x00\x00\x00\x00\x3c\xae\x3c" "\xfe\xe7\x4a\x63\xfc\xe7\x53\x75\x5d\xb7\x47\x71\xde\x31\xfe\xeb\xdb\xb1" "\xf2\xa4\xe3\xbf\x0e\xf2\xcc\xf6\x00\xa3\xbb\x0c\x54\xdd\xdf\xff\x3a\x3d" "\xca\x46\x6f\xd4\xef\x35\x86\x1b\x7f\x31\x76\x1b\xff\x7b\xb8\x3d\xf7\xa8" "\xf1\xbf\x07\x53\x1e\x6f\x38\xa5\x7d\x34\xa5\x7d\x61\x4a\xfb\xe2\x94\xf6" "\x89\x17\x7a\x34\xe4\xfc\x5f\x6c\x8c\x77\x7e\x2a\x22\x4e\xb6\x86\x5f\x7f" "\xec\xf1\x5f\xe7\xcc\xa3\xc6\x7f\x6e\x8f\x79\x5f\x82\x9c\xff\x4b\x8d\xe7" "\xf3\x38\xff\xaf\xb4\x96\x6b\xe6\x5f\xff\xfe\x30\xe7\xdf\xdb\x91\xff\x99" "\x5b\xef\xff\xe2\xcc\xcd\x0f\x3e\x7c\xed\xda\xfb\x57\xdf\x5b\x7b\x6f\xed" "\x67\x17\xce\x9d\x3b\x7b\xe1\xe2\xc5\x4b\x97\x2e\x9d\x79\xf7\xda\xf5\xb5" "\xb3\x5b\xff\x76\xd8\xe3\x83\x95\xf3\xcf\x63\x5f\x3b\x0f\xb4\x2c\x39\xff" "\x9c\xb9\xfc\xcb\x92\xf3\xff\x52\xaa\xe5\x5f\x96\x9c\xff\x97\x53\x2d\xff" "\xb2\xe4\xfc\xf3\xfe\x9e\xfc\xcb\x92\xf3\xcf\x9f\x7d\xe4\x5f\x96\x9c\xff" "\x2b\xa9\x96\x7f\x59\x72\xfe\x5f\x4b\xb5\xfc\xcb\x92\xf3\x7f\x35\xd5\xf2" "\x2f\x4b\xce\xff\xeb\xa9\x96\x7f\x59\x72\xfe\xaf\xa5\x5a\xfe\x65\xc9\xf9" "\x9f\x4e\xb5\xfc\xcb\x92\xf3\x3f\x93\xea\x3d\xe6\xbf\x74\xd0\xfd\x62\x36" "\x72\xfe\xf9\x08\x97\xed\xbf\x2c\x39\xff\x7c\x66\x83\xfc\xcb\x92\xf3\x3f" "\x9f\x6a\xf9\x97\x25\xe7\x7f\x21\xd5\xf2\x2f\x4b\xce\xff\xf5\x54\xcb\xbf" "\x2c\x39\xff\x6f\xa4\x5a\xfe\x65\xc9\xf9\x5f\x4c\xb5\xfc\xcb\x92\xf3\xff" "\x66\xaa\xe5\x5f\x96\x9c\xff\xa5\x54\xcb\xbf\x2c\x39\xff\x6f\xa5\x5a\xfe" "\x65\xc9\xf9\x7f\x3b\xd5\xf2\x2f\x4b\xce\xff\x8d\x54\xcb\xbf\x2c\x39\xff" "\xef\xa4\x5a\xfe\x65\xc9\xf9\x7f\x37\xd5\xf2\x2f\x4b\xce\xff\x7b\xa9\x96" "\x7f\x59\x72\xfe\x6f\xa6\x5a\xfe\x65\x79\xf8\xfd\xff\x66\xcc\x98\x31\x93" "\x67\xba\x7e\x65\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xda\x66\x71" "\x3a\x71\xd7\xeb\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xff\xd9\x81" "\x03\x01\x00\x00\x00\x00\x20\xff\xd7\x46\xa8\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xc2\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\xf6\xee\x2e\x46\xae\xb3\xbe\x1f\xf8\x99\x7d" "\xf3\xc6\x09\x89\x81\x90\xbf\x93\xbf\x09\x1b\xc7\x84\x90\x6c\xb2\xeb\x97" "\xf8\x85\xd6\xc5\x84\xd7\x86\xb7\x92\x10\x0a\x7d\xc1\x76\xbd\x6b\xb3\xe0" "\x37\xbc\x76\x09\x34\xaa\x1d\x05\x4a\x24\x8c\x4a\x2b\xda\x86\x8b\xb6\x80" "\x50\x9b\x9b\x0a\xab\xe2\x82\x56\x80\x72\x81\x5a\x55\xaa\x04\xed\x05\xbd" "\x41\x54\xa8\x5c\x44\x55\x40\x01\xa9\x52\x5b\x41\xb6\x9a\x39\xcf\xf3\xec" "\xcc\xec\xec\xcc\xae\x77\x76\x7d\xe6\x9c\xcf\x47\xb2\x7f\xde\x99\x33\xe7" "\x3c\xe7\xcc\x33\x67\xf6\xb7\xeb\xef\x1c\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xa0\xd9\x1d\x6f\x9c\xfd\x74\x2d\xcb\xb2\x5a\xad\x96" "\xdf\xb0\x25\xcb\x6e\xa8\xd7\xeb\x26\xb6\x34\x6e\x79\xdd\xb5\x1d\x1f\x00" "\x00\x00\xb0\x76\xbf\x68\xfc\xfd\xc2\x4d\xe9\x86\x43\x2b\x78\x50\xd3\x32" "\xff\x78\xfb\x77\xbe\xb6\xb0\xb0\xb0\x90\xbd\x7f\xf8\x4f\x46\x3f\xbf\xb0" "\x90\xee\x98\xc8\xb2\xd1\x4d\x59\xd6\xb8\x2f\xba\xf2\xc3\x0f\xd4\x9a\x97" "\x09\x9e\xcc\xc6\x6b\x43\x4d\x5f\x0f\xf5\xd8\xfc\x70\x8f\xfb\x47\x7a\xdc" "\x3f\xda\xe3\xfe\xb1\x1e\xf7\x6f\xea\x71\xff\x78\x8f\xfb\x97\x1c\x80\x25" "\xae\xcb\x6a\x69\x65\x3b\x1a\xff\xdc\x92\x1f\xd2\xec\xe6\x6c\xb4\x71\xdf" "\x8e\x0e\x8f\x7a\xb2\xb6\x69\xa8\x7e\xec\xd2\x63\xb3\x5a\xe3\x31\x0b\xa3" "\xc7\xb3\xb9\xec\x64\x36\x9b\x4d\xb7\x2c\x9f\x2f\x5b\x6b\x2c\xff\x8d\x3b" "\xea\xdb\x7a\x5b\x16\xb7\x35\xd4\xb4\xad\x6d\xf5\x19\xf2\xd3\xc7\x8f\xc5" "\x31\xd4\xc2\x31\xde\xd1\xb2\xad\xc5\x75\x46\x3f\x7e\x43\x36\xf1\xb3\x9f" "\x3e\x7e\xec\xaf\xce\x3f\x7f\x6b\xa7\xda\xf3\x30\xb4\xac\x2f\x1f\xe7\xdd" "\xdb\xeb\xe3\xfc\x64\xb8\x25\x1f\x6b\x2d\xdb\x94\x8e\x49\x1c\xe7\x50\xd3" "\x38\xb7\x75\x78\x4e\x86\x5b\xc6\x59\x6b\x3c\xae\xfe\xef\xf6\x71\xbe\xb0" "\xc2\x71\x0e\x2f\x0e\x73\x43\xb5\x3f\xe7\xe3\xd9\x50\xe3\xdf\xdf\x6d\x1c" "\xa7\x91\x5a\xd6\xe1\x38\x6d\x0b\xb7\xfd\xf7\x9d\x59\x96\x5d\x5a\x1c\x76" "\xfb\x32\x4b\xb6\x95\x0d\x65\x9b\x5b\x6e\x19\x5a\x7c\x7e\xc6\xf3\x19\x59" "\x5f\x47\x7d\x2a\xbd\x2c\x1b\xe9\x3e\x4f\x17\x6a\x2d\xf3\xf4\x8e\x15\xcc" "\xd3\x7a\x9d\xd9\xd1\x3a\x4f\xdb\x5f\x13\xf1\xf9\xbf\x23\x3c\x6e\x64\x99" "\x31\x34\x3f\x4d\x3f\x7e\x62\xac\xe9\x79\xff\xf9\xc2\xd5\xcc\xd3\xa8\xbe" "\xd7\xcb\xbd\x56\xda\xe7\x60\xbf\x5f\x2b\x45\x99\x83\x71\x5e\x7c\xb7\xb1" "\xd3\x4f\x75\x9c\x83\x3b\xc2\xfe\x3f\x7e\xd7\xf2\x73\xb0\xe3\xdc\xe9\x30" "\x07\xd3\x7e\x37\xcd\xc1\xed\xbd\xe6\xe0\xd0\xd8\x70\x63\xcc\xe9\x49\xa8" "\x35\x1e\xb3\x38\x07\x77\xb6\x2c\x3f\xdc\xd8\x52\xad\x51\x9f\xbb\xab\xfb" "\x1c\x9c\x3a\x7f\xea\xec\xd4\xfc\xc7\x3f\x71\xdf\xdc\xa9\xa3\x27\x66\x4f" "\xcc\x9e\xde\xbd\x73\xe7\xf4\xee\xbd\x7b\xf7\xef\xdf\x3f\x75\x7c\xee\xe4" "\xec\x74\xfe\xf7\x55\x1e\xed\xe2\xdb\x9c\x0d\xa5\xd7\xc0\xf6\x70\xec\xe2" "\x6b\xe0\x35\x6d\xcb\x36\x4f\xd5\x85\x2f\x8d\x2d\x39\xff\x5e\xed\xeb\x70" "\xbc\xcb\xeb\x70\x4b\xdb\xb2\xfd\x7e\x1d\x8e\xb4\xef\x5c\x6d\x63\x5e\x90" "\x4b\xe7\x74\xfe\xda\x78\x6f\xfd\xa0\x8f\x5f\x1e\xca\x96\x79\x8d\x35\x9e" "\x9f\x7b\xd6\xfe\x3a\x4c\xfb\xdd\xf4\x3a\x1c\x69\x7a\x1d\x76\x7c\x4f\xe9" "\xf0\x3a\x1c\x59\xc1\xeb\xb0\xbe\xcc\xd9\x7b\x56\xf6\x3d\xcb\x48\xd3\x9f" "\x4e\x63\x58\xfe\xbd\x60\x6d\x73\x70\x4b\xd3\x1c\x6c\xff\x7e\xa4\x7d\x0e" "\xf6\xfb\xfb\x91\xa2\xcc\xc1\xf1\x30\x2f\xbe\x7f\xcf\xf2\xef\x05\xdb\xc2" "\x78\x9f\x9a\x5c\xed\xf7\x23\xc3\x4b\xe6\x60\xda\xdd\x70\xee\xa9\xdf\x92" "\xbe\xdf\x1f\xdf\xdf\x28\x9d\xe6\xe5\x6d\xf5\x3b\xae\x1f\xcb\x2e\xcc\xcf" "\x9e\xbb\xff\xb1\xa3\xe7\xcf\x9f\xdb\x99\x85\xb2\x21\x5e\xde\x34\x57\xda" "\xe7\xeb\xe6\xa6\x7d\xca\x96\xcc\xd7\xa1\x55\xcf\xd7\x43\x73\xb7\x3f\x75" "\x5b\x87\xdb\xb7\x84\x63\x35\x7e\x5f\xfd\xaf\xf1\x65\x9f\xab\xfa\x32\x7b" "\xee\xef\xfe\x5c\x35\xde\xdd\x3a\x1f\xcf\x96\x5b\x77\x65\xa1\xf4\x59\x38" "\x9e\x0b\x9b\x36\xe8\x78\x76\x7a\x37\xaf\x1f\xcf\xb1\x2c\xfb\xc2\xb7\x9f" "\x78\xf8\x9b\x8f\x7f\xe1\x8d\xcb\x1e\xcf\x7a\xbf\xf9\xc9\xa9\xb5\x7f\x2f" "\x9e\xfa\xd2\xa6\xf3\xef\xe8\x32\xe7\xdf\xd8\xf7\xbf\x98\x6f\x2f\xad\xea" "\xc9\xe1\xd1\x91\xfc\xf5\x3b\x9c\x8e\xce\x68\xcb\xf9\xb8\xf5\xa9\x1a\x69" "\x9c\xbb\x6a\x8d\x6d\xbf\x30\xb5\xb2\xf3\xf1\x68\xf8\xb3\xd1\xe7\xe3\x9b" "\xbb\x9c\x8f\xb7\xb6\x2d\xdb\xef\xf3\xf1\x68\xfb\xce\xc5\xf3\x71\xad\xd7" "\x4f\x3b\xd6\xa6\xfd\xf9\x1c\x0f\xf3\xe4\xe4\x74\xf7\xf3\x71\x7d\x99\xad" "\xbb\x56\x3b\x27\x47\xba\x9e\x8f\xef\x0c\xb5\x16\x8e\xff\x6b\x43\xa7\x90" "\xfa\xa2\xa6\xb9\xb3\xdc\xbc\x4d\xdb\x1a\x19\x19\x0d\xfb\x35\x12\xb7\xd0" "\x3a\x4f\x77\xb7\x2c\x3f\x1a\x7a\xb3\xfa\xb6\x9e\xd9\x75\x75\xf3\xf4\xee" "\x3b\xf3\x75\x0d\xa7\xbd\x5b\xb4\x51\xf3\x74\xa2\x6d\xd9\x7e\xcf\xd3\xf4" "\xb3\xaf\xe5\xe6\x69\xad\xd7\x4f\xdf\xae\x4e\xfb\xf3\x39\x1e\xe6\xc5\xcd" "\xbb\xbb\xcf\xd3\xfa\x32\xcf\xee\x59\xfb\xb9\xf3\xba\xf8\xcf\xa6\x73\xe7" "\x58\xaf\x39\x38\x3a\x3c\x56\x1f\xf3\x68\x9a\x84\x8d\xf3\x7d\xb6\x70\x5d" "\x9c\x83\xf7\x67\xc7\xb2\x33\xd9\xc9\x6c\xa6\x71\xef\x58\x63\x3e\xd5\x1a" "\xdb\x9a\x7c\x60\x65\x73\x70\x2c\xfc\xd9\xe8\x73\xe5\xd6\x2e\x73\xf0\xee" "\xb6\x65\xfb\x3d\x07\xd3\xfb\xd8\x72\x73\xaf\x36\xb2\x74\xe7\xfb\xa0\xfd" "\xf9\x1c\x0f\xf3\xe2\xe9\x07\xba\xcf\xc1\xfa\x32\x6f\xda\xd7\xdf\xef\x5d" "\xef\x0e\xb7\xa4\x65\x9a\xbe\x77\x6d\xff\xf9\xda\x72\x3f\xf3\xba\xad\xed" "\x30\xad\xd7\x5c\x19\x09\xe3\xfc\xf6\xbe\xee\x3f\x9b\xad\x2f\x73\x72\xff" "\x6a\xfb\xcc\xee\xc7\xe9\xde\x70\xcb\xf5\x1d\x8e\x53\xfb\xeb\x77\xb9\xd7" "\xd4\x4c\xb6\x31\xc7\x69\x6b\x18\xe7\xf3\xfb\x97\x3f\x4e\xf5\xf1\xd4\x97" "\xf9\xfc\x81\x15\xce\xa7\x43\x59\x96\x5d\xfc\xe8\x83\x8d\x9f\xf7\x86\xdf" "\xaf\xfc\xed\x85\xef\x7d\xad\xe5\xf7\x2e\x9d\x7e\xa7\x73\xf1\xa3\x0f\xfe" "\xe4\x25\xc7\xff\x61\x35\xe3\x07\x60\xf0\xbd\x98\x97\xcd\xf9\x7b\x5d\xd3" "\x6f\xa6\x56\xf2\xfb\x7f\x00\x00\x00\x60\x20\xc4\xbe\x7f\x28\xd4\x44\xff" "\x0f\x00\x00\x00\xa5\x11\xfb\xfe\xf8\xbf\xc2\x13\xfd\x3f\x00\x00\x00\x94" "\x46\xec\xfb\x47\x42\x4d\x2a\xd2\xff\x6f\x7d\xd3\xf3\x73\x2f\x5e\xcc\x52" "\x32\x7f\x21\x88\xf7\xa7\xc3\xf0\x50\xbe\x5c\xcc\xb8\x4e\x87\xaf\x27\x16" "\x16\xd5\x6f\x7f\xf0\x2b\xb3\xff\xf5\xf7\x17\x57\xb6\xed\xa1\x2c\xcb\x7e" "\xfe\xd0\xef\x75\x5c\x7e\xeb\x43\x71\x5c\xb9\x89\x30\xce\x2b\x6f\x6e\xbd" "\x7d\x89\xaf\xdd\xb7\xa2\x6d\x1f\x79\xf4\x62\xda\x6e\x73\x7e\xfd\x8b\x61" "\xfd\x71\x7f\x56\x3a\x0d\x3a\x45\x70\xa7\xb3\x2c\xfb\xc6\x4d\x9f\x6d\x6c" "\x67\xe2\x03\x97\x1b\xf5\xd9\x87\x8e\x34\xea\xc3\x97\x9e\x7a\xb2\xbe\xcc" "\x0b\x07\xf2\xaf\xe3\xe3\x9f\x7b\x79\xbe\xfc\x9f\x87\xf0\xef\xa1\xe3\x47" "\x5b\x1e\xff\x5c\x38\x0e\x3f\x0a\x75\xfa\xed\x9d\x8f\x47\x7c\xdc\x57\x2f" "\xbf\x76\xdb\xbe\xf7\x2d\x6e\x2f\x3e\xae\xb6\xfd\xc6\xc6\x6e\x3f\xfd\xc1" "\x7c\xbd\xf1\x73\x72\x3e\xf7\x64\xbe\x7c\x3c\xce\xcb\x8d\xff\x9b\x9f\x79" "\xe6\xab\xf5\xe5\x1f\x7b\x75\xe7\xf1\x5f\x1c\xea\x3c\xfe\x67\xc2\x7a\xbf" "\x12\xea\xff\xbc\x32\x5f\xbe\xf9\x39\xa8\x7f\x1d\x1f\xf7\xa9\x30\xfe\xb8" "\xbd\xf8\xb8\xfb\xbf\xfc\xad\x8e\xe3\xbf\xf2\xe9\x7c\xf9\xb3\x6f\xc9\x97" "\x3b\x12\x6a\xdc\xfe\xdd\xe1\xeb\x1d\x6f\x79\x7e\xae\xf9\x78\x3d\x56\x3b" "\xda\xb2\x5f\xd9\x5b\xf3\xe5\xe2\xf6\xa7\xbf\xf7\x87\x8d\xfb\xe3\xfa\xe2" "\xfa\xdb\xc7\x3f\x7e\xf8\x72\xcb\xf1\x68\x9f\x1f\xcf\xfe\x6b\xbe\x9e\xa9" "\xb6\xe5\xe3\xed\x71\x3b\xd1\xdf\xb5\x6d\xbf\xbe\x9e\xe6\xf9\x19\xb7\xff" "\xcc\x1f\x1c\x69\x39\xce\xbd\xb6\x7f\xe5\xe1\xe7\x5e\x59\x5f\x6f\xfb\xf6" "\xef\x6d\x5b\xee\xec\x47\xef\x69\x6c\x7f\x71\x7d\xad\x9f\xd8\xf4\x17\x9f" "\xfa\x6c\xc7\xed\xc5\xf1\x1c\xfa\x9b\xb3\x2d\xfb\x73\xe8\x3d\xe1\x75\x1c" "\xb6\xff\xf4\x07\xc3\x7c\x0c\xf7\xff\xef\x95\x7c\x7d\xed\x9f\xae\x70\xe4" "\x3d\xad\xe7\x9f\xb8\xfc\x17\xb7\x5c\x6c\xd9\x9f\xe8\x6d\x3f\xcb\xb7\x7f" "\xe5\xf5\x27\x1a\x75\xd3\xf8\x75\x9b\xaf\xbf\xe1\x25\x37\x5e\x7a\x55\xfd" "\xd8\x65\xd9\x77\x37\xe5\xeb\xeb\xb5\xfd\x13\x7f\x79\xa6\x65\xfc\x5f\xba" "\x25\x3f\x1e\xf1\xfe\x98\xd1\x6f\xdf\xfe\x72\xe2\xf6\xcf\x7d\x6c\xf2\xf4" "\x99\xf9\x0b\x73\x33\xe9\xa8\x3e\x7e\x53\xe3\xb3\x73\xde\x91\x8f\x27\x8e" "\xf7\xa6\x70\x6e\x6d\xff\xfa\xf0\x99\xf3\x1f\x9a\x3d\x37\x31\x3d\x31\x9d" "\x65\x13\xe5\xfd\x08\xbd\xab\xf6\xe5\x50\x7f\x92\x97\x4b\xdd\x97\x5e\x58" "\x72\x06\xbd\xe7\xd1\xf0\x7c\xde\xf6\x67\xdf\xd8\x7c\xd7\xbf\x7c\x26\xde" "\xfe\x6f\xef\xcd\x6f\xbf\xfc\xf6\xfc\x7d\xeb\x35\x61\xb9\xcf\x85\xdb\xb7" "\x84\xe7\x6f\x75\xdb\x5f\xea\xe9\x3b\x6e\x69\xbc\xbe\x6b\xcf\x86\x11\x2e" "\x2c\xfd\xbc\xe0\xb5\xd8\xb6\xe3\x3f\xf7\xaf\x68\xc1\xb0\xff\xed\xdf\x17" "\xc4\xf9\x7e\xf6\x15\x1f\x6a\x1c\x87\xfa\x7d\x8d\xf7\x8d\xf8\xba\x5e\xe3" "\xf8\x7f\x30\x93\xaf\xe7\xeb\xe1\xb8\x2e\x84\x4f\x66\xde\x7e\xcb\xe2\xf6" "\x9a\x97\x8f\x9f\x8d\x70\xf9\x91\xfc\xf5\xbe\xe6\xe3\x17\x4e\x73\xf1\x79" "\xfd\xeb\xf0\x7c\xbf\xf3\x47\xf9\xfa\xe3\xb8\xe2\xfe\xfe\x20\x7c\x1f\xf3" "\xad\xad\xad\xe7\xbb\x38\x3f\xbe\x7e\x71\xa8\x7d\xfd\x8d\x4f\xf1\xb8\x14" "\xce\x27\xd9\xa5\xfc\xfe\xb8\x54\x3c\xde\x97\x5f\xb8\xa5\xe3\xf0\xe2\xe7" "\x90\x64\x97\x6e\x6d\x7c\xfd\xc7\x69\x3d\xb7\xae\x6a\x37\x97\x33\xff\xf1" "\xf9\xa9\x93\x73\xa7\x2f\x3c\x36\x75\x7e\x76\xfe\xfc\xd4\xfc\xc7\x3f\x71" "\xf8\xd4\x99\x0b\xa7\xcf\x1f\x6e\x7c\x96\xe7\xe1\x0f\xf7\x7a\xfc\xe2\xf9" "\x69\x73\xe3\xfc\x34\x33\xbb\x77\x4f\xd6\x38\x5b\x9d\xc9\xcb\x3a\xbb\xd6" "\xe3\x3f\xfb\xe8\xb1\x99\x7d\xd3\x77\xcd\xcc\x1e\x3f\x7a\xe1\xf8\xf9\x47" "\xcf\xce\x9e\x3b\x71\x6c\x7e\xfe\xd8\xec\xcc\xfc\x5d\x47\x8f\x1f\x9f\xfd" "\x58\xaf\xc7\xcf\xcd\x1c\xdc\xb9\xeb\xc0\xee\x7d\xbb\x26\x4f\xcc\xcd\x1c" "\xdc\x7f\xe0\xc0\xee\x03\x93\x73\xa7\xcf\xd4\x87\x91\x0f\xaa\x87\xbd\xd3" "\x1f\x99\x3c\x7d\xee\x70\xe3\x21\xf3\x07\xf7\x1c\xd8\xf9\xc0\x03\x7b\xa6" "\x27\x4f\x9d\x99\x99\x3d\xb8\x6f\x7a\x7a\xf2\x42\xaf\xc7\x37\xde\x9b\x26" "\xeb\x8f\xfe\xdd\xc9\x73\xb3\x27\x8f\x9e\x9f\x3b\x35\x3b\x39\x3f\xf7\x89" "\xd9\x83\x3b\x0f\xec\xdd\xbb\xab\xe7\xa7\x01\x9e\x3a\x7b\x7c\x7e\x62\xea" "\xdc\x85\xd3\x53\x17\xe6\x67\xcf\x4d\xe5\xfb\x32\x71\xbe\x71\x73\xfd\xbd" "\xaf\xd7\xe3\x29\xa7\xf9\x7f\xcf\xbf\x9f\x6d\x57\xcb\x3f\x88\x2f\x7b\xf7" "\xbd\x7b\xd3\xe7\xb3\xd6\x7d\xe5\x89\x65\x57\x95\x2f\xd2\xf6\x01\xa2\xcf" "\x87\xcf\xa2\xf9\xa7\x97\x9e\xdd\xbf\x92\xaf\x63\xdf\x3f\x1a\x6a\x52\x91" "\xfe\x1f\x00\x00\x00\xaa\x20\xf6\xfd\x63\xa1\x26\xfa\x7f\x00\x00\x00\x28" "\x8d\xd8\xf7\x6f\x0a\x35\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe\x7f\x3c\xd4" "\xa4\x22\xfd\x7f\xe9\xf2\xff\x5b\x2f\xae\x68\xfb\xf2\xff\xf2\xff\xcd\xc7" "\x4b\xfe\xbf\x62\xf9\xff\x47\x8a\x96\xff\xcf\xcf\x17\xf2\xff\xfd\xb1\xd6" "\xfc\xbd\xfc\x7f\x20\xff\x2f\xff\x2f\xff\x7f\x8d\xf2\xff\xd7\xaf\x3a\xff" "\xbf\x10\xde\x90\xe4\xff\x29\xa2\xa2\xe5\xff\x63\xdf\x7f\x5d\x96\x55\xb2" "\xff\x07\x00\x00\x80\x2a\x88\x7d\xff\xe6\x50\x13\xfd\x3f\x00\x00\x00\x94" "\x46\xec\xfb\xaf\x0f\x35\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe\xff\x86\x50" "\x93\x8a\xf4\xff\x2b\xcd\xff\x8f\xc8\xff\x77\x25\xff\xdf\x3a\x7e\xf9\xff" "\xce\xf3\x43\xfe\x5f\xfe\x5f\xfe\x7f\xfd\xc9\xff\x77\x27\xff\xdf\x83\xfc" "\xff\x54\x56\xad\xfc\xff\xa5\x7e\x8e\xdf\xf5\xff\xe5\xff\x59\xaa\x68\xf9" "\xff\xd8\xf7\xbf\x24\xd4\xa4\x22\xfd\x3f\x00\x00\x00\x54\x41\xec\xfb\x6f" "\x0c\x35\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe\xff\xa6\x50\x13\xfd\x3f\x00" "\x00\x00\x94\x46\xec\xfb\xb7\x84\x9a\x54\xa4\xff\x77\xfd\x7f\xf9\x7f\xf9" "\x7f\xf9\x7f\xf9\xff\xce\xdb\x97\xff\x1f\x4c\x45\xc9\xff\x67\x57\xb9\x7d" "\xf9\x7f\xf9\xff\x6b\x9d\xff\x77\xfd\x7f\xf9\x7f\xf9\x7f\xfa\xa9\x68\xf9" "\xff\xd8\xf7\xbf\x34\xd4\xa4\x22\xfd\x3f\x00\x00\x00\x54\x41\xec\xfb\x5f" "\x16\x6a\xa2\xff\x07\x00\x00\x80\xe2\x19\xb9\xba\x87\xc5\xbe\xff\xe5\xa1" "\x26\x4b\xfa\xff\xab\xdc\x00\x00\x00\x00\x70\xcd\xc5\xbe\xff\xe6\xac\x2d" "\x08\x5e\x91\xdf\xff\x97\x2f\xff\x7f\xc3\x8a\xb6\x2d\xff\x3f\x48\xf9\xff" "\x4d\xe9\x3e\xf9\x7f\xf9\xff\xac\x90\xf9\xff\xe1\x4c\xfe\xbf\x38\x8a\x92" "\xff\x77\xfd\xff\xab\x1b\xbf\xfc\xbf\xfc\xff\x20\x8f\x5f\xfe\x5f\xfe\x9f" "\xa5\x8a\x96\xff\x6f\xf4\xfd\xd9\x78\xf6\x8a\x50\x93\x8a\xf4\xff\x00\x00" "\x00\x50\x05\xb1\xef\xbf\x25\xd4\x44\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe" "\xff\x17\x6a\xa2\xff\x07\x00\x00\x80\xd2\x88\x7d\xff\xd6\x50\x93\x8a\xf4" "\xff\xe5\xcb\xff\xbb\xfe\x7f\x36\x60\xf9\xff\xd1\xb6\xb1\xbb\xfe\xff\xe2" "\xe3\xe4\xff\x73\xc5\xcf\xff\xbb\xfe\x7f\x91\xc8\xff\x77\x27\xff\xdf\x83" "\xfc\xbf\xfc\xbf\xfc\xbf\xfc\x3f\x7d\x55\xb4\xfc\x7f\xec\xfb\x6f\x0d\x35" "\xa9\x48\xff\x0f\x00\x00\x00\x55\x10\xfb\xfe\xdb\x42\x4d\xf4\xff\x00\x00" "\x00\x50\x1a\xb1\xef\xff\xff\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7" "\x6f\x0b\x35\xa9\x48\xff\x2f\xff\x5f\xf0\xfc\x7f\x4c\x8e\x96\x38\xff\xdf" "\xfb\xfa\xff\xf2\xff\xf2\xff\xf2\xff\xf2\xff\x2b\x27\xff\xdf\x9d\xfc\x7f" "\x0f\xf2\xff\xf2\xff\xf2\xff\xf2\xff\xf4\x55\xd1\xf2\xff\xb1\xef\x7f\x65" "\xa8\x49\x45\xfa\x7f\x00\x00\x00\xa8\x82\xd8\xf7\xdf\x1e\x6a\xa2\xff\x07" "\x00\x00\x80\xd2\x88\x7d\xff\xab\x42\x4d\xf4\xff\x00\x00\x00\x50\x1a\xb1" "\xef\x9f\x08\x35\xa9\x48\xff\x2f\xff\x5f\xf0\xfc\x7f\x9e\x83\x1f\x2b\xf3" "\xf5\xff\xe5\xff\xe5\xff\xe5\xff\xe5\xff\xfb\x49\xfe\xbf\x3b\xf9\xff\x1e" "\xc2\x69\xee\xc7\x59\x96\xc9\xff\xcb\xff\xcb\xff\xcb\xff\xb3\x76\x45\xcb" "\xff\xc7\xbe\xff\x8e\x50\x93\x8a\xf4\xff\x00\x00\x00\x50\x05\xb1\xef\xdf" "\x1e\x6a\xa2\xff\x07\x00\x00\x80\xd2\x88\x7d\xff\x9d\xa1\x26\xfa\x7f\x00" "\x00\x00\x28\x8d\xd8\xf7\xef\x08\x35\xa9\x48\xff\x2f\xff\x3f\x10\xf9\xff" "\x4c\xfe\x5f\xfe\x5f\xfe\xbf\x3c\xf9\xff\x3f\xba\x3e\xff\x7a\x26\xcb\x16" "\x2e\xca\xff\xf7\x9d\xfc\x7f\x77\xf2\xff\x3d\xb8\xfe\xbf\xfc\xbf\xfc\xbf" "\xfc\x3f\x7d\x55\xb4\xfc\x7f\xec\xfb\x5f\x1d\x6a\x52\x91\xfe\x1f\x00\x00" "\x00\xaa\x20\xf6\xfd\x77\x85\x9a\xe8\xff\x01\x00\x00\xa0\x34\x62\xdf\xff" "\x9a\x50\x13\xfd\x3f\x00\x00\x00\x94\x46\xec\xfb\xef\x0e\x35\xa9\x48\xff" "\x2f\xff\x2f\xff\x5f\xb0\xfc\xff\x50\xf3\xe3\xe4\xff\xe5\xff\xb3\x12\xe6" "\xff\x5d\xff\x7f\x7d\xc9\xff\x77\x27\xff\xdf\x83\xfc\xbf\xfc\xbf\xfc\xbf" "\xfc\x3f\x7d\x55\xb4\xfc\x7f\xec\xfb\x5f\x1b\x6a\x52\x91\xfe\x1f\x00\x00" "\x00\xaa\x20\xf6\xfd\xf7\x84\x9a\xe8\xff\x01\x00\x00\xa0\x34\x62\xdf\x7f" "\x6f\xa8\x89\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd\x93\xa1\x26\x15\xe9\xff" "\xe5\xff\xe5\xff\x0b\x96\xff\x77\xfd\x7f\xf9\x7f\xf9\x7f\xf9\xff\x35\x91" "\xff\xef\x4e\xfe\xbf\x07\xf9\x7f\xf9\x7f\xf9\x7f\xf9\x7f\xfa\xaa\x68\xf9" "\xff\xd8\xf7\xdf\x17\x6a\x52\x91\xfe\x1f\x00\x00\x00\xaa\x20\xf6\xfd\xf7" "\x87\x9a\xe8\xff\x01\x00\x00\xa0\x34\x62\xdf\x3f\x15\x6a\xa2\xff\x07\x00" "\x00\x80\xd2\x88\x7d\xff\x74\xa8\x49\x45\xfa\x7f\xf9\x7f\xf9\x7f\xf9\x7f" "\xf9\xff\x55\xe5\xff\x5f\xb5\xb8\x5e\xf9\xff\x9c\xfc\x7f\xb1\xc8\xff\x77" "\x27\xff\xdf\x83\xfc\xbf\xfc\xff\x35\xcf\xff\x8f\xca\xff\x53\x2a\x45\xcb" "\xff\xc7\xbe\x7f\x67\xa8\x49\x6a\xfc\xc6\xae\x62\x2f\x01\x00\x00\x80\x22" "\x89\x7d\xff\xae\x50\x93\x8a\xfc\xfe\x1f\x00\x00\x00\xaa\x20\xf6\xfd\xbb" "\x43\x4d\xf4\xff\x00\x00\x00\x50\x1a\xb1\xef\xdf\x13\x6a\x52\x91\xfe\x5f" "\xfe\x5f\xfe\x5f\xfe\x5f\xfe\xdf\xf5\xff\x3b\x6f\x5f\xfe\x7f\x30\xc9\xff" "\x77\xd7\xff\xfc\x7f\xdc\x45\xf9\x7f\xf9\x7f\xf9\x7f\xd7\xff\x97\xff\x67" "\xa9\xa2\xe5\xff\x63\xdf\xff\x40\xa8\x49\x45\xfa\x7f\x00\x00\x00\xa8\x82" "\xd8\xf7\xef\x0d\x35\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe\x7f\x5f\xa8\x89" "\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd\xfb\x43\x4d\x2a\xd2\xff\xcb\xff\xcb" "\xff\xcb\xff\xcb\xff\xcb\xff\x77\xde\xbe\xfc\xff\x60\x92\xff\xef\xce\xf5" "\xff\x7b\x28\x5e\xfe\xff\xf5\xcd\x0f\xdf\xc8\xfc\x7f\x7d\x5b\xf2\xff\xf2" "\xff\xf2\xff\xac\xde\x23\xbf\xdf\xfc\x55\xd1\xf2\xff\xb1\xef\x3f\x10\x6a" "\x52\x91\xfe\x1f\x00\x00\x00\xaa\x20\xf6\xfd\xaf\x0b\x35\xd1\xff\x03\x00" "\x00\x40\x69\xc4\xbe\xff\x97\x42\x4d\xba\xf7\xff\x9b\xd6\x77\x54\x00\x00" "\x00\x40\x3f\xc5\xbe\xff\x97\x43\x4d\x2a\xf2\xfb\x7f\xf9\x7f\xf9\x7f\xf9" "\x7f\xf9\x7f\xf9\xff\xce\xdb\x97\xff\x1f\x4c\xf2\xff\xdd\xc9\xff\xf7\x50" "\xbc\xfc\x7f\x0b\xd7\xff\x2f\xf6\xf8\xe5\xff\xe5\xff\x59\xaa\x68\xf9\xff" "\xd8\xf7\x1f\x0c\x35\xa9\x48\xff\x0f\x00\x00\x00\x03\xae\xfd\x57\x48\x1d" "\xc5\xbe\xff\x57\x42\x4d\xf4\xff\x00\x00\x00\x50\x1a\xb1\xef\x7f\x7d\xa8" "\x89\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd\x87\x42\x0d\x3a\xc5\xb9\x4b\x49" "\xfe\x5f\xfe\x7f\x30\xf3\xff\xe3\xf2\xff\xf2\xff\xa5\xcb\xff\x8f\xc5\xf5" "\xca\xff\xaf\x89\xfc\x7f\x77\xf2\xff\x3d\xac\x47\xfe\x7f\xbc\x65\xfd\xf2" "\xff\xeb\xe8\x5a\x8f\x5f\xfe\x5f\xfe\x9f\xa5\x8a\x96\xff\x8f\x7d\xff\x1b" "\x42\x4d\xfc\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd\x0f\x86\x9a\xe8\xff\x01" "\x00\x00\xa0\x34\x62\xdf\xff\xc6\x50\x13\xfd\x3f\x00\x00\x00\x94\x46\xec" "\xfb\xdf\x14\x6a\x52\x91\xfe\x5f\xfe\x5f\xfe\x7f\x30\xf3\xff\xae\xff\x9f" "\xc9\xff\x97\x2e\xff\xef\xfa\xff\xfd\x21\xff\xdf\x9d\xfc\x7f\x0f\xae\xff" "\x2f\xff\xbf\x7e\xf9\xff\x9e\xef\x14\xf2\xff\x94\x51\xd1\xf2\xff\xb1\xef" "\x7f\x73\xa8\x49\x45\xfa\x7f\x00\x00\x00\xa8\x82\xd8\xf7\xbf\x25\xd4\x44" "\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe\xb7\x86\x9a\xe8\xff\x01\x00\x00\xa0" "\x34\x62\xdf\xff\xb6\x50\x93\x8a\xf4\xff\xf2\xff\xf2\xff\xd7\x32\xff\x9f" "\xbb\x24\xff\x2f\xff\xdf\xb0\x2e\xf9\xff\x4b\xf5\x03\x2d\xff\x5f\x25\xf2" "\xff\xdd\xc9\xff\xf7\x20\xff\x2f\xff\xef\xfa\xff\xf2\xff\xf4\x55\xd1\xf2" "\xff\xb1\xef\xff\xd5\x50\x93\x8a\xf4\xff\x00\x00\x00\x50\x05\xb1\xef\x7f" "\x28\xd4\x44\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe\xb7\x87\x9a\xe8\xff\x01" "\x00\x00\xa0\x34\x62\xdf\xff\x8e\x50\x93\x8a\xf4\xff\xf2\xff\xf2\xff\xae" "\xff\x2f\xff\x5f\xea\xfc\xbf\xeb\xff\x57\x8e\xfc\x7f\x77\x03\x96\xff\xff" "\xc5\x8d\xe1\x76\xf9\xff\x9c\xfc\x7f\xb1\xc7\xbf\xda\xfc\xff\x48\xdb\xd7" "\xeb\x92\xff\xff\xe1\x72\xf9\xff\x85\x4d\xed\x8f\x97\xff\x67\x3d\x14\x2d" "\xff\x1f\xfb\xfe\x77\x86\x9a\x54\xa4\xff\x07\x00\x00\x80\x2a\x88\x7d\xff" "\xbb\x42\x4d\xf4\xff\x00\x00\x00\x50\x1a\xb1\xef\x7f\x77\xa8\x49\x53\xff" "\xdf\xd7\xff\x78\x07\x00\x00\x00\x6c\xb8\xd8\xf7\xff\x5a\xa8\x49\x45\x7e" "\xff\x2f\xff\x5f\x1f\xc7\x62\x7a\x59\xfe\x5f\xfe\xbf\x71\x83\xfc\xbf\xfc" "\xbf\xfc\xff\xc0\x92\xff\xef\x6e\xc0\xf2\xff\xae\xff\xdf\x46\xfe\xbf\xd8" "\xe3\x77\xfd\x7f\xf9\x7f\x96\x2a\x5a\xfe\x3f\xf6\xfd\xef\x09\x35\xa9\x48" "\xff\x0f\x00\x00\x00\x55\x10\xfb\xfe\x87\x43\x4d\xf4\xff\x00\x00\x00\x50" "\x1a\xb1\xef\x7f\x24\xd4\x44\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe\xf7\x86" "\x9a\x54\xa4\xff\x97\xff\x77\xfd\x7f\xf9\x7f\xf9\x7f\xf9\xff\xce\xdb\x97" "\xff\x1f\x4c\xf2\xff\xdd\xc9\xff\xf7\x20\xff\x2f\xff\x5f\xb4\xfc\xff\x7f" "\xc8\xff\x33\xd8\x8a\x96\xff\x8f\x7d\xff\xa3\xa1\x26\x15\xe9\xff\x01\x00" "\x00\xa0\x0a\x62\xdf\xff\xbe\x50\x13\xfd\x3f\x00\x00\x00\x94\x46\xec\xfb" "\x7f\x3d\xd4\x44\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe\xf7\x87\x9a\x54\xa4" "\xff\x97\xff\x1f\x94\xfc\xff\xc4\x80\xe6\xff\x9f\x90\xff\x5f\xc7\xfc\xff" "\xed\x37\xe6\xcb\xc9\xff\xcb\xff\xb3\x48\xfe\xbf\x3b\xf9\xff\x1e\xe4\xff" "\xe5\xff\x8b\x96\xff\x77\xfd\x7f\x06\x5c\xd1\xf2\xff\xb1\xef\xff\x40\xa8" "\xc9\xca\xfb\xff\xf1\x15\x2f\x09\x00\x00\x00\xac\xa3\x91\x65\xef\x89\x7d" "\xff\x6f\x84\x9a\x54\xe4\xf7\xff\x00\x00\x00\x50\x05\xb1\xef\xff\xcd\x50" "\x13\xfd\x3f\x00\x00\x00\x94\x46\xec\xfb\x7f\x2b\xd4\xa4\x22\xfd\xbf\xfc" "\xff\xa0\xe4\xff\x5d\xff\x3f\x93\xff\x77\xfd\xff\xb6\xfd\x91\xff\x97\xff" "\xef\x64\xe3\xf2\xff\xf1\xcc\x23\xff\x2f\xff\x5f\xac\xfc\xff\x96\x55\xed" "\x70\xab\x6b\x9d\x9f\x5f\xab\x6b\x3d\xfe\xea\xe6\xff\xf3\x77\x46\xf9\x7f" "\x3a\x29\x5a\xfe\x3f\xf6\xfd\xbf\x1d\x6a\x52\x91\xfe\x1f\x00\x00\x00\xaa" "\x20\xf6\xfd\x1f\x0c\x35\xd1\xff\x03\x00\x00\xc0\x40\xe8\xf4\x7f\xb2\xdb" "\xc5\xbe\xff\x70\xa8\x89\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd\x47\x42\x4d" "\x2a\xd2\xff\xcb\xff\xcb\xff\xaf\x2e\xff\x1f\x8f\x88\xfc\xff\xba\xe7\xff" "\xff\x74\xfb\x3f\x7f\xff\x3b\xef\x3a\xb2\x53\xfe\x5f\xfe\x5f\xfe\x7f\x55" "\x36\xf4\xfa\xff\xf5\x17\xbf\xeb\xff\xcb\xff\x17\x2c\xff\xbf\x16\xd7\x3a" "\x3f\xbf\x51\xe3\xaf\x2d\x73\x69\x30\xf9\x7f\xd7\xff\xa7\xff\x8a\x96\xff" "\x8f\x7d\xff\xd1\x50\x93\x8a\xf4\xff\x00\x00\x00\x50\x05\xb1\xef\xff\x9d" "\x50\x13\xfd\x3f\x00\x00\x00\x94\x46\xec\xfb\x8f\x85\x9a\xe8\xff\x01\x00" "\x00\xa0\x34\x62\xdf\x3f\x13\x6a\x52\x91\xfe\x5f\xfe\x5f\xfe\xdf\xf5\xff" "\x0b\x9a\xff\x1f\xe0\xeb\xff\xc7\xe3\x21\xff\xdf\xaa\x6f\xf9\xff\x78\xd2" "\x95\xff\xef\x68\x43\xf3\xff\xef\x5b\xcc\x89\xcb\xff\xaf\x36\xff\x3f\xd6" "\xf1\x56\xf9\x7f\xf9\xff\x41\x1e\xbf\xfc\xbf\xfc\x3f\x4b\x15\x2d\xff\x1f" "\xfb\xfe\xd9\x50\x93\x8a\xf4\xff\x00\x00\x00\x50\x05\xa1\xef\x1f\x3a\x9e" "\xd7\xc5\x3b\xf4\xff\x00\x00\x00\x50\x1a\xb1\xef\x3f\x11\x6a\xa2\xff\x07" "\x00\x00\x80\xd2\x88\x7d\xff\x87\x42\x4d\x2a\xd2\xff\xcb\xff\xcb\xff\xcb" "\xff\xcb\xff\xbb\xfe\x7f\xe7\xed\x77\xcb\xff\xd7\x46\x56\x94\xff\x6f\xd9" "\x15\xd7\xff\xdf\x18\xf2\xff\xdd\x15\x27\xff\xdf\x99\xfc\xbf\xfc\xff\x20" "\x8f\x5f\xfe\x5f\xfe\x9f\xa5\x8a\x96\xff\x8f\x7d\xff\x5c\xa8\x49\x45\xfa" "\x7f\x00\x00\x00\xa8\x82\xd8\xf7\x7f\x38\xd4\x44\xff\x0f\x00\x00\x00\xa5" "\x11\xfb\xfe\x8f\x84\x9a\xe8\xff\xe1\xff\xd8\xbb\x93\x2f\x4b\xeb\xbb\x8e" "\xe3\xb7\xa0\x9b\xae\x3a\xb8\x70\xe7\xc2\x8d\xe7\xb8\xf4\x4f\x60\x21\x6b" "\xdd\xeb\xc2\x85\x2e\xf4\x1c\x8f\x47\x41\x05\xc5\x99\xc6\x79\x44\x51\x71" "\x56\x14\xe7\x00\x19\x20\x10\x42\x12\x32\x4f\x90\x89\x84\xcc\x90\x84\x24" "\x64\x1e\xc9\x44\x48\x72\x3a\x87\xaa\xef\xf7\xdb\x35\x3c\xf7\xde\xaa\xe2" "\xde\xbe\xcf\xf3\xfb\xbd\x5e\x0b\xbe\x56\x49\xf5\xbd\xe9\xd3\x01\x3e\x54" "\xbf\xf3\x00\x00\x00\x34\x23\x77\xff\xcf\xc7\x2d\x9d\xec\x7f\xfd\xbf\xfe" "\x5f\xff\xaf\xff\xd7\xff\x0f\xbf\xfe\x68\x9f\xff\xaf\xff\x5f\x48\xff\xbf" "\x98\xfe\x7f\x09\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xa5\xc6\xd6\xff\xe7\xee" "\xff\x85\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\x7f\x4d\xdc\x62\xff" "\x03\x00\x00\x40\x33\x72\xf7\x5f\x1b\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc" "\xfd\xbf\x18\xb7\x74\xb2\xff\xf5\xff\xfa\xff\x66\xfb\xff\x1f\xd6\xff\xcf" "\x7b\x7d\xfd\xbf\xfe\xbf\x65\xfa\xff\xc5\xf4\xff\x4b\xe8\xff\xf5\xff\xfa" "\x7f\xfd\x3f\x2b\x35\xb6\xfe\x3f\x77\xff\x2f\xc5\x2d\x9d\xec\x7f\x00\x00" "\x00\xe8\x41\xee\xfe\x5f\x8e\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xeb" "\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xfa\xb8\xa5\x93\xfd\x7f\xa8" "\xff\xdf\x9a\xf5\xd9\xff\x67\xc6\xab\xff\x6f\xa9\xff\xf7\xfc\xff\xb9\xaf" "\xaf\xff\x7f\x0e\xfd\xff\xe5\xfa\xff\xb1\xbb\xb4\xfd\xff\x4d\xcf\xfe\x95" "\x4f\xff\xaf\xff\xd7\xff\x07\xfd\xff\xb1\xfa\xff\x73\xf3\xbe\x5e\xff\x4f" "\x8b\xc6\xd6\xff\xe7\xee\xff\x95\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8" "\xdd\xff\xab\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\x7f\x43\xdc\x62\xff" "\x03\x00\x00\x40\x33\x72\xf7\xff\x5a\xdc\xd2\xc9\xfe\x5f\xdd\xf3\xff\x77" "\x76\x3f\x3f\xd1\xfe\xbf\xe8\xff\xf5\xff\xbb\x9f\xd0\xff\xeb\xff\xe7\xf5" "\xff\x67\x2e\x7e\xac\xff\x1f\x27\xcf\xff\x5f\xac\xa7\xfe\xff\xba\x47\xaf" "\xbc\xe6\xa9\xfb\xbe\xff\xfe\x93\xbc\xbe\xfe\x5f\xff\xef\xf9\xff\xfa\x7f" "\x56\x6b\x6c\xfd\x7f\xee\xfe\x5f\x8f\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83" "\xdc\xfd\xbf\x11\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xbf\x19\xb7\xd8" "\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xbf\x15\xb7\x74\xb2\xff\x57\xd7\xff\x4f" "\xfa\xf9\xff\x45\xff\xaf\xff\xdf\xfd\x84\xfe\x5f\xff\x3f\xaf\xff\xff\x31" "\xcf\xff\x1f\x3b\xfd\xff\x62\x3d\xf5\xff\xa7\x79\x7d\xfd\xbf\xfe\x5f\xff" "\xaf\xff\x67\xb5\x36\xdd\xff\xe7\x0f\x9c\x1f\xe7\xee\xff\xed\xb8\xa5\x93" "\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x3b\x71\x8b\xfd\x0f\x00\x00\x00\xcd" "\xc8\xdd\x7f\x63\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x9f\x8f\x5b\x3a" "\xd9\xff\xfa\xff\xf5\xf7\xff\xdf\xd1\xff\xeb\xff\xe3\xea\xff\xf5\xff\xfa" "\xff\xf5\xd3\xff\x2f\xa6\xff\x5f\x42\xff\xaf\xff\xd7\xff\xeb\xff\x59\xa9" "\x4d\xf7\xff\x87\x3f\xce\xdd\x7f\x53\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e" "\xe4\xee\xff\xdd\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\xbd\xb8\xc5" "\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\xfd\xb8\xa5\x93\xfd\xaf\xff\xf7\xfc" "\x7f\xfd\xbf\xfe\x5f\xff\x3f\xfc\xfa\xfa\xff\x69\xd2\xff\x2f\xa6\xff\x5f" "\x42\xff\x7f\xac\x7e\xfe\xec\x9c\xaf\xff\xc9\x6b\xaf\x3f\xab\xff\x9f\x60" "\xff\x1f\xff\x20\xa5\xff\x67\x1d\x4e\xd8\xff\x3f\xb3\xe0\x2f\xdb\xa7\xed" "\xff\xcf\xed\xff\x38\x77\xff\x1f\xc4\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41" "\xee\xfe\x3f\x8c\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x3f\x8a\x5b\xec" "\x7f\x00\x00\x00\x68\x46\xee\xfe\x3f\x8e\x5b\x3a\xd9\xff\xfa\x7f\xfd\xbf" "\xfe\x5f\xff\x7f\xea\xfe\xff\xe8\x2f\xbd\x5d\xfa\xff\x61\xfa\xff\x4b\x43" "\xff\xbf\xd8\x68\xfa\xff\xad\x33\x83\x9f\xd6\xff\x4f\xa3\xff\x9f\xc7\xf3" "\xff\x27\xda\xff\x07\xfd\x3f\xeb\x30\xb6\xe7\xff\xe7\xee\xff\x93\xb8\xa5" "\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xa7\x71\xcb\x82\xfd\x7f\xe2\x7f" "\x99\x0f\x00\x00\x00\x6c\x54\xee\xfe\x3f\x8b\x5b\x7c\xff\x1f\x00\x00\x00" "\x26\x2f\xab\xb3\xdc\xfd\x7f\x1e\xb7\x74\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf" "\xfe\xdf\xf3\xff\x87\x5f\x7f\x51\xff\x7f\xff\xbe\xf7\xa7\xff\x1f\x17\xfd" "\xff\x62\xa3\xe9\xff\xe7\xd0\xff\xeb\xff\xa7\xfc\xfe\xf5\xff\xfa\x7f\x8e" "\x1a\x5b\xff\x9f\xbb\xff\x2f\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77" "\xff\xcd\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x97\x71\x8b\xfd\x0f" "\x00\x00\x00\xcd\xc8\xdd\xff\x57\x71\x4b\x27\xfb\x7f\xb8\xff\xbf\xf8\xff" "\xd7\xff\x1f\x8f\xfe\xff\xe0\xfb\xd7\xff\x0f\xff\xfa\x58\x55\xff\x9f\x3f" "\xa2\xfe\x7f\x61\xff\x7f\xb5\xe7\xff\xf7\x49\xff\xbf\xd8\xa5\xef\xff\xcf" "\xe9\xff\x0f\xfe\xf8\xfa\xff\x35\xda\xf4\xfb\x6f\xbc\xff\xdf\x59\xf6\xf5" "\xfa\x7f\x86\x8c\xad\xff\xcf\xdd\x7f\x4b\xdc\xd2\xc9\xfe\x07\x00\x00\x80" "\x1e\xe4\xee\xff\xeb\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x9b\xb8" "\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\xdb\xb8\xa5\x93\xfd\xbf\xe1\xe7" "\xff\xdf\x74\xc5\xbc\xf7\xa5\xff\xdf\xa5\xff\xd7\xff\x7b\xfe\xff\x38\x9f" "\xff\x3f\xbb\xe4\xfd\xff\x19\xfd\xff\x31\xe9\xff\x17\xf3\xfc\xff\x25\xf4" "\xff\xfa\x7f\xfd\xbf\xe7\xff\xb3\x52\x63\xeb\xff\x73\xf7\xdf\x1a\xb7\x74" "\xb2\xff\x01\x00\x00\xa0\x07\xb7\x3e\x3d\xdb\xdd\xfd\x7f\x37\x9b\xd9\xff" "\x00\x00\x00\x30\x45\xfb\x7f\xef\xc0\xe1\xdf\x50\x1a\x72\xf7\xff\x7d\xdc" "\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x43\xdc\xd2\xc9\xfe\xdf\x70\xff" "\xbf\xae\xe7\xff\x9f\x5d\xf6\xda\xfa\x7f\xfd\xff\xfe\x9f\x2f\xfd\xbf\xfe" "\x7f\xe8\xf5\xc7\xd5\xff\x7b\xfe\xff\x71\xe9\xff\x17\xd3\xff\x2f\xa1\xff" "\x5f\x47\x3f\x7f\xa6\xb1\xfe\xff\xb6\x79\x5f\x3f\x86\xfe\xff\x46\xfd\x3f" "\x23\x73\xa0\xff\x7f\xf0\xe2\xe7\x37\xd5\xff\xe7\xee\xff\xc7\xb8\xa5\x93" "\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x4f\x71\x8b\xfd\x0f\x00\x00\x00\xcd" "\xc8\xdd\xff\xcf\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x2f\x71\x4b" "\x27\xfb\x7f\xed\xfd\xff\xce\xfc\xd7\x5e\x63\xff\xbf\x94\xfe\x5f\xff\xbf" "\xff\xe7\x4b\xff\xaf\xff\x1f\x7a\x7d\xfd\xff\x34\xe9\xff\x17\xd3\xff\x2f" "\xa1\xff\xf7\xfc\x7f\xcf\xff\xd7\xff\xb3\x52\x07\xfa\xff\x7d\x36\xd5\xff" "\xe7\xee\xff\xd7\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x6f\x71" "\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\x7f\x5b\xdc\x62\xff\x03\x00\x00\x40" "\x33\x72\xf7\xff\x7b\xdc\xd2\xc9\xfe\x6f\xf4\xf9\xff\x4b\xe9\xff\xf5\xff" "\xfb\x7f\xbe\xf4\xff\xfa\xff\xa1\xd7\xd7\xff\x4f\x93\xfe\x7f\x31\xfd\xff" "\x12\xfa\x7f\xfd\xbf\xfe\x7f\x79\xff\x7f\xf8\x6f\xd4\x41\xff\xcf\x90\xb1" "\xf5\xff\xb9\xfb\xff\x23\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\xdf" "\x1e\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xff\x19\xb7\xd8\xff\x00\x00" "\x00\xd0\x8c\xdc\xfd\xff\x15\xb7\x74\xb2\xff\xf5\xff\xeb\xed\xff\xf3\xf3" "\xfa\x7f\xfd\xff\xec\x24\xfd\x7f\x7c\x81\xfe\x7f\x8f\xfe\x5f\xff\x7f\x12" "\x53\xeb\xff\x0f\xff\xf7\xe7\xd4\xfd\xfa\xd6\xd0\xdf\x89\x8e\x9a\xd3\xff" "\x3f\xfc\xb3\xe7\x7f\xf4\xe0\x67\xf4\xff\xfa\xff\x66\xfb\xff\x9d\xb5\xbd" "\xff\x6e\xfa\xff\x39\xf4\xff\x0c\x19\x45\xff\x7f\xe1\xe2\x3f\x5d\xe6\xee" "\xff\xef\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x3f\x71\x8b\xfd" "\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xbf\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8" "\xdd\xff\x7f\x71\xcb\x09\xf7\xff\xf7\xae\xf4\x5d\x5d\x3a\xfa\x7f\xcf\xff" "\xd7\xff\x8f\xb0\xff\x0f\xfa\xff\x3d\xfa\x7f\xfd\xff\x49\x4c\xad\xff\x3f" "\xcc\xf3\xff\xf5\xff\xfa\xff\xe9\xbe\x7f\xfd\xbf\xfe\x9f\xa3\x46\xd1\xff" "\xef\xfb\x38\x77\xff\xff\xc7\x2d\xbe\xff\x0f\x00\x00\x00\xcd\xc8\xdd\xff" "\xbc\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xbf\x23\x6e\xb1\xff\x01\x00" "\x00\xa0\x19\xb9\xfb\xef\x8c\x5b\x3a\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\xdf\x72\xff\xbf\xb3\x81\xfe\x7f\x7b\x36\x4c\xff\x7f\x69\xe8\xff\x17\xd3" "\xff\x2f\xa1\xff\xd7\xff\xeb\xff\xf5\xff\xac\xd4\xd8\xfa\xff\xdc\xfd\x77" "\xc5\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\xe7\xc7\x2d\xf6\x3f\x00" "\x00\x00\x34\x23\x77\xff\x0b\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x24\xd3\xb1" "\x41\xb9\xfb\x5f\x18\xb7\x74\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xbf\xe5" "\xfe\xdf\xf3\xff\xfb\x33\xd1\xfe\xbf\xfe\x32\x38\xd5\xfe\xff\xf2\x29\xf5" "\xff\x77\x2f\x78\x03\x43\xfd\xff\x85\x73\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf" "\x29\x8d\xad\xff\xcf\xdd\xff\xa2\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8" "\xdd\x7f\x77\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xdf\x13\xb7\xd8\xff" "\x00\x00\x00\xd0\x8c\xdc\xfd\x2f\x8e\x5b\x3a\xd9\xff\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\xaf\xff\x1f\x7e\x7d\xfd\xff\x34\x4d\xb4\xff\x2f\x53\xed\xff\x3d" "\xff\x5f\xff\x3f\xd3\xff\xeb\xff\xf5\xff\x0c\x18\x5b\xff\x9f\xbb\xff\xde" "\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\x7f\x5f\xdc\x62\xff\x03\x00" "\x00\x40\x33\x72\xf7\xbf\x24\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xef" "\x8f\x5b\x3a\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x1f\x7e\x7d\xfd" "\xff\x34\xad\xaf\xff\x9f\x6d\xae\xff\x7f\xf2\xb2\x93\xfe\x30\x73\xe9\xff" "\x97\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x56\x6a\x6c\xfd\x7f\xee\xfe\x97\xc6" "\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x07\xe2\x16\xfb\x1f\x00\x00" "\x00\x9a\x91\xbb\xff\x65\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xf2" "\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\x4f\xb3\xff\xbf\x65\x7b\xe8\xfd\xeb\xff" "\xf5\xff\x33\xfd\x7f\xf7\x3c\xff\x7f\x31\xfd\xff\x12\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\xcf\x4a\x8d\xad\xff\xcf\xdd\xff\x8a\xb8\xa5\x93\xfd\x0f\x00\x00" "\x00\x3d\xc8\xdd\xff\x60\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xbf\x32" "\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x5f\x15\xb7\x74\xb2\xff\xf5\xff" "\xfa\xff\x83\xfd\xff\x6c\x36\x8d\xfe\xdf\xf3\xff\x67\xfa\xff\x16\xfa\xff" "\xed\x99\xfe\x7f\xe5\xf4\xff\x8b\x1d\xaf\xff\xbf\x5a\xff\x3f\xf2\xfe\xff" "\x8e\x9d\xbd\x8f\xf5\xff\xc7\x7c\xff\x97\xcd\x1a\xea\xff\x77\xe6\x7e\xbd" "\xfe\x9f\x31\x1a\x5b\xff\x9f\xbb\xff\xd5\x71\x4b\x27\xfb\x1f\x00\x00\x00" "\x7a\x90\xbb\xff\x35\x71\x8b\xfd\x0f\x00\x00\x00\x0d\xd8\xfb\xbd\x33\xb9" "\xfb\x5f\x1b\xb7\xd8\xff\x00\x00\x00\x30\x66\x67\x4e\xf2\x27\xe7\xee\x7f" "\x5d\xdc\xd2\xc9\xfe\x9f\x7e\xff\x7f\xee\xd0\x17\xea\xff\x67\xb3\xd9\x63" "\x37\x34\xff\xfc\x7f\xfd\xff\x4c\xff\xdf\x42\xff\x5f\x3f\xab\xfa\xff\xd5" "\xd1\xff\x2f\xe6\xf9\xff\x4b\x4c\xa4\xff\xf7\xfc\xff\x71\xbe\x7f\xcf\xff" "\xd7\xff\x73\xd4\xd8\xfa\xff\xdc\xfd\xaf\x8f\x5b\x3a\xd9\xff\x00\x00\x00" "\xd0\x83\xdc\xfd\x6f\x88\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x37\xc6" "\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x9b\xe2\x96\x4e\xf6\xff\xf4\xfb" "\xff\xc3\x5f\xa8\xff\x9f\x3d\xa7\xe7\xff\xeb\xff\x77\x3f\xa1\xff\xd7\xff" "\xeb\xff\x27\x4b\xff\xbf\x98\xfe\x7f\x09\xfd\xff\xd2\x7e\x7e\x6b\xce\x3f" "\xf7\xcc\xf4\xff\xfa\x7f\xfd\x3f\x03\xc6\xd6\xff\xe7\xee\x7f\x73\xdc\xd2" "\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x28\x6e\xb1\xff\x01\x00\x00\xa0" "\x19\xb9\xfb\x1f\x8e\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xb7\xc4\x2d" "\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff\x3f\xcd\xfe\x7f\x5b\xff\xaf\xff\xd7\xff" "\x0f\x1a\x4b\xff\x7f\xd5\x55\x3f\xf2\x88\xfe\x5f\xff\xdf\x62\xff\xbf\x88" "\xfe\x5f\xff\xaf\xff\xe7\xb0\xb1\xf5\xff\xb9\xfb\xdf\x1a\xb7\x74\xb2\xff" "\x01\x00\x00\xa0\x07\xb9\xfb\xdf\x16\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc" "\xfd\x6f\x8f\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x77\xc4\x2d\x9d\xec" "\xff\xa3\xfd\xff\xd9\xd9\x5e\xa1\xba\x67\xa8\xff\x8f\x46\x4d\xff\xbf\x8f" "\xfe\xff\xe0\xfb\xd7\xff\x0f\xff\xfa\xf0\xfc\x7f\xfd\xbf\xfe\x7f\xfd\xc6" "\xd2\xff\x7b\xfe\xff\xe9\xde\xbf\xfe\x5f\xff\x3f\xe5\xf7\x7f\xa2\xfe\xff" "\x07\x8e\x7e\xbd\xfe\x9f\x16\x8d\xad\xff\xcf\xdd\xff\x48\xdc\xd2\xc9\xfe" "\x07\x00\x00\x80\x1e\xe4\xee\x7f\x67\xdc\x62\xff\x03\x00\x00\x40\x33\x72" "\xf7\xbf\x2b\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x1f\x8d\x5b\x3a\xd9" "\xff\x9e\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xc3\xaf\xaf\xff\x9f\x26\xfd" "\xff\x62\xfa\xff\x25\xf4\xff\xfa\x7f\xcf\xff\xbf\xf6\xa7\x2f\xd7\xff\xb3" "\x3a\x63\xeb\xff\x73\xf7\xbf\x3b\x6e\xd9\x1d\x7e\x3f\xf8\x3d\xa7\xfc\x8f" "\x09\x00\x00\x00\x8c\x48\xee\xfe\xf7\xc4\x2d\x9d\x7c\xff\x1f\x00\x00\x00" "\x7a\x90\xbb\xff\xbd\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xbe\xb8" "\xa5\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xe1\xd7\xd7\xff\x4f" "\x93\xfe\x7f\x31\xfd\xff\x12\xfd\xf4\xff\xdb\x43\x9f\xdc\x74\x3f\xff\x5c" "\x6d\xfa\xfd\x37\xd3\xff\x7b\xfe\x3f\x2b\x34\xb6\xfe\x3f\x77\xff\xfb\xe3" "\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x07\xe2\x16\xfb\x1f\x00\x00" "\x00\x9a\x91\xbb\xff\x83\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x58" "\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\xdb\xef\xff\x7f\x4a\xff\x7f\xe8\xf5\xf5" "\xff\xfa\xff\x96\xe9\xff\xf3\xef\xe8\xc3\xf4\xff\x4b\xf4\xd3\xff\x0f\xda" "\x74\x3f\x3f\xf5\xf7\xaf\xff\xd7\xff\x73\xd4\xd8\xfa\xff\xdc\xfd\x8f\xc7" "\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x0f\xc5\x2d\xf6\x3f\x00\x00" "\x00\x34\x23\x77\xff\x87\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x23" "\x71\x4b\x27\xfb\x5f\xff\xdf\x57\xff\xbf\x35\xeb\xb1\xff\xf7\xfc\x7f\xfd" "\xbf\xfe\xbf\x27\xd3\xe9\xff\x6f\x3f\x33\xf4\x59\xcf\xff\xd7\xff\xeb\xff" "\xa7\xfb\xfe\xf5\xff\xfa\x7f\x8e\x1a\x5b\xff\x9f\xbb\xff\x89\xad\x33\x5d" "\xee\x7f\x00\x00\x00\x98\xaa\x1f\xff\xa1\x9f\x7b\xfc\xb8\x7f\xee\x13\xbb" "\x7f\xdc\x9e\x7d\x34\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x3f\x16\xb7" "\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x1f\x8f\x5b\x3a\xd9\xff\xfa\xff\xbe" "\xfa\xff\x3e\x9f\xff\xaf\xff\xd7\xff\xeb\xff\x7b\x32\x9d\xfe\x7f\x98\xfe" "\x5f\xff\xaf\xff\x9f\xee\xfb\xd7\xff\xeb\xff\x39\x6a\x6c\xfd\x7f\xee\xfe" "\x27\xe3\x96\x7d\xc3\x6f\xf0\x7f\xa0\x07\x00\x00\x00\x98\x8c\xdc\xfd\x9f" "\x88\x5b\x3a\xf9\xfe\x3f\x00\x00\x00\xf4\x20\x77\xff\x27\xe3\x96\x23\xfb" "\xff\xc2\x31\x7f\x57\x3b\x00\x00\x00\x30\x36\xb9\xfb\x3f\x15\xb7\x74\xf2" "\xfd\x7f\xfd\xff\xc8\xfb\xff\xd9\x9a\xfa\xff\xf8\xf3\xf4\xff\x7b\xf4\xff" "\xfa\xff\xa1\xd7\xd7\xff\x4f\x53\x6b\xfd\xff\xb9\xd9\xa8\xfa\xff\x0b\x5b" "\xfa\x7f\xfd\xff\x02\xfa\x7f\xfd\xbf\xfe\x9f\xc3\xc6\xd6\xff\xe7\xee\x7f" "\xe0\xde\x59\x97\xfb\x1f\x00\x00\x00\x1a\x75\xe0\xdf\x28\x7c\x7a\xf7\x8f" "\xdb\xb3\xcf\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x67\xe3\x16\xfb" "\x1f\x00\x00\x00\x9a\x91\xbb\xff\x73\x71\x4b\x27\xfb\x5f\xff\x3f\xf2\xfe" "\xff\x54\xcf\xff\xdf\xa9\xff\xcb\xf3\xff\x3b\xef\xff\x6f\xde\x1e\x7c\x7d" "\xfd\xbf\xfe\xbf\x65\xad\xf5\xff\x9e\xff\xbf\xf7\x79\xfd\xff\x1e\xfd\xff" "\xb8\xdf\xbf\xfe\x5f\xff\xcf\x51\x27\xe8\xff\x77\x07\xe9\xba\xfb\xff\xdc" "\xfd\x9f\x8f\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x5f\x88\x5b\xec" "\x7f\x00\x00\x00\x68\x46\xee\xfe\x2f\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23" "\x77\xff\x97\xe2\x96\x4e\xf6\xbf\xfe\x7f\x03\xfd\xff\x2d\xe7\x66\xb3\xb5" "\xf6\xff\xc7\x78\xfe\xbf\xfe\xbf\x8f\xfe\x7f\xce\xeb\xb7\xd3\xff\x7f\xdf" "\x95\xe7\x1f\xfa\x89\x9f\xb9\xe7\x2e\xfd\x3f\x17\x5d\xca\xfe\x3f\x7f\x2d" "\xe8\xff\xf5\xff\x1b\xe8\xff\xef\x8c\x5f\x7f\xfa\xff\x11\xbd\x7f\xfd\xbf" "\xfe\x9f\xa3\xc6\xf6\xfc\xff\xdc\xfd\x5f\x8e\x5b\x3a\xd9\xff\x00\x00\x00" "\xd0\x83\xdc\xfd\x4f\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x57\xe2" "\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xab\x71\x4b\x27\xfb\x5f\xff\xdf" "\xe2\xf3\xff\xa7\xd9\xff\xe7\xcf\xf5\x06\xfa\xff\xf3\xd3\xeb\xff\xb3\x29" "\xee\xbd\xff\xf7\xfc\x7f\xfd\xff\x51\x9e\xff\xbf\x98\xfe\x7f\x89\xe9\xf4" "\xff\xbb\x1f\x7b\xfe\xff\xb8\xde\xbf\xfe\x5f\xff\xcf\x51\x63\xeb\xff\x73" "\xf7\x7f\x2d\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\x7f\x3d\x6e\xc9" "\xfd\xbf\x75\xe2\x7f\x75\x0f\x00\x00\x00\x8c\x4c\xee\xfe\x6f\xc4\x2d\xbe" "\xff\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x74\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff" "\xc7\xd2\xff\x27\xcf\xff\xbf\xf8\x75\x9e\xff\xbf\x47\xff\xaf\xff\x3f\x09" "\xfd\xff\x62\xfa\xff\x25\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x95\x1a\x5b\xff" "\x9f\xbb\xff\x9b\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x99\xb8" "\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x56\xdc\x62\xff\x03\x00\x00\x40" "\x33\x72\xf7\x7f\x3b\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe" "\x7f\xf8\xf5\xf5\xff\xd3\xa4\xff\x5f\x4c\xff\xff\xac\x2b\xe6\xbf\x01\xfd" "\xbf\xfe\x5f\xff\xaf\xff\x67\xa5\xc6\xd6\xff\xe7\xee\xff\x6e\x00\x00\x00" "\xff\xff\x73\x7d\x55\xe4", 25332); syz_mount_image(/*fs=*/0x200000000080, /*dir=*/0x200000000440, /*flags=MS_LAZYTIME|MS_NOATIME|MS_DIRSYNC*/ 0x2000480, /*opts=*/0x200000000480, /*chdir=*/0xfd, /*size=*/0x62f4, /*img=*/0x2000000006c0); // open arguments: [ // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0x80242 (8 bytes) // mode: open_mode = 0x1df2a23c5997fa5f (8 bytes) // ] // returns fd memcpy((void*)0x200000000580, "./file1\000", 8); syscall( __NR_open, /*file=*/0x200000000580ul, /*flags=O_TRUNC|O_CREAT|O_CLOEXEC|O_RDWR*/ 0x80242ul, /*mode=S_IXOTH|S_IWOTH|S_IROTH|S_IXGRP|S_IWGRP|S_IXUSR|0x1df2a23c5997fa00*/ 0x1df2a23c5997fa5ful); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; for (procid = 0; procid < 5; procid++) { if (fork() == 0) { use_temporary_dir(); do_sandbox_none(); } } sleep(1000000); return 0; }