// 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 #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; } 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 reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); 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) { 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); } } uint64_t r[1] = {0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; 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 = 0x210004 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {6e 6f 69 6e 74 65 67 72 69 74 79 2c 65 72 72 6f // 72 73 3d 63 6f 6e 74 69 6e 75 65 2c 6e 6f 64 69 73 63 61 72 64 2c // 71 75 6f 74 61 2c 71 75 6f 74 61 2c 69 6f 63 68 61 72 73 65 74 3d // 6d 61 63 63 65 6e 74 65 75 72 6f 2c 75 73 72 71 75 6f 74 61 2c 75 // 73 72 71 75 6f 74 61 2c 67 69 64 3d} (length 0x5e) // } // union ANYUNION { // ANYRESHEX: ANYRES64 (resource) // } // union ANYUNION { // ANYBLOB: buffer: {2c 00 ae dd 58 95 3f 0c 5a f6 b9 a6 8b 0e 78 90 // 5b a5 41 a4 13 6c 1d b0 c9 7a dd 6e 61 85 d4 e0 44 f0 1e d1 79 b8 // 40 4f d0 65 30 1f 8f e7 6f bf 5f e1 9a 96 61 58 1c 6a d9 9a c9 71 // b3 a3 b8 17 94 8e 9f be b0 e1 e4 f6 c5 c8 86 38 69 bb e4 4c 8d 9f // ba de ab 25 6d ec 89 3e 94 61 2e b2 c7 13 c9 63 b1 a7 63 67 8d 17 // 25 d6 f7 c6 0d 78} (length 0x6e) // } // } // } // chdir: int8 = 0x3 (1 bytes) // size: len = 0x62f0 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x62f0) // } // ] // returns fd_dir memcpy((void*)0x200000000040, "jfs\000", 4); memcpy((void*)0x200000000080, "./file0\000", 8); memcpy((void*)0x2000000002c0, "nointegrity,errors=continue,nodiscard,quota,quota,iocharset=" "maccenteuro,usrquota,usrquota,gid=", 94); sprintf((char*)0x20000000031e, "0x%016llx", (long long)0); memcpy((void*)0x200000000330, "\x2c\x00\xae\xdd\x58\x95\x3f\x0c\x5a\xf6\xb9\xa6\x8b\x0e\x78\x90\x5b" "\xa5\x41\xa4\x13\x6c\x1d\xb0\xc9\x7a\xdd\x6e\x61\x85\xd4\xe0\x44\xf0" "\x1e\xd1\x79\xb8\x40\x4f\xd0\x65\x30\x1f\x8f\xe7\x6f\xbf\x5f\xe1\x9a" "\x96\x61\x58\x1c\x6a\xd9\x9a\xc9\x71\xb3\xa3\xb8\x17\x94\x8e\x9f\xbe" "\xb0\xe1\xe4\xf6\xc5\xc8\x86\x38\x69\xbb\xe4\x4c\x8d\x9f\xba\xde\xab" "\x25\x6d\xec\x89\x3e\x94\x61\x2e\xb2\xc7\x13\xc9\x63\xb1\xa7\x63\x67" "\x8d\x17\x25\xd6\xf7\xc6\x0d\x78", 110); memcpy( (void*)0x20000000cc80, "\x78\x9c\xec\xdd\x4b\x8f\x1c\x57\xd9\x07\xf0\xa7\xfa\x36\x17\xbf\x71\xac" "\x2c\xa2\xbc\x16\x42\x93\xc4\x5c\x42\x88\xaf\xc1\x18\x02\x24\x59\xc0\x82" "\x0d\x0b\xe4\x2d\xb2\x35\x99\x44\x16\x0e\x20\xdb\x20\x27\xb2\xf0\xa0\xd9" "\xb0\xe0\x43\x80\x90\x10\x2b\x84\x58\xb2\xe2\x03\x64\xc1\x96\x1d\x1f\x00" "\x4b\x36\x12\x28\xab\x14\xaa\xe9\x73\xc6\x35\x9d\x1e\xf7\x78\x9c\xe9\xea" "\xf1\xf9\xfd\xa4\x99\xaa\xa7\x4f\xd5\xf4\x29\xff\xbb\xfa\xe2\xaa\xea\x13" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x7c\xff\x7b\x3f" "\x3c\x57\x45\xc4\x95\x5f\xa4\x1b\x4e\x44\xfc\x5f\xf4\x23\x7a\x11\x2b\x4d" "\xbd\x16\x11\x2b\x6b\x27\xf2\xf2\x83\x88\x78\x21\xb6\x9b\xe3\xf9\x88\x18" "\x2e\x45\x34\xeb\x6f\xff\x7a\x36\xe2\xf5\x88\xf8\xe8\x78\xc4\xfd\x07\x77" "\xd6\x9b\x9b\xcf\xef\xb3\x1f\xdf\xfd\xf3\x3f\x7e\xff\xa3\x63\x3f\xf8\xfb" "\x9f\x86\x67\xfe\xfb\x97\x5b\xfd\x37\xf6\x5a\xee\xf6\xed\xdf\xfc\xe7\xaf" "\x77\x9f\x6c\x9b\x01\x00\x00\xa0\x34\x75\x5d\xd7\x55\xfa\x98\x7f\x32\x7d" "\xbe\xef\x75\xdd\x29\x00\x60\x2e\xf2\xeb\x7f\x9d\xe4\xdb\xd5\x0b\x57\x6f" "\x2e\x58\x7f\xd4\x6a\xb5\x5a\x7d\x04\xeb\xb6\x7a\xba\xbb\xed\x22\x22\x36" "\xdb\xeb\x34\xef\x19\x1c\x8e\x07\x80\x23\x66\x33\x3e\xee\xba\x0b\x74\x48" "\xfe\x45\x1b\x44\xc4\xb1\xae\x3b\x01\x2c\xb4\xaa\xeb\x0e\x70\x28\xee\x3f" "\xb8\xb3\x5e\xa5\x7c\xab\xf6\xeb\xc1\xda\xb8\x3d\x9f\x0b\xb2\x2b\xff\xcd" "\x6a\xe7\xfa\x8e\xbd\xa6\xb3\x4c\x9e\x63\x32\xaf\xc7\xd7\x56\xf4\xe3\xb9" "\x3d\xfa\xb3\x32\xa7\x3e\x2c\x92\x9c\x7f\x6f\x32\xff\x2b\xe3\xf6\x51\x5a" "\xee\xb0\xf3\x9f\x97\xbd\xf2\x1f\x8d\x2f\x7d\x2a\x4e\xce\xbf\x3f\x99\xff" "\x84\x94\xff\xf2\xf6\xef\x23\x9d\x7f\x6f\x6a\xfe\xa5\xca\xf9\x0f\xf6\x97" "\xff\xd8\x66\x5f\xfe\x00\x00\x00\x00\x00\xb0\xc0\xf2\xff\xff\x9f\xe8\xf8" "\xf8\xef\xd2\x41\x3a\x7f\x80\x83\x08\x8f\x3a\xfe\xbb\x76\x90\x3e\x00\x00" "\x00\x00\x00\x00\x00\xc0\x02\x78\xd2\xf1\xff\x76\x18\xff\x0f\x00\x00\x00" "\x16\x56\xf3\x59\xbd\xf1\xdb\xe3\x0f\x6f\xdb\xeb\xbb\xd8\x9a\xdb\x2f\x57" "\x11\xcf\x4c\x2c\x0f\x14\x26\x5d\x2c\xb3\xda\x75\x3f\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xa0\x24\x83\xf1\x39\xbc\x97\xab\x88\x61\x44\x3c\xb3" "\xba\x5a\xd7\x75\xf3\xd3\x36\x59\x3f\xae\x27\x5d\xff\xa8\x2b\x7d\xfb\xa1" "\x64\x5d\x3f\xc9\x03\x00\xc0\xd8\x47\xc7\x27\xae\xe5\xaf\x22\x96\x23\xe2" "\x72\xfa\xae\xbf\xe1\xea\xea\x6a\x5d\x2f\xaf\xac\xd6\xab\xf5\xca\x52\x7e" "\x3f\x3b\x5a\x5a\xae\x57\x5a\x9f\x6b\xf3\xb4\xb9\x6d\x69\xb4\x8f\x37\xc4" "\x83\x51\xdd\xfc\xb1\xe5\xd6\x7a\x6d\xb3\x3e\x2f\xcf\x6a\x9f\xfc\x7b\xcd" "\x7d\x8d\xea\xfe\x3e\x3a\x36\x1f\x1d\x06\x0e\x00\x11\x31\x7e\x35\xba\xef" "\x15\xe9\x29\x53\xd7\xcf\x46\xd7\xef\x72\x38\x1a\xec\xff\x4f\x1f\xfb\x3f" "\xfb\xd1\xf5\xe3\x14\x00\x00\x00\x38\x7c\x75\x5d\xd7\x55\xfa\x3a\xef\x93" "\xe9\x98\x7f\xaf\xeb\x4e\x01\x00\x73\x91\x5f\xff\x27\x8f\x0b\xa8\xd5\x6a" "\xb5\x5a\xad\x7e\xfa\xea\xb6\x7a\xba\xbb\xed\x22\x22\x36\xdb\xeb\x34\xef" "\x19\x0c\xc7\x0f\x00\x47\xcc\x66\x7c\xdc\x75\x17\xe8\x90\xfc\x8b\x36\x88" "\x88\x17\xba\xee\x04\xb0\xd0\xaa\xae\x3b\xc0\xa1\xb8\xff\xe0\xce\x7a\x95" "\xf2\xad\xda\xaf\x07\x69\x7c\xf7\x7c\x2e\xc8\xae\xfc\x37\xab\xed\xf5\xf2" "\xfa\xd3\xa6\xb3\x4c\x9e\x63\x32\xaf\xc7\xd7\x56\xf4\xe3\xb9\x3d\xfa\xf3" "\xfc\x9c\xfa\xb0\x48\x72\xfe\xbd\xc9\xfc\xaf\x8c\xdb\x47\x69\xb9\x83\xe6" "\xbf\x57\xae\x5d\x9d\x63\xb4\x57\xfe\xcd\x76\x9e\xe8\xa0\x3f\x5d\xcb\xf9" "\xf7\x27\xf3\x9f\x70\xd8\xfb\xff\xbc\x6c\x45\x6f\x6a\xfe\xa5\xca\xf9\x0f" "\x1e\x2b\xff\xbe\xfc\x01\x00\x00\x00\x00\x60\x81\xe5\xff\xff\x3f\xb1\x50" "\xc7\x7f\x47\x07\xdd\x9c\x99\x1e\x75\xfc\x77\xed\xd0\xee\x15\x00\x00\x00" "\x00\x00\x00\x00\x0e\xd7\xfd\x07\x77\xd6\xf3\x75\xaf\xf9\xf8\xff\xe7\xa6" "\x2c\xe7\xfa\xcf\xa7\x53\xce\xbf\x92\x7f\x91\x72\xfe\xbd\x89\xfc\xbf\x3c" "\xb1\x5c\xbf\x35\x7f\xef\xed\x87\xf9\xff\xfb\xc1\x9d\xf5\x3f\xdc\xfa\xd7" "\xff\xe7\xe9\x7e\xf3\x5f\xca\x33\x55\x7a\x64\x55\xe9\x11\x51\xa5\x7b\xaa" "\x06\x69\xfa\x24\x5b\xf7\x69\x5b\xc3\xfe\xa8\xb9\xa7\x61\xd5\xeb\x37\xf7" "\xb0\xb6\xf3\xf7\xaf\xc7\x46\x9c\xdd\xb5\x6c\x2f\xfd\x7b\xd4\xc3\x77\xe3" "\xda\x76\xfb\xb9\x5d\xed\x4d\x4f\x87\xdb\xed\x75\x7f\xdc\x7e\x7e\x57\xfb" "\x60\xa7\x3d\xaf\x7f\x61\x57\xfb\x30\x9d\xe9\x54\xaf\xe4\xf6\xd3\xb1\x1e" "\x3f\x8d\xeb\xf1\xce\x76\x7b\xd3\xb6\x34\x63\xfb\x97\x67\xb4\xd7\x33\xda" "\x73\xfe\x7d\xfb\x7f\x91\x72\xfe\x83\xd6\x4f\x93\xff\x6a\x6a\xaf\x26\xa6" "\x8d\x7b\xbf\xea\x7d\x6a\xbf\x6f\x4f\xa7\xdd\xcf\x5b\xd7\x3e\xff\xeb\xb3" "\x87\xbf\x39\x33\x6d\x45\x7f\x67\xdb\xda\x9a\xed\x7b\xa9\x83\xfe\x6c\xff" "\x9b\x1c\x1b\xc5\xcf\x6f\x6e\xdc\x38\x7d\xfb\xea\xad\x5b\x37\xce\x45\x9a" "\xec\xba\xf5\x7c\xa4\xc9\x67\x2c\xe7\x3f\x4c\x3f\x3b\xcf\xff\x2f\x8f\xdb" "\xf3\xf3\xfe\xce\xfe\xba\xf2\xc7\xf1\xf4\x31\xf3\x5f\x14\x5b\x31\xd8\x33" "\xff\x97\x5b\xf3\xcd\xf6\xbe\x32\xe7\xbe\x75\x21\xe7\x3f\x4a\x3f\x39\xff" "\x77\x52\xfb\xf4\xfd\x7f\xf4\xd8\xfb\xff\xa2\x78\xd4\xfe\xff\x6a\x07\xfd" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x47\xa9\xeb\x7a\xfb" "\x12\xd1\xb7\x22\xe2\x62\xba\xfe\xa7\xab\x6b\x33\x01\x80\xf9\xca\xaf\xff" "\x75\x92\x6f\x9f\x57\xdd\x9f\xf3\xfd\xa9\xd5\x47\xbc\xae\x16\xac\x3f\x73" "\xad\x3f\xa9\x17\xab\x3f\x6a\xf5\x51\xac\xdb\xea\xe9\xde\x6c\x17\x11\xf1" "\xb7\xf6\x3a\xcd\x7b\x86\x5f\x4e\xfb\x63\x00\xc0\x22\xfb\x24\x22\xfe\xd9" "\x75\x27\xe8\x8c\xfc\x0b\x96\xbf\xef\xaf\x99\x9e\xda\xf5\x2d\xbf\xc0\xd3" "\xee\xe6\x07\x1f\xfe\xf8\xea\xf5\xeb\x1b\x37\x6e\x76\xdd\x13\x00\x00\x00" "\x00\x00\x00\x00\xe0\xa0\xf2\xf8\x9f\x6b\xad\xf1\x9f\x4f\xd5\x75\x7d\x77" "\x62\xb9\xf6\x77\x02\xdc\x7b\x3b\xd6\x9e\x74\xfc\xcf\x41\x9e\xd9\x19\x60" "\x74\x8f\x81\xaa\x3f\xe3\x53\x92\xb6\x7a\xa3\x7e\xaf\x35\xdc\xf8\x8b\xd1" "\x1e\x9f\xbb\x3d\x42\xf1\x70\x67\xee\x51\xe3\x7f\x0f\x66\xdc\xdf\x70\x46" "\xfb\x68\x46\xfb\xd2\x8c\xf6\xe5\x19\xed\x53\x2f\xf4\x68\xc9\xf9\xbf\xd8" "\x1a\xef\xfc\x54\x44\x9c\x9c\x18\x7e\xbd\x84\xf1\x5f\x27\xc7\xbc\x2f\x41" "\xce\xff\xa5\xd6\xe3\xb9\xc9\xff\x4b\x13\xcb\xb5\xf3\xaf\x7f\x77\x94\xf3" "\xef\xed\xca\xff\xcc\xad\xf7\x7f\x76\xe6\xe6\x07\x1f\xbe\x76\xed\xfd\xab" "\xef\x6d\xbc\xb7\xf1\x93\x0b\xe7\xce\x9d\xbd\x70\xf1\xe2\xa5\x4b\x97\xce" "\xbc\x7b\xed\xfa\xc6\xd9\xf1\xef\x0e\x7b\x7c\xb8\x72\xfe\x79\xec\xeb\x9c" "\x3f\x65\xc8\xf9\xe7\xcc\xe5\x5f\x96\x9c\xff\x17\x52\x2d\xff\xb2\xe4\xfc" "\xbf\x98\x6a\xf9\x97\x25\xe7\x9f\xdf\xef\xc9\xbf\x2c\x39\xff\xfc\xd9\x47" "\xfe\x65\xc9\xf9\xbf\x92\x6a\xf9\x97\x25\xe7\xff\x95\x54\xcb\xbf\x2c\x39" "\xff\x57\x53\x2d\xff\xb2\xe4\xfc\xbf\x9a\x6a\xf9\x97\x25\xe7\xff\x5a\xaa" "\xe5\x5f\x96\x9c\xff\xe9\x54\xcb\xbf\x2c\x39\xff\x33\xa9\xde\x67\xfe\x2b" "\x87\xdd\x2f\xe6\x23\xe7\x9f\x8f\x70\xd9\xff\xcb\x92\xf3\xcf\x67\x36\xc8" "\xbf\x2c\x39\xff\xf3\xa9\x96\x7f\x59\x72\xfe\x17\x52\x2d\xff\xb2\xe4\xfc" "\x5f\x4f\xb5\xfc\xcb\x92\xf3\xff\x5a\xaa\xe5\x5f\x96\x9c\xff\xc5\x54\xcb" "\xbf\x2c\x39\xff\xaf\xa7\x5a\xfe\x65\xc9\xf9\x5f\x4a\xb5\xfc\xcb\x92\xf3" "\xff\x46\xaa\xe5\x5f\x96\x9c\xff\x37\x53\x2d\xff\xb2\xe4\xfc\xdf\x48\xb5" "\xfc\xcb\x92\xf3\xff\x56\xaa\xe5\x5f\x96\x9c\xff\xb7\x53\x2d\xff\xb2\xe4" "\xfc\xbf\x93\x6a\xf9\x97\x25\xe7\xff\x66\xaa\xe5\x5f\x96\x87\xdf\xff\xbf" "\xa8\x33\xf9\x12\xfb\x45\xe9\x8f\x19\x33\x25\xcc\x74\xfd\xcc\x04\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x4c\x9a\xc7\xe9\xc4\x5d\x6f\x23\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xf0\x3f\x76\xe0\x40\x00\x00\x00\x00\x00\xc8" "\xff\xb5\x11\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xb0\x03\x07\x02\x00" "\x00\x00\x00\x40\xfe\xaf\x8d\x50\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x85" "\xbd\x7b\x8d\x91\xeb\xac\xef\x07\x7e\xf6\xea\xb5\x03\x89\x81\x90\xbf\x93" "\xbf\x21\x1b\xc7\x84\x90\x6c\xb2\x6b\x3b\xf1\x85\x36\xc5\x84\x6b\xc3\xad" "\x04\x42\xa1\x17\x6c\xd7\xbb\x36\x0b\x8e\xed\x78\xed\x12\x68\x24\x3b\x0a" "\x94\x48\x18\x15\x21\xda\x86\x17\x6d\x01\xa1\x36\x52\x55\x61\x55\xbc\xa0" "\x15\xa0\xbc\x40\xad\x2a\x55\x82\xf6\x05\x7d\x83\xa8\x50\x91\x1a\x55\x01" "\x05\xa4\x4a\x2d\x82\x6c\x35\xe7\x3c\xcf\xb3\x33\xb3\x67\x67\xf6\x32\xbb" "\x9e\x3d\xe7\xf3\x91\xec\x9f\x77\xe6\xcc\x3c\xcf\x9c\x79\xe6\xec\xfc\x76" "\xfd\x9d\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\xb3" "\x5b\xde\x30\xf3\xa9\x81\x2c\xcb\x1a\x7f\xf2\xbf\xb6\x67\xd9\x8b\x1a\xff" "\xde\x3a\xbe\x3d\xbf\xec\xb5\x57\x7b\x86\x00\x00\x00\xc0\x5a\xfd\x32\xff" "\xfb\xf9\xeb\xd2\x05\x87\x97\x71\xa3\xa6\x6d\xfe\xf1\x95\xdf\xf9\xda\xfc" "\xfc\xfc\x7c\xf6\xfe\xa1\x3f\x1e\xf9\xfc\xfc\x7c\xba\x62\x3c\xcb\x46\xb6" "\x64\x59\x7e\x5d\x74\xe5\x87\x1f\x18\x68\xde\x26\x78\x22\x1b\x1b\x18\x6c" "\xfa\x7a\xb0\xcb\xf0\x43\x5d\xae\x1f\xee\x72\xfd\x48\x97\xeb\x47\xbb\x5c" "\xbf\xa5\xcb\xf5\x63\x5d\xae\x5f\xb4\x03\x16\xd9\x5a\xfc\x3c\x26\xbf\xb3" "\xdd\xf9\x3f\xb7\x17\xbb\x34\xbb\x3e\x1b\xc9\xaf\xdb\x5d\x72\xab\x27\x06" "\xb6\x0c\x0e\xc6\x9f\xe5\xe4\x06\xf2\xdb\xcc\x8f\x9c\xc8\x66\xb3\x53\xd9" "\x4c\x36\xd5\xb2\x7d\xb1\xed\x40\xbe\xfd\x37\x6e\x69\x8c\xf5\xd6\x2c\x8e" "\x35\xd8\x34\xd6\xce\xc6\x0a\xf9\xe9\x63\xc7\xe3\x1c\x06\xc2\x3e\xde\xdd" "\x32\xd6\xc2\x7d\x46\x3f\x7e\x7d\x36\xfe\xb3\x9f\x3e\x76\xfc\x2f\xcf\x3f" "\x77\x63\x59\xed\xba\x1b\x5a\xee\xaf\x98\xe7\xed\xbb\x1a\xf3\xfc\x44\xb8" "\xa4\x98\xeb\x40\xb6\x25\xed\x93\x38\xcf\xc1\xa6\x79\xee\x2c\x79\x4e\x86" "\x5a\xe6\x39\x90\xdf\xae\xf1\xef\xf6\x79\x3e\xbf\xcc\x79\x0e\x2d\x4c\x73" "\x43\xb5\x3f\xe7\x63\xd9\x60\xfe\xef\xef\xe6\xfb\x69\xb8\xf9\xc7\x7a\x69" "\x3f\xed\x0c\x97\xfd\xcf\xad\x59\x96\x5d\x5a\x98\x76\xfb\x36\x8b\xc6\xca" "\x06\xb3\x6d\x2d\x97\x0c\x2e\x3c\x3f\x63\xc5\x8a\x6c\xdc\x47\x63\x29\xbd" "\x34\x1b\x5e\xd1\x3a\xbd\x65\x19\xeb\xb4\x51\xa7\x77\xb7\xae\xd3\xf6\xd7" "\x44\x7c\xfe\x6f\x09\xb7\x1b\x5e\x62\x0e\xcd\x4f\xd3\x8f\x1f\x1f\x6d\x7a" "\xde\x7f\x31\xbf\x9a\x75\x1a\x35\x1e\xf5\x52\xaf\x95\xf6\x35\xd8\xeb\xd7" "\x4a\xbf\xac\xc1\xb8\x2e\xbe\x9b\x3f\xe8\x27\x4b\xd7\xe0\xee\xf0\xf8\x1f" "\xbb\x6d\xe9\x35\x58\xba\x76\x4a\xd6\x60\x7a\xdc\x4d\x6b\x70\x57\xb7\x35" "\x38\x38\x3a\x94\xcf\x39\x3d\x09\x03\xf9\x6d\x16\xd6\xe0\x9e\x96\xed\x87" "\xf2\x91\x06\xf2\xfa\xec\x6d\x9d\xd7\xe0\xe4\xf9\x87\xcf\x4e\xce\x7d\xec" "\xe3\x77\xcd\x3e\x7c\xec\xe4\xcc\xc9\x99\xd3\xfb\xf6\xec\x99\xda\xb7\x7f" "\xff\xc1\x83\x07\x27\x4f\xcc\x9e\x9a\x99\x2a\xfe\x5e\xe5\xde\xee\x7f\xdb" "\xb2\xc1\xf4\x1a\xd8\x15\xf6\x5d\x7c\x0d\xbc\xba\x6d\xdb\xe6\xa5\x3a\xff" "\xa5\xd1\x45\xc7\xdf\xd5\xbe\x0e\xc7\x3a\xbc\x0e\xb7\xb7\x6d\xdb\xeb\xd7" "\xe1\x70\xfb\x83\x1b\xd8\x98\x17\xe4\xe2\x35\x5d\xbc\x36\xde\xdb\xd8\xe9" "\x63\x97\x07\xb3\x25\x5e\x63\xf9\xf3\x73\xc7\xda\x5f\x87\xe9\x71\x37\xbd" "\x0e\x87\x9b\x5e\x87\xa5\xdf\x53\x4a\x5e\x87\xc3\xcb\x78\x1d\x36\xb6\x39" "\x7b\xc7\xf2\xde\xb3\x0c\x37\xfd\x29\x9b\xc3\xd2\xdf\x0b\xd6\xb6\x06\xb7" "\x37\xad\xc1\xf6\xf7\x23\xed\x6b\xb0\xd7\xef\x47\xfa\x65\x0d\x8e\x85\x75" "\xf1\xfd\x3b\x96\xfe\x5e\xb0\x33\xcc\xf7\xc9\x89\x95\xbe\x1f\x19\x5a\xb4" "\x06\xd3\xc3\x0d\xc7\x9e\xc6\x25\xe9\xfd\xfe\xd8\xc1\xbc\x94\xad\xcb\x9b" "\x1a\x57\x5c\x33\x9a\x5d\x98\x9b\x39\x77\xf7\xa3\xc7\xce\x9f\x3f\xb7\x27" "\x0b\x65\x43\xbc\xac\x69\xad\xb4\xaf\xd7\x6d\x4d\x8f\x29\x5b\xb4\x5e\x07" "\x57\xbc\x5e\x0f\xcf\xbe\xf2\xc9\x9b\x4a\x2e\xdf\x1e\xf6\xd5\xd8\x5d\x8d" "\xbf\xc6\x96\x7c\xae\x1a\xdb\xdc\x73\x77\xe7\xe7\x2a\xff\xee\x56\xbe\x3f" "\x5b\x2e\xdd\x9b\x85\xd2\x63\x1b\xbd\x3f\xcb\xbe\x9b\x37\xf6\xe7\x68\x96" "\x7d\xe1\xdb\x8f\x3f\xf8\xcd\xc7\xbe\xf0\x86\x25\xf7\x67\xa3\xdf\xfc\xc4" "\xe4\xda\xdf\x8b\xa7\xbe\xb4\xe9\xf8\x3b\xb2\xc4\xf1\x37\xf6\xfd\x2f\x14" "\xe3\xa5\xbb\x7a\x62\x68\x64\xb8\x78\xfd\x0e\xa5\xbd\x33\xd2\x72\x3c\x6e" "\x7d\xaa\x86\xf3\x63\xd7\x40\x3e\xf6\xf3\x93\xcb\x3b\x1e\x8f\x84\x3f\x1b" "\x7d\x3c\xbe\xbe\xc3\xf1\x78\x47\xdb\xb6\xbd\x3e\x1e\x8f\xb4\x3f\xb8\x78" "\x3c\x1e\xe8\xf6\xd3\x8e\xb5\x69\x7f\x3e\xc7\xc2\x3a\x39\x35\xd5\xf9\x78" "\xdc\xd8\x66\xc7\xde\x95\xae\xc9\xe1\x8e\xc7\xe3\x5b\x43\x1d\x08\xfb\xff" "\x35\xa1\x53\x48\x7d\x51\xd3\xda\x59\x6a\xdd\xa6\xb1\x86\x87\x47\xc2\xe3" "\x1a\x8e\x23\xb4\xae\xd3\x7d\x2d\xdb\x8f\x84\xde\xac\x31\xd6\xd3\x7b\x57" "\xb7\x4e\x6f\xbf\xb5\xb8\xaf\xa1\xf4\xe8\x16\x6c\xd4\x3a\x1d\x6f\xdb\xb6" "\xd7\xeb\x34\xfd\xec\x6b\xa9\x75\x3a\xd0\xed\xa7\x6f\xab\xd3\xfe\x7c\x8e" "\x85\x75\x71\xfd\xbe\xce\xeb\xb4\xb1\xcd\x33\xf7\xac\xfd\xd8\xb9\x35\xfe" "\xb3\xe9\xd8\x39\xda\x6d\x0d\x8e\x0c\x8d\x36\xe6\x3c\x92\x16\x61\x7e\xbc" "\xcf\xe6\xb7\xc6\x35\x78\x77\x76\x3c\x3b\x93\x9d\xca\xa6\xf3\x6b\x47\xf3" "\xf5\x34\x90\x8f\x35\x71\xef\xf2\xd6\xe0\x68\xf8\xb3\xd1\xc7\xca\x1d\x1d" "\xd6\xe0\xed\x6d\xdb\xf6\x7a\x0d\xa6\xef\x63\x4b\xad\xbd\x81\xe1\xc5\x0f" "\xbe\x07\xda\x9f\xcf\xb1\xb0\x2e\x9e\xba\xb7\xf3\x1a\x6c\x6c\xf3\xc6\x03" "\xbd\x7d\xef\x7a\x7b\xb8\x24\x6d\xd3\xf4\xde\xb5\xfd\xe7\x6b\x4b\xfd\xcc" "\xeb\xa6\xb6\xdd\xb4\x5e\x6b\x65\x38\xcc\xf3\xdb\x07\x3a\xff\x6c\xb6\xb1" "\xcd\xa9\x83\x2b\xed\x33\x3b\xef\xa7\x3b\xc3\x25\xd7\x94\xec\xa7\xf6\xd7" "\xef\x52\xaf\xa9\xe9\x6c\x63\xf6\xd3\x8e\x30\xcf\xe7\x0e\x2e\xbd\x9f\x1a" "\xf3\x69\x6c\xf3\xf9\x43\xcb\x5c\x4f\x87\xb3\x2c\xbb\xf8\xc8\xfd\xf9\xcf" "\x7b\xc3\xef\x57\xfe\xf6\xc2\xf7\xbe\xd6\xf2\x7b\x97\xb2\xdf\xe9\x5c\x7c" "\xe4\xfe\x9f\xbc\xf8\xc4\x3f\xac\x64\xfe\x00\x6c\x7e\x2f\x14\x65\x5b\xf1" "\xbd\xae\xe9\x37\x53\xcb\xf9\xfd\x3f\x00\x00\x00\xb0\x29\xc4\xbe\x7f\x30" "\xd4\x44\xff\x0f\x00\x00\x00\x95\x11\xfb\xfe\xf8\xbf\xc2\x13\xfd\x3f\x00" "\x00\x00\x54\x46\xec\xfb\x87\x43\x4d\x6a\xd2\xff\xef\x78\xe3\x73\xb3\x2f" "\x5c\xcc\x52\x32\x7f\x3e\x88\xd7\xa7\xdd\xf0\x40\xb1\x5d\xcc\xb8\x4e\x85" "\xaf\xc7\xe7\x17\x34\x2e\xbf\xff\x2b\x33\xff\xfd\xf7\x17\x97\x37\xf6\x60" "\x96\x65\xbf\x78\xe0\x0f\x4a\xb7\xdf\xf1\x40\x9c\x57\x61\x3c\xcc\xf3\xca" "\x9b\x5a\x2f\x5f\xe4\x6b\x77\x2d\x6b\xec\xa3\x0f\x5d\x4c\xe3\x36\xe7\xd7" "\xbf\x18\xee\x3f\x3e\x9e\xe5\x2e\x83\xb2\x08\xee\x54\x96\x65\xdf\xb8\xee" "\x33\xf9\x38\xe3\x1f\xb8\x9c\xd7\x67\x1e\x38\x9a\xd7\x07\x2f\x3d\xf9\x44" "\x63\x9b\xe7\x0f\x15\x5f\xc7\xdb\x3f\xfb\xb2\x62\xfb\x3f\x0b\xe1\xdf\xc3" "\x27\x8e\xb5\xdc\xfe\xd9\xb0\x1f\x7e\x14\xea\xd4\xdb\xca\xf7\x47\xbc\xdd" "\x57\x2f\xbf\x66\xe7\x81\xf7\x2d\x8c\x17\x6f\x37\xb0\xeb\xda\xfc\x61\x3f" "\xf5\xc1\xe2\x7e\xe3\xe7\xe4\x7c\xf6\x89\x62\xfb\xb8\x9f\x97\x9a\xff\x37" "\x3f\xfd\xf4\x57\x1b\xdb\x3f\xfa\xaa\xf2\xf9\x5f\x1c\x2c\x9f\xff\xd3\xe1" "\x7e\xbf\x12\xea\xff\xbe\xa2\xd8\xbe\xf9\x39\x68\x7c\x1d\x6f\xf7\xc9\x30" "\xff\xc6\x78\x8d\x15\x1a\x6f\x77\xf7\x97\xbf\x55\x3a\xff\x2b\x9f\x2a\xb6" "\x3f\xfb\xe6\x62\xbb\xa3\xa1\xc6\xf1\x6f\x0f\x5f\xef\x7e\xf3\x73\xb3\xcd" "\xfb\xeb\xd1\x81\x63\x2d\x8f\x2b\x7b\x4b\xb1\x5d\x1c\x7f\xea\x7b\x7f\x94" "\x5f\x1f\xef\x2f\xde\x7f\xfb\xfc\xc7\x8e\x5c\x6e\xd9\x1f\xed\xeb\xe3\x99" "\x7f\x2d\xee\x67\xb2\x6d\xfb\x78\x79\x1c\x27\xfa\xbb\xb6\xf1\x1b\xf7\xd3" "\xbc\x3e\xe3\xf8\x4f\xff\xe1\xd1\x96\xfd\xdc\x6d\xfc\x2b\x0f\x3e\xfb\x8a" "\xc6\xfd\xb6\x8f\x7f\x67\xdb\x76\x67\x1f\xb9\x23\x1f\x7f\xe1\xfe\x5a\x3f" "\xb1\xe9\xcf\x3f\xf9\x99\xd2\xf1\xe2\x7c\x0e\xff\xcd\xd9\x96\xc7\x73\xf8" "\xdd\xe1\x75\x1c\xc6\x7f\xea\x83\x61\x3d\x86\xeb\x7f\x7e\xa5\xb8\xbf\xf6" "\x4f\x57\x38\xfa\xee\xd6\xe3\x4f\xdc\xfe\x8b\xdb\x2f\xb6\x3c\x9e\xe8\xad" "\x3f\x2b\xc6\xbf\xf2\xba\x93\x79\xdd\x32\xb6\x75\xdb\x35\x2f\x7a\xf1\xb5" "\x97\x6e\x6e\xec\xbb\x2c\xfb\xee\x96\xe2\xfe\xba\x8d\x7f\xf2\x2f\xce\xb4" "\xcc\xff\x4b\x37\x14\xfb\x23\x5e\x1f\x33\xfa\xed\xe3\x2f\x25\x8e\x7f\xee" "\xa3\x13\xa7\xcf\xcc\x5d\x98\x9d\x4e\x7b\xf5\xb1\xeb\xf2\xcf\xce\x79\x7b" "\x31\x9f\x38\xdf\xeb\xc2\xb1\xb5\xfd\xeb\x23\x67\xce\x7f\x68\xe6\xdc\xf8" "\xd4\xf8\x54\x96\x8d\x57\xf7\x23\xf4\x56\xed\xcb\xa1\xfe\xa4\x28\x97\x3a" "\x6f\x3d\xbf\xe8\x08\x7a\xc7\x43\xe1\xf9\xbc\xe9\x4f\xbf\xb1\xed\xb6\x7f" "\xf9\x74\xbc\xfc\xdf\xde\x5b\x5c\x7e\xf9\x6d\xc5\xf7\xad\x57\x87\xed\x3e" "\x1b\x2e\xdf\x1e\x9e\xbf\x95\x8d\xbf\xd8\x53\xb7\xdc\x90\xbf\xbe\x07\x9e" "\x09\x33\x9c\x5f\xfc\x79\xc1\x6b\xb1\x73\xf7\x7f\x1d\x5c\xd6\x86\xe1\xf1" "\xb7\xbf\x2f\x88\xeb\xfd\xec\xcb\x3f\x94\xef\x87\xc6\x75\xf9\xf7\x8d\xf8" "\xba\x5e\xe3\xfc\x7f\x30\x5d\xdc\xcf\xd7\xc3\x7e\x9d\x0f\x9f\xcc\xbc\xeb" "\x86\x85\xf1\x9a\xb7\x8f\x9f\x8d\x70\xf9\x3d\xc5\xeb\x7d\xcd\xfb\x2f\x1c" "\xe6\xe2\xf3\xfa\x57\xe1\xf9\x7e\xc7\x8f\x8a\xfb\x8f\xf3\x8a\x8f\xf7\x07" "\xe1\x7d\xcc\xb7\x76\xb4\x1e\xef\xe2\xfa\xf8\xfa\xc5\xc1\xf6\xfb\xcf\x3f" "\xc5\xe3\x52\x38\x9e\x64\x97\x8a\xeb\xe3\x56\x71\x7f\x5f\x7e\xfe\x86\xd2" "\xe9\xc5\xcf\x21\xc9\x2e\xdd\x98\x7f\xfd\xb9\x74\x3f\x37\xae\xe8\x61\x2e" "\x65\xee\x63\x73\x93\xa7\x66\x4f\x5f\x78\x74\xf2\xfc\xcc\xdc\xf9\xc9\xb9" "\x8f\x7d\xfc\xc8\xc3\x67\x2e\x9c\x3e\x7f\x24\xff\x2c\xcf\x23\x1f\xee\x76" "\xfb\x85\xe3\xd3\xb6\xfc\xf8\x34\x3d\xb3\xff\x9e\x2c\x3f\x5a\x9d\x29\xca" "\x3a\xbb\xda\xf3\x3f\xfb\xd0\xf1\xe9\x03\x53\xb7\x4d\xcf\x9c\x38\x76\xe1" "\xc4\xf9\x87\xce\xce\x9c\x3b\x79\x7c\x6e\xee\xf8\xcc\xf4\xdc\x6d\xc7\x4e" "\x9c\x98\xf9\x68\xb7\xdb\xcf\x4e\xdf\xb7\x67\xef\xa1\x7d\x07\xf6\x4e\x9c" "\x9c\x9d\xbe\xef\xe0\xa1\x43\xfb\x0e\x4d\xcc\x9e\x3e\xd3\x98\x46\x31\xa9" "\x2e\xf6\x4f\x7d\x64\xe2\xf4\xb9\x23\xf9\x4d\xe6\xee\xbb\xe7\xd0\x9e\x7b" "\xef\xbd\x67\x6a\xe2\xe1\x33\xd3\x33\xf7\x1d\x98\x9a\x9a\xb8\xd0\xed\xf6" "\xf9\xf7\xa6\x89\xc6\xad\x7f\x7f\xe2\xdc\xcc\xa9\x63\xe7\x67\x1f\x9e\x99" "\x98\x9b\xfd\xf8\xcc\x7d\x7b\x0e\xed\xdf\xbf\xb7\xeb\xa7\x01\x3e\x7c\xf6" "\xc4\xdc\xf8\xe4\xb9\x0b\xa7\x27\x2f\xcc\xcd\x9c\x9b\x2c\x1e\xcb\xf8\xf9" "\xfc\xe2\xc6\xf7\xbe\x6e\xb7\xa7\x9a\xe6\xfe\xbd\x78\x3f\xdb\x6e\xa0\xf8" "\x20\xbe\xec\x5d\x77\xee\x4f\x9f\xcf\xda\xf0\x95\xc7\x97\xbc\xab\x62\x93" "\xb6\x0f\x10\x7d\x2e\x7c\x16\xcd\x3f\xbd\xe4\xec\xc1\xe5\x7c\x1d\xfb\xfe" "\x91\x50\x93\x9a\xf4\xff\x00\x00\x00\x50\x07\xb1\xef\x1f\x0d\x35\xd1\xff" "\x03\x00\x00\x40\x65\xc4\xbe\x7f\x4b\xa8\x89\xfe\x1f\x00\x00\x00\x2a\x23" "\xf6\xfd\x63\xa1\x26\x35\xe9\xff\x2b\x97\xff\xdf\x71\x71\x59\xe3\xcb\xff" "\x6f\xbe\xfc\x7f\x26\xff\x2f\xff\xdf\xf6\x78\x56\x9d\xff\x7f\x4f\xbf\xe5" "\xff\x8b\xe3\x85\xfc\x7f\x6f\xac\x35\x7f\x2f\xff\x1f\xc8\xff\xcb\xff\xcb" "\xff\xcb\xff\xcb\xff\xd3\x03\xfd\x96\xff\x8f\x7d\xff\xd6\x2c\xab\x65\xff" "\x0f\x00\x00\x00\x75\x10\xfb\xfe\x6d\xa1\x26\xfa\x7f\x00\x00\x00\xa8\x8c" "\xd8\xf7\x5f\x13\x6a\xa2\xff\x07\x00\x00\x80\xca\x88\x7d\xff\x8b\x42\x4d" "\x6a\xd2\xff\xcb\xff\xcb\xff\xcb\xff\xcb\xff\xcb\xff\x97\x8f\xbf\x82\xfc" "\xff\x96\x6c\x19\xe4\xff\x37\x86\xfc\x7f\x67\x35\xcf\xff\x0f\x76\x9d\x80" "\xfc\xff\x64\x56\xaf\xfc\xff\xa5\x5e\xce\xbf\xbe\xf9\xff\xa2\x87\x92\xff" "\xa7\x4c\xbf\xe5\xff\x63\xdf\xff\xe2\x50\x93\x9a\xf4\xff\x00\x00\x00\x50" "\x29\xff\x59\x7e\x71\xec\xfb\xaf\x0d\x35\xd1\xff\x03\x00\x00\x40\x65\xc4" "\xbe\xff\xba\x50\x13\xfd\x3f\x00\x00\x00\x54\x46\xec\xfb\xb7\x87\x9a\xd4" "\xa4\xff\x97\xff\x97\xff\x97\xff\x97\xff\x97\xff\x2f\x1f\xdf\xf9\xff\x37" "\x27\xf9\xff\xce\x6a\x9e\xff\xef\x4e\xfe\xdf\xf9\xff\xe5\xff\x9d\xff\x9f" "\x9e\xea\xb7\xfc\x7f\xec\xfb\x5f\x12\x6a\x52\x93\xfe\x1f\x00\x00\x00\xea" "\x20\xf6\xfd\x2f\x0d\x35\xd1\xff\x03\x00\x00\x40\xff\x19\x5e\xdd\xcd\x62" "\xdf\xff\xb2\x50\x93\x45\xfd\xff\x2a\x07\x00\x00\x00\x00\xae\xba\xd8\xf7" "\x5f\x9f\xb5\x05\xc1\x6b\xf2\xfb\x7f\xf9\x7f\xf9\x7f\xf9\x7f\xf9\x7f\xf9" "\xff\xf2\xf1\x97\x9f\xff\x1f\xca\xe4\xff\xfb\x87\xfc\x7f\x67\xf2\xff\x5d" "\xc8\xff\xcb\xff\xcb\xff\xcb\xff\xd3\x53\xfd\x96\xff\xcf\xfb\xfe\x6c\x2c" "\x7b\x79\xa8\x49\x4d\xfa\x7f\x00\x00\x00\xa8\x83\xd8\xf7\xdf\x10\x6a\xa2" "\xff\x07\x00\x00\x80\xca\x88\x7d\xff\xff\x0b\x35\xd1\xff\x03\x00\x00\x40" "\x65\xc4\xbe\x7f\x47\xa8\x49\x4d\xfa\x7f\xf9\xff\x4a\xe6\xff\x1b\x4f\x93" "\xfc\xbf\xfc\xff\x92\xe3\x57\x20\xff\x9f\x1f\xac\xfb\x27\xff\xbf\xae\xe7" "\xff\x9f\x09\x81\x4d\xf9\xff\x65\x92\xff\xef\x4c\xfe\xbf\x0b\xf9\x7f\xf9" "\x7f\xf9\x7f\xf9\x7f\x7a\xaa\xdf\xf2\xff\xb1\xef\xbf\x31\xd4\xa4\x26\xfd" "\x3f\x00\x00\x00\xd4\x41\xec\xfb\x6f\x0a\x35\xd1\xff\x03\x00\x00\x40\x65" "\xc4\xbe\xff\xff\x87\x9a\xe8\xff\x01\x00\x00\xa0\x32\x62\xdf\xbf\x33\xd4" "\xa4\x26\xfd\xbf\xfc\x7f\x9f\xe7\xff\x63\x72\xd4\xf9\xff\xe5\xff\x17\xf2" "\xff\x8f\xc8\xff\x17\x6a\x92\xff\x77\xfe\xff\x15\x92\xff\xef\x4c\xfe\xbf" "\x0b\xf9\x7f\xf9\x7f\xf9\x7f\xf9\x7f\x7a\xaa\xdf\xf2\xff\xb1\xef\x7f\x45" "\xa8\x49\x4d\xfa\x7f\x00\x00\x00\xa8\x83\xd8\xf7\xbf\x32\xd4\x44\xff\x0f" "\x00\x00\x00\x95\x11\xfb\xfe\x9b\x43\x4d\xf4\xff\x00\x00\x00\x50\x19\xb1" "\xef\x1f\x0f\x35\xa9\x49\xff\x2f\xff\xdf\xe7\xf9\xff\xd5\x9d\xff\x5f\xfe" "\xbf\xda\xf9\xff\x15\x9d\xff\xff\x66\xf9\x7f\xf9\xff\x9a\x91\xff\xef\x4c" "\xfe\xbf\x0b\xf9\x7f\xf9\x7f\xf9\x7f\xf9\x7f\x7a\xaa\xdf\xf2\xff\xb1\xef" "\xbf\x25\xd4\xa4\x26\xfd\x3f\x00\x00\x00\xd4\x41\xec\xfb\x77\x85\x9a\xe8" "\xff\x01\x00\x00\xa0\x32\x62\xdf\x7f\x6b\xa8\x89\xfe\x1f\x00\x00\x00\x2a" "\x23\xf6\xfd\xbb\x43\x4d\x6a\xd2\xff\xcb\xff\xcb\xff\xcb\xff\x57\x3b\xff" "\x5f\x36\xbe\xfc\xbf\xfc\x7f\x95\xc9\xff\x77\x26\xff\xdf\x85\xfc\xbf\xfc" "\xbf\xfc\xbf\xfc\x3f\x3d\xd5\x6f\xf9\xff\xd8\xf7\xbf\x2a\xd4\xa4\x26\xfd" "\x3f\x00\x00\x00\xd4\x41\xec\xfb\x6f\x0b\x35\xd1\xff\x03\x00\x00\x40\x65" "\xc4\xbe\xff\xd5\xa1\x26\xfa\x7f\x00\x00\x00\xa8\x8c\xd8\xf7\xdf\x1e\x6a" "\x52\x93\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x5f\xfe\xbf\xe6\xf9\xff\x8b\xf2\xff" "\xd5\x22\xff\xdf\x99\xfc\x7f\x17\xf2\xff\xbd\xc8\xcf\xbf\x43\xfe\x5f\xfe" "\x5f\xfe\x9f\xa8\xdf\xf2\xff\xb1\xef\x7f\x4d\xa8\x49\x4d\xfa\x7f\x00\x00" "\x00\xa8\x83\xd8\xf7\xdf\x11\x6a\xa2\xff\x07\x00\x00\x80\xca\x88\x7d\xff" "\x9d\xa1\x26\xfa\x7f\x00\x00\x00\xa8\x8c\xd8\xf7\x4f\x84\x9a\xd4\xa4\xff" "\x97\xff\x97\xff\x97\xff\x97\xff\xaf\x79\xfe\xdf\xf9\xff\x2b\xa6\x0f\xf2" "\xff\x63\x6b\x19\x5f\xfe\x5f\xfe\xbf\x02\xf9\x7f\xe7\xff\x97\xff\x97\xff" "\x27\xb9\x5a\xf9\xff\x2c\x2b\xcf\xff\xc7\xbe\xff\xae\x50\x93\x9a\xf4\xff" "\x00\x00\x00\x50\x07\xb1\xef\xbf\x3b\xd4\x44\xff\x0f\x00\x00\x00\x9b\xd0" "\xd6\xd2\x4b\x63\xdf\x3f\x19\x6a\xa2\xff\x07\x00\x00\x80\xca\x88\x7d\xff" "\x54\xa8\x49\x4d\xfa\x7f\xf9\x7f\xf9\x7f\xf9\xff\x5a\xe7\xff\x2f\xad\x38" "\xff\x7f\xf3\xc2\xfd\xca\xff\x17\xe4\xff\xfb\xcb\xba\xe5\xff\x07\xb3\x1e" "\x9e\xff\x7f\x64\xc9\xf1\xe5\xff\xe5\xff\xe5\xff\x37\x6e\xfe\xed\xbf\x1d" "\xec\x8f\xfc\xff\x88\xfc\x3f\x95\xb2\xaa\xfc\xff\x57\x4b\xef\xaa\x27\xe7" "\xff\x8f\x7d\xff\x9e\x50\x93\x9a\xf4\xff\x00\x00\x00\x50\x07\xb1\xef\xdf" "\x1b\x6a\xa2\xff\x07\x00\x00\x80\xca\x88\x7d\xff\xbe\x50\x13\xfd\x3f\x00" "\x00\x00\x54\x46\xec\xfb\xef\x09\x35\xa9\x49\xff\x2f\xff\xbf\x71\xf9\xff" "\xe1\x4c\xfe\x5f\xfe\xbf\xef\xf2\xff\xce\xff\x2f\xff\x5f\x39\x7d\x70\xfe" "\xff\x35\x8d\xbf\xf9\xf2\xff\xf1\x21\xca\xff\xcb\xff\x6f\xbe\xfc\x7f\xaf" "\xe7\xef\xfc\xff\x21\xff\xdf\x58\xaa\xf2\xff\x04\xab\xca\xff\x97\xeb\x49" "\xfe\x3f\xf6\xfd\xf7\x86\x9a\xd4\xa4\xff\x07\x00\x00\x80\x3a\x88\x7d\xff" "\xfe\x50\x13\xfd\x3f\x00\x00\x00\x54\x46\xec\xfb\x0f\x84\x9a\xe8\xff\x01" "\x00\x00\xa0\x32\x62\xdf\x7f\x30\xd4\xa4\x26\xfd\xbf\xfc\xbf\xf3\xff\xcb" "\xff\xcb\xff\xcb\xff\x97\x8f\xbf\x2e\xf9\xff\x9f\xcb\xff\xaf\x37\xf9\xff" "\xce\x9c\xff\xbf\x0b\xf9\x7f\xf9\x7f\xf9\x7f\xe7\xff\xa7\xa7\xfa\x2d\xff" "\x1f\xfb\xfe\x43\xa1\x26\x35\xe9\xff\x01\x00\x00\xa0\x0e\x62\xdf\xff\xda" "\x50\x13\xfd\x3f\x00\x00\x00\x54\x46\xec\xfb\x7f\x25\xd4\x44\xff\x0f\x00" "\x00\x00\x95\x11\xfb\xfe\x5f\x0d\x35\xa9\x49\xff\x2f\xff\x2f\xff\x2f\xff" "\x2f\xff\x2f\xff\x5f\x3e\xbe\xf3\xff\x6f\x4e\xf2\xff\x9d\xc9\xff\x77\x21" "\xff\x2f\xff\x2f\xff\x2f\xff\x4f\x4f\xf5\x5b\xfe\x3f\xf6\xfd\xf7\x85\x9a" "\xd4\xa4\xff\x07\x00\x00\x80\x3a\x88\x7d\xff\xaf\x85\x9a\xe8\xff\x01\x00" "\x00\xa0\x32\x62\xdf\xff\xba\x50\x13\xfd\x3f\x00\x00\x00\x54\x46\xec\xfb" "\x0f\x87\x9a\xd4\xa4\xff\x97\xff\x5f\x66\xfe\x7f\x6b\xe7\xfb\x93\xff\x6f" "\x9d\xbf\xfc\x7f\xf9\xfa\x90\xff\x97\xff\x97\xff\x5f\x7f\xf2\xff\x9d\xc9" "\xff\x77\x21\xff\x2f\xff\x5f\xc1\xfc\xff\xe3\xf2\xff\x5c\x45\xfd\x96\xff" "\x8f\x7d\xff\xeb\x43\x4d\x6a\xd2\xff\x03\x00\x00\x40\x1d\xc4\xbe\xff\xfe" "\x50\x13\xfd\x3f\x00\x00\x00\x54\x46\xec\xfb\xdf\x10\x6a\xa2\xff\x07\x00" "\x00\x80\xca\x88\x7d\xff\x1b\x43\x4d\x6a\xd2\xff\xcb\xff\x3b\xff\xbf\xfc" "\xbf\xfc\xbf\xfc\x7f\xf9\xf8\xf2\xff\x9b\x93\xfc\x7f\x67\xf2\xff\x5d\xc8" "\xff\xcb\xff\x57\x30\xff\xbf\x01\xe7\xff\x1f\x0d\x55\xfe\x9f\x45\x96\x9b" "\xff\x8f\xef\xab\xd6\x3b\xff\x1f\xfb\xfe\x37\x85\x9a\xd4\xa4\xff\x07\x00" "\x00\x80\x3a\x88\x7d\xff\x9b\x43\x4d\xf4\xff\x00\x00\x00\x50\x19\xb1\xef" "\x7f\x4b\xa8\x89\xfe\x1f\x00\x00\x00\x2a\x23\xf6\xfd\x6f\x0d\x35\xa9\x49" "\xff\x2f\xff\x2f\xff\x2f\xff\x2f\xff\x2f\xff\x5f\x3e\xbe\xfc\xff\xe6\x24" "\xff\xdf\x99\xfc\x7f\x17\xf2\xff\xf2\xff\x9b\x24\xff\xff\xbd\x92\xdb\x5f" "\xc5\xfc\x7f\xce\xf9\xff\x29\xd3\x6f\xe7\xff\x8f\x7d\xff\xaf\x87\x9a\xd4" "\xa4\xff\x07\x00\x00\x80\x3a\x88\x7d\xff\x03\xa1\x26\xfa\x7f\x00\x00\x00" "\xa8\x8c\xd8\xf7\xbf\x2d\xd4\x44\xff\x0f\x00\x00\x00\x95\x11\xfb\xfe\xb7" "\x87\x9a\xd4\xa4\xff\xef\x5d\xfe\x7f\x54\xfe\xbf\x8d\xfc\xbf\xfc\x7f\xfb" "\xfa\x90\xff\x97\xff\x97\xff\x5f\x7f\xf2\xff\x9d\x6d\xb2\xfc\xff\x2f\xaf" "\x0d\x97\xcb\xff\x17\xe4\xff\xd7\x69\xfe\xe3\x9f\x2b\x76\xfc\x26\xca\xff" "\x97\x29\xcd\xff\xff\x70\xa9\xfc\xff\xfc\x96\xf6\xdb\xcb\xff\xb3\x1e\xfa" "\x2d\xff\x1f\xfb\xfe\x77\x84\x9a\xd4\xa4\xff\x07\x00\x00\x80\x3a\x88\x7d" "\xff\x3b\x43\x4d\xf4\xff\x00\x00\x00\x50\x19\xb1\xef\x7f\x57\xa8\x89\xfe" "\x1f\x00\x00\x00\x36\xbf\xf9\x22\x3e\x10\xfb\xfe\xdf\x08\x35\xa9\x49\xff" "\xef\xfc\xff\x8d\x79\x2c\xa4\x97\xd7\x39\xff\xff\xd7\xf2\xff\xf2\xff\xf2" "\xff\xf2\xff\xf2\xff\xeb\x4b\xfe\xbf\xb3\x4d\x96\xff\x77\xfe\xff\x36\xf2" "\xff\xfd\x3d\xff\xbe\xcc\xff\x3b\xff\x3f\x57\x59\xbf\xe5\xff\x63\xdf\xff" "\xee\x50\x93\x9a\xf4\xff\x00\x00\x00\x50\x07\xb1\xef\x7f\x30\xd4\x44\xff" "\x0f\x00\x00\x00\x95\x11\xfb\xfe\xf7\x84\x9a\xe8\xff\x01\x00\x00\xa0\x32" "\x62\xdf\xff\xde\x50\x93\x9a\xf4\xff\xf2\xff\xce\xff\x2f\xff\xbf\xc9\xf3" "\xff\xe3\x59\x96\xc9\xff\xcb\xff\x93\xc8\xff\x77\x26\xff\xdf\x85\xfc\xbf" "\xfc\x7f\xbf\xe5\xff\xff\x43\xfe\x9f\xcd\xad\xdf\xf2\xff\xb1\xef\x7f\x28" "\xd4\xa4\x26\xfd\x3f\x00\x00\x00\xd4\x41\xec\xfb\xdf\x17\x6a\xa2\xff\x07" "\x00\x00\x80\xca\x88\x7d\xff\x6f\x86\x9a\xe8\xff\x01\x00\x00\xa0\x32\x62" "\xdf\xff\xfe\x50\x93\x9a\xf4\xff\xf2\xff\x9b\x25\xff\x3f\x2e\xff\x2f\xff" "\xef\xfc\xff\x6d\x8f\x47\xfe\x5f\xfe\xbf\x8c\xfc\x7f\x67\x1b\x9f\xff\x5f" "\xd9\x1b\x2a\xf9\x7f\xf9\xff\xcd\x3c\x7f\xe7\xff\x97\xff\x67\xb1\x7e\xcb" "\xff\xc7\xbe\xff\x03\xa1\x26\xcb\xff\x76\x35\xb6\xec\x2d\x01\x00\x00\x80" "\xab\x22\xf6\xfd\xbf\x15\x6a\x52\x93\xdf\xff\x03\x00\x00\x40\x1d\xc4\xbe" "\xff\xb7\x43\x4d\xf4\xff\x00\x00\x00\x50\x19\xb1\xef\xff\x9d\x50\x93\x9a" "\xf4\xff\xf2\xff\x9b\x25\xff\xef\xfc\xff\x99\xfc\xbf\xfc\x7f\xdb\xe3\x91" "\xff\x97\xff\x2f\xb3\x71\xf9\xff\x78\xe4\x91\xff\x77\xfe\x7f\xf9\xff\x48" "\xfe\x5f\xfe\x5f\xfe\x9f\x76\xfd\x96\xff\x8f\x7d\xff\xef\x86\x9a\xd4\xa4" "\xff\x07\x00\x00\x80\x3a\x88\x7d\xff\x07\x43\x4d\xf4\xff\x00\x00\x00\xb0" "\x29\x94\xfd\x9f\xec\x76\xb1\xef\x3f\x12\x6a\xd2\xbd\xff\x5f\xf1\xff\xe9" "\x03\x00\x00\x00\xae\x8e\xd8\xf7\x1f\x0d\x35\xa9\xc9\xef\xff\xe5\xff\xe5" "\xff\xe5\xff\xfb\x34\xff\xff\x27\xbb\xfe\xf9\xfb\xdf\x79\xe7\xd1\x3d\xf2" "\xff\xf2\xff\xf2\xff\x2b\xb2\xa1\xe7\xff\x6f\xbc\xf8\x9d\xff\x5f\xfe\x5f" "\xfe\x3f\x91\xff\x97\xff\x2f\xcd\xff\x6f\x91\xff\xaf\xb3\x75\xc8\xff\x8f" "\x34\x5f\xb8\xd2\xfc\x7f\xec\xfb\x8f\x85\x9a\xd4\xa4\xff\x07\x00\x00\x80" "\x3a\x88\x7d\xff\xef\x85\x9a\xe8\xff\x01\x00\x00\xa0\x32\x62\xdf\x7f\x3c" "\xd4\x44\xff\x0f\x00\x00\x00\x95\x11\xfb\xfe\xe9\x50\x93\x9a\xf4\xff\xf2" "\xff\xf2\xff\xf2\xff\x7d\x9a\xff\x5f\xe1\xf9\xff\x07\xc2\x38\xfd\x90\xff" "\x8f\xfb\x43\xfe\xbf\x55\xcf\xf2\xff\xf1\xa0\x2b\xff\x5f\x6a\x43\xf3\xff" "\xef\x5b\xc8\x89\xcb\xff\xaf\x34\xff\x3f\x5a\x7a\xa9\xfc\xff\xb2\xf3\xff" "\xf9\x1b\x37\xf9\xff\xfe\x9a\xbf\xfc\xbf\xf3\xff\xb3\x58\xaf\xf2\xff\x43" "\x0b\xf9\xff\x16\x2b\xcd\xff\xc7\xbe\x7f\x26\xd4\xa4\x26\xfd\x3f\x00\x00" "\x00\xd4\x41\xe8\xfb\x07\x4f\x14\x75\xe1\x0a\xfd\x3f\x00\x00\x00\x54\x46" "\xec\xfb\x4f\x86\x9a\xe8\xff\x01\x00\x00\xa0\x32\x62\xdf\xff\xa1\x50\x93" "\x9a\xf4\xff\xf2\xff\xf2\xff\xf2\xff\xd5\xc8\xff\x3b\xff\xff\xc2\xf6\x95" "\xcf\xff\x3b\xff\x7f\x47\xf2\xff\x9d\xf5\x4f\xfe\xbf\x9c\xfc\xbf\xf3\xff" "\x6f\xe6\xf9\xcb\xff\xcb\xff\xb3\xd8\x3a\x9c\xff\xbf\xc5\x4a\xf3\xff\xb1" "\xef\x9f\x0d\x35\xa9\x49\xff\x0f\x00\x00\x00\x75\x10\xfb\xfe\x0f\x87\x9a" "\xe8\xff\x01\x00\x00\xa0\x32\x62\xdf\xff\x91\x50\x13\xfd\x3f\x00\x00\xfc" "\x1f\x7b\x77\xf6\x64\x79\x7d\xd6\x71\xfc\x34\xf6\x14\x33\xc5\x85\x65\x95" "\x55\x5e\x78\x21\xf7\x96\x7f\x01\x17\x70\xad\x7f\x80\x17\xde\x70\x63\x15" "\x65\x29\x2e\xe0\xbe\x30\xb8\x6f\xe0\xbe\xa1\x02\xee\x2b\x2e\xa0\x88\x1b" "\xae\x90\x04\xb2\x91\x90\x1d\x12\x92\x90\x84\xec\x09\x21\x09\x21\x49\x4d" "\x6a\x66\x9e\xe7\x99\xd3\xdd\xa7\xcf\xe9\x9e\x3e\xdd\xfd\x3b\xdf\xe7\xf5" "\xba\xc8\x23\x63\xe0\x34\xe3\x38\x93\x4f\x86\x77\x7d\x01\x86\x91\xbb\xff" "\x3b\xe3\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x8b\x3f\xff" "\x52\xff\xbf\x7d\xe5\xaf\xab\xff\xdf\x0c\xfa\xff\xe5\xf4\xff\x2b\xe8\xff" "\xf5\xff\xfa\x7f\xfd\x3f\x6b\x35\xb5\xfe\x3f\x77\xff\x77\xc5\x2d\x4d\xf6" "\x3f\x00\x00\x00\x74\x90\xbb\xff\xd6\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4" "\xee\xff\xee\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x9e\xb8\xa5\xc9" "\xfe\xd7\xff\xeb\xff\x87\xed\xff\x6f\xd4\xff\xef\xf7\xf9\xfa\x7f\xef\xff" "\x8f\x4c\xff\xbf\x9c\xfe\x7f\x85\x0d\xea\xff\xbf\xf6\xac\xfe\x7f\x6a\x5f" "\xbf\xfe\x5f\xff\xcf\x5e\x53\xeb\xff\x73\xf7\x7f\x6f\xdc\xd2\x64\xff\x03" "\x00\x00\x40\x07\xb9\xfb\xbf\x2f\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb" "\x6f\x8b\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xdb\xe3\x96\x26\xfb\x7f" "\x57\xff\xbf\x35\xeb\xd9\xff\x67\xc6\xab\xff\x1f\xa9\xff\xf7\xfe\xff\xbe" "\x9f\xaf\xff\xd7\xff\x8f\xec\x64\xfb\xff\x3b\x2f\xfe\xcc\xa7\xff\xd7\xff" "\x7b\xff\x3f\xe8\xff\xf5\xff\xfa\x7f\x76\x9b\x5a\xff\x9f\xbb\xff\xfb\xe3" "\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\x03\x71\x8b\xfd\x0f\x00\x00" "\x00\xc3\xc8\xdd\xff\x83\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x43" "\x71\x4b\x93\xfd\x7f\xb4\xf7\xff\xb7\x47\xe9\xff\xcb\x1a\xfa\xff\xad\x6c" "\xd1\xf5\xff\xfa\xff\xdd\x3f\x3e\xf4\xff\xfa\x7f\xfd\xff\xf1\xf3\xfe\xff" "\x72\x9d\xfa\xff\xdb\x9e\xbe\xee\xd6\x17\x1f\xfe\xfa\x47\x0e\xf3\xf9\xfa" "\x7f\xfd\xbf\xfe\x5f\xff\xcf\x7a\x4d\xad\xff\xcf\xdd\xff\xc3\x71\x4b\x93" "\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x91\xb8\xc5\xfe\x07\x00\x00\x80\x61" "\xe4\xee\xff\xd1\xb8\xc5\xfe\x07\x00\x00\x80\x21\xbc\xf0\x4d\xb3\xda\xfd" "\x3f\x16\xb7\x34\xd9\xff\x47\xeb\xff\x87\x79\xff\xbf\x78\xff\x5f\xff\x7f" "\xe9\x1b\xf4\xff\xfa\x7f\xfd\xff\xc6\xd2\xff\x2f\xd7\xa9\xff\xbf\x9a\xcf" "\xd7\xff\xeb\xff\xaf\xe2\xeb\xaf\x5f\x06\xf5\xff\xfa\x7f\xf6\x9a\x5a\xff" "\x9f\xbb\xff\xc7\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\x13\x71" "\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\x7f\x47\xdc\x62\xff\x03\x00\x00\xc0" "\x30\x72\xf7\x9f\x8f\x5b\x9a\xec\x7f\xfd\xff\xf1\xf7\xff\x5f\xd6\xff\x6f" "\x7c\xff\x7f\x66\xa6\xff\xbf\x4c\xff\xaf\xff\x9f\x3e\xfd\xff\x72\xfa\xff" "\x15\xf4\xff\xfa\x7f\xef\xff\xeb\xff\x59\xab\xa9\xf5\xff\xb9\xfb\xef\x8c" "\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x4f\xc6\x2d\xf6\x3f\x00\x00" "\x00\x0c\x23\x77\xff\x4f\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x4f" "\xc7\x2d\x4d\xf6\xbf\xfe\xdf\xfb\xff\xfa\x7f\xef\xff\xeb\xff\x17\x7f\xbe" "\xfe\x7f\x33\xe9\xff\x97\xd3\xff\xaf\xa0\xff\x3f\x6a\x3f\x7f\x46\xff\xaf" "\xff\xd7\xff\x33\xef\x90\xfd\xff\x2b\x4b\x7e\xda\x5e\x4b\xff\x9f\xbb\xff" "\x67\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xb3\x71\x8b\xfd\x0f" "\x00\x00\x00\xc3\xc8\xdd\xff\x73\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd" "\xff\xf3\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xc5\x9f" "\xaf\xff\xdf\x4c\xfa\xff\xe5\x26\xd3\xff\x6f\x6d\x2f\xfc\x66\xfd\xff\xc6" "\xf7\xff\xde\xff\xd7\xff\xeb\xff\xd9\x61\x6a\xef\xff\xe7\xee\xff\x85\xb8" "\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xff\x62\xdc\x62\xff\x03\x00\x00" "\xc0\x30\x72\xf7\xff\x52\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x72" "\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xf1\xe7\x2f\xeb" "\xff\x1f\x99\xfb\xfa\xf4\xff\xd3\xb2\xd6\xfe\x7f\x4b\xff\xef\xfd\x7f\xfd" "\xbf\xfe\x5f\xff\xaf\xff\xe7\x28\xa6\xd6\xff\xe7\xee\xbf\x2b\x6e\x69\xb2" "\xff\x01\x00\x00\xa0\x83\xdc\xfd\x77\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23" "\x77\xff\xaf\xc4\x2d\x73\xfb\x7f\xf7\x3f\x8b\x0a\x00\x00\x00\x6c\x96\xdc" "\xfd\xbf\x1a\xb7\x34\xf9\xfd\xff\xc5\xfd\xff\x95\xff\xbd\xfe\xff\x60\x4e" "\xa8\xff\xdf\xd6\xff\xeb\xff\x2f\xff\xdf\xfb\xf2\x5f\x51\xff\xbf\xb4\xff" "\xbf\xc9\xfb\xff\x3d\x79\xff\x7f\xb9\xd5\xfd\x7f\xfe\x8c\xaa\xff\xd7\xff" "\xeb\xff\xd7\xd2\xff\xcf\xb6\x46\xe9\xff\xcf\xad\xfa\xf3\xf5\xff\x2c\x32" "\xb5\xfe\x3f\x77\xff\xaf\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff" "\xd7\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x37\xe2\x16\xfb\x1f\x00" "\x00\x00\x86\x91\xbb\xff\x37\xe3\x96\x26\xfb\xdf\xfb\xff\x1b\xd5\xff\x7b" "\xff\xbf\x57\xff\x7f\xff\x19\xef\xff\x5f\x32\xc5\xf7\xff\x67\x27\xde\xff" "\x6f\xeb\xff\x0f\x48\xff\xbf\x9c\xf7\xff\x57\xd0\xff\xeb\xff\xbd\xff\xef" "\xfd\x7f\xd6\x6a\x6a\xfd\x7f\xee\xfe\xdf\x8a\x5b\x9a\xec\x7f\x00\x00\x00" "\xe8\x20\x77\xff\x6f\xc7\x2d\xbb\xf6\xff\x73\x27\xfa\x55\x01\x00\x00\x00" "\x07\x36\xff\xcf\x0e\xec\xf3\x88\x7f\xee\xfe\xdf\x89\x5b\xfc\xfe\x3f\x00" "\x00\x00\x0c\x23\x77\xff\xef\xc6\x2d\x4d\xf6\xff\xe0\xfd\xff\x8d\xfb\xfd" "\xdb\xf4\xff\xfa\xff\xf9\xef\xaf\x89\xf6\xff\xfb\xbe\xff\xaf\xff\xbf\xac" "\x57\xff\xef\xfd\xff\x83\xd2\xff\x2f\xa7\xff\x5f\x41\xff\x7f\x1c\xfd\xfc" "\xf6\x60\xfd\xff\x7d\xfb\xfd\xf9\x53\xe8\xff\xef\xd0\xff\x33\x31\x3b\xfa" "\xff\x47\xaf\x7c\xfb\x69\xf5\xff\xb9\xfb\x7f\x2f\x6e\x69\xb2\xff\x01\x00" "\x00\xa0\x83\xdc\xfd\xf7\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xef" "\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x1f\xc4\x2d\x4d\xf6\xff\xb1" "\xf7\xff\xe7\xf6\xff\x6c\xef\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f" "\xdd\xf4\xff\xcb\xe9\xff\x57\xd8\xdd\xff\x5f\xfc\x8f\x86\xfa\x7f\xef\xff" "\x7b\xff\x5f\xff\xcf\x55\xdb\xd1\xff\xcf\x39\xad\xfe\x3f\x77\xff\x1f\xc6" "\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xde\xb8\xc5\xfe\x07\x00\x00" "\x80\x61\xe4\xee\xbf\x2f\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xef\x8f" "\x5b\x9a\xec\xff\xc1\xdf\xff\xdf\x97\xfe\x5f\xff\x3f\xff\xfd\xa5\xff\xd7" "\xff\x2f\xfa\x7c\xfd\xff\x66\xd2\xff\x2f\xa7\xff\x5f\xc1\xfb\xff\xfa\xff" "\xd3\xe8\xff\xe3\x07\x80\xfe\x9f\x11\x4d\xad\xff\xcf\xdd\xff\x47\x71\x4b" "\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\xe3\xb8\xc5\xfe\x07\x00\x00\x80" "\x61\xe4\xee\xff\x93\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\xd3\xb8" "\xa5\xc9\xfe\xd7\xff\x1f\x6f\xff\x9f\xdf\xae\xff\xd7\xff\xcf\xf4\xff\xfa" "\x7f\xfd\xff\x89\x68\xdb\xff\x6f\x2d\xfa\x95\x68\xaf\x7d\xfa\xff\x27\x6f" "\x39\xff\x2d\x3b\xbf\x45\xff\xaf\xff\x1f\xb2\xff\x7f\xfe\x58\xbf\x7e\xef" "\xff\xeb\xff\xd9\x6b\x12\xfd\xff\x85\x2b\xff\xe9\x32\x77\xff\x9f\xc5\x2d" "\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xcf\xe3\x16\xfb\x1f\x00\x00\x00" "\x86\x91\xbb\xff\x2f\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x2f\xe3" "\x96\x26\xfb\x7f\xae\xff\xcf\xe4\x42\xff\xef\xfd\x7f\xfd\xbf\xfe\x5f\xff" "\xaf\xff\xdf\x58\x6d\xfb\xff\x03\xf2\xfe\xff\x72\x2f\xc7\xdf\xaf\xfe\x7f" "\xd4\xfe\xff\x78\xbf\x7e\xfd\xbf\xfe\x9f\xbd\x26\xd1\xff\xcf\xfd\x71\xee" "\xfe\xbf\x8a\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x5f\xc7\x2d\xf6" "\x3f\x00\x00\x00\x0c\x23\x77\xff\xdf\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23" "\x77\xff\xdf\xc6\x2d\x4d\xf6\xbf\xf7\xff\x7b\xf4\xff\xd7\xce\xf4\xff\xfa" "\x7f\xfd\xbf\xfe\xbf\x07\xfd\xff\x72\xfa\xff\x15\xbc\xff\xaf\xff\xd7\xff" "\xeb\xff\x59\xab\xa9\xf5\xff\xb9\xfb\x1f\x88\x5b\x9a\xec\x7f\x00\x00\x00" "\xe8\x20\x77\xff\xdf\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xdf\xc7" "\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x3f\xc4\x2d\x4d\xf6\xbf\xfe\x7f" "\x9f\xfe\x7f\x36\x56\xff\xef\xfd\x7f\xfd\xff\x4c\xff\xaf\xff\x6f\xa2\x45" "\xff\xff\xcc\x61\xff\xaa\x57\x9c\x76\xff\xbf\xe8\xd7\xcb\x79\x27\xd2\xff" "\x3f\xb8\xe4\x0b\x58\xd4\xff\x5f\xb8\x56\xff\xbf\xe1\xfd\xff\xd9\x03\xfe" "\xf9\xfa\x7f\xfd\x3f\xeb\x37\xb5\xfe\x3f\x77\xff\x3f\xc6\x2d\x4d\xf6\x3f" "\x00\x00\x00\x74\x90\xbb\xff\xc1\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee" "\x7f\x28\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xff\x29\x6e\x69\xb2\xff" "\xf5\xff\x3d\xde\xff\xd7\xff\xeb\xff\x67\xfa\x7f\xfd\x7f\x13\x2d\xfa\xff" "\x23\x58\xdc\xff\x5f\xb3\xf7\x9b\xbc\xff\xef\xfd\xff\x81\xfa\x7f\xef\xff" "\xeb\xff\x39\x3d\x53\xeb\xff\x73\xf7\xff\x73\xdc\xd2\x64\xff\x03\x00\x00" "\x40\x07\xb9\xfb\x1f\x8e\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x7f\x89" "\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x47\xe2\x96\x26\xfb\x5f\xff\xaf" "\xff\xd7\xff\xeb\xff\xf5\xff\x8b\x3f\x5f\xff\xbf\x99\x8e\xaf\xff\x9f\x0d" "\xdc\xff\x2f\xa0\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xd6\x60\x6a\xfd\x7f" "\xee\xfe\x7f\x8d\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xbf\xc5\x2d" "\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xbf\xc7\x2d\xf6\x3f\x00\x00\x00\x0c" "\x23\x77\xff\x7f\xc4\x2d\x4d\xf6\xff\x69\xf5\xff\x37\xe9\xff\xf5\xff\xfa" "\x7f\xfd\xbf\xfe\xbf\xbe\x57\xf5\xff\xeb\xe3\xfd\xff\xe5\xf4\xff\x2b\xe8" "\xff\x3b\xf4\xff\x37\x1f\xd7\xd7\xaf\xff\xd7\xff\xb3\xd7\xd4\xfa\xff\xdc" "\xfd\xff\x19\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x47\xe3\x16\xfb" "\x1f\x00\x00\x00\x86\x91\xbb\xff\xbf\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91" "\xbb\xff\xbf\xe3\x96\x26\xfb\xdf\xfb\xff\xfa\xff\x9d\xfd\xff\x6c\x36\xf1" "\xfe\x3f\xff\x9f\x54\xff\xaf\xff\x1f\xa1\xff\x3f\x3b\xd3\xff\xaf\x9d\xfe" "\x7f\x39\xfd\xff\x0a\xfa\xff\x31\xfb\xff\x6b\x66\x03\xbd\xff\x7f\x6e\xdf" "\x3f\x5f\xff\xcf\x14\x4d\xad\xff\xcf\xdd\xff\x3f\x71\x4b\x93\xfd\x0f\x00" "\x00\x00\x1d\xe4\xee\xff\xdf\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff" "\xbf\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\xff\xb8\x65\xf9\xfe\xbf" "\xf7\xd1\xe3\xfd\xb2\x4e\x8c\xfe\x5f\xff\xef\xfd\xff\x71\xfa\xff\xc7\x5e" "\x5a\xfc\xe3\x51\xff\x3f\xd9\xfe\xbf\xbe\x57\xf5\xff\xeb\xa3\xff\x5f\x4e" "\xff\xbf\x82\xfe\x7f\xcc\xfe\xff\x84\xbe\x7e\xef\xff\xeb\xff\xd9\x6b\x6a" "\xfd\x7f\xee\xfe\xc7\xe2\x16\xbf\xff\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xf8" "\xee\xdf\x43\xb5\xff\x01\x00\x00\x60\x18\x8f\x5f\xfa\xd7\xb3\xb3\x57\xc5" "\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xab\xe3\x96\x26\xfb\x5f\xff\xaf" "\xff\xd7\xff\x8f\xd3\xff\x7b\xff\xff\x32\xfd\x7f\x6f\xa7\xd4\xff\x6f\xad" "\xeb\xf3\xf5\xff\xfa\x7f\xfd\xff\xe6\x7e\xfd\xfa\x7f\xfd\x3f\x7b\x4d\xad" "\xff\xcf\xdd\xff\x9a\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x11" "\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x4f\xc6\x2d\xf6\x3f\x00\x00\x00" "\x0c\x23\x77\xff\x6b\xe3\x96\x26\xfb\x5f\xff\xaf\xff\xaf\x7e\xfe\xe2\xdf" "\xb4\xfe\x7f\x63\xfa\xff\xb3\xfa\xff\xe1\xfb\xff\xfc\xca\xf4\xff\x87\x33" "\x95\xf7\xff\x6f\xb8\xe1\x9b\x9f\xd2\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf" "\xfe\xbf\xbb\xa9\xf5\xff\xb9\xfb\x5f\x17\xb7\x34\xd9\xff\x00\x00\x00\xd0" "\x41\xee\xfe\xd7\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x1b\xe2\x16" "\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x8d\x71\x4b\x93\xfd\xbf\xb7\xff\x3f" "\x33\xbb\x5c\xa8\x5e\xb6\xa8\xff\x8f\x46\x4d\xff\x3f\x67\x88\xfe\xdf\xfb" "\xff\x1b\xd5\xff\xcf\xf4\xff\xc3\xf7\xff\xde\xff\xbf\x3a\x53\xe9\xff\xbd" "\xff\x7f\x75\x5f\xff\xd4\xfa\xff\xdb\xf5\xff\xfa\xff\xe3\xea\xff\xaf\xdf" "\xfb\xe7\xeb\xff\x19\xd1\xd4\xfa\xff\xdc\xfd\x4f\xc5\x2d\x4d\xf6\x3f\x00" "\x00\x00\x74\x90\xbb\xff\x4d\x71\x8b\xfd\x0f\x00\x00\x00\x13\xb6\xe8\x9f" "\xc4\xde\x5f\xee\xfe\x37\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xd3" "\x71\x4b\x93\xfd\xef\xfd\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x5f\xfc\xf9\xab" "\xfa\xff\xa4\xff\x9f\x16\xfd\xff\x72\xfa\xff\x15\xbc\xff\xaf\xff\x6f\xf4" "\xfe\x7f\xfc\xfa\x57\x3f\x4f\x55\xff\xff\x55\xfa\x7f\xd6\x67\x6a\xfd\x7f" "\xee\xfe\xb7\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xad\x71\x8b" "\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xb6\xb8\xc5\xfe\x07\x00\x00\x80\x61" "\xe4\xee\x7f\x7b\xdc\xd2\x64\xff\xeb\xff\xd7\xda\xff\x6f\xcf\x7f\x9b\xfe" "\x5f\xff\xbf\xeb\xc7\x87\xfe\x7f\xb0\xfe\xdf\xfb\xff\xd3\xa4\xff\x5f\x4e" "\xff\xbf\x82\xfe\x5f\xff\xdf\xa8\xff\xdf\xcd\xfb\xff\x1c\x87\xa9\xf5\xff" "\xb9\xfb\xdf\x11\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x77\xc6\x2d" "\x07\xda\xff\xe7\x8e\xe9\xab\x02\x00\x00\x00\xd6\x29\x77\xff\xbb\xe2\x16" "\xbf\xff\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x4c\xdc\xd2\x64\xff\x4f\xb5\xff" "\xbf\xe3\x18\xfb\xff\xbb\xb6\xbd\xff\xdf\xab\xff\xbf\x59\xff\xbf\xeb\xf3" "\xf5\xff\xfa\xff\x91\xe9\xff\xf3\x57\xf4\xc5\xf4\xff\x2b\xe8\xff\x0f\xdb" "\xcf\xbf\x3c\xff\x07\xfa\x7f\xfd\xbf\xfe\x9f\xdd\xa6\xd6\xff\xe7\xee\x7f" "\x36\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xef\x8e\x5b\xec\x7f\x00" "\x00\x00\x18\x46\xee\xfe\xf7\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff" "\x73\x71\x4b\x93\xfd\x3f\xd5\xfe\x7f\x43\xdf\xff\xdf\x61\x8a\xfd\xff\xd6" "\xac\x63\xff\xef\xfd\xff\x4b\x7f\xbc\xb5\xa5\xff\xd7\xff\xb7\xa0\xff\x5f" "\x4e\xff\xbf\xc2\x7a\xfb\xff\x3b\x1b\xf4\xff\x3b\xe8\xff\xf5\xff\xfa\x7f" "\x76\x9b\x5a\xff\x9f\xbb\xff\xbd\x71\x4b\x93\xfd\x0f\x00\x00\x00\x9b\xea" "\x5b\xbf\xf1\x3b\x9e\x3d\xe8\xbf\x37\x77\xff\xfb\xe2\x16\xfb\x1f\x00\x00" "\x00\x86\x91\xbb\xff\xfd\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x7c" "\xdc\xd2\x64\xff\xeb\xff\x7b\xf5\xff\x3d\xdf\xff\xd7\xff\x7b\xff\x5f\xff" "\xdf\x89\xfe\x7f\x39\xfd\xff\x0a\xde\xff\xd7\xff\xeb\xff\xf5\xff\xac\xd5" "\xd4\xfa\xff\xdc\xfd\x1f\x88\x5b\xe6\x86\xdf\xf6\xa1\xff\x2e\x01\x00\x00" "\x80\x29\xc9\xdd\xff\xc1\xb8\xa5\xc9\xef\xff\x03\x00\x00\x40\x07\xb9\xfb" "\x3f\x14\xb7\xec\xd9\xff\x17\x0e\xf8\x4f\xb5\x03\x00\x00\x00\x53\x93\xbb" "\xff\x85\xb8\xa5\xc9\xef\xff\x1f\xb9\xff\x9f\x6d\xe9\xff\x8f\xb3\xff\x9f" "\xe9\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xff\x30\xf4\xff\xcb\x1d\xb1\xff\xbf" "\xb0\xa5\xff\xd7\xff\x2f\xa1\xff\xd7\xff\xeb\xff\x99\x77\x6e\x82\xfd\x7f" "\xee\xfe\x0f\xc7\x2d\x4d\xf6\x3f\x00\x00\x00\x0c\x6a\xc7\x7f\xa3\x90\xbb" "\xff\x23\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xd1\xb8\xc5\xfe\x07" "\x00\x00\x80\x61\xe4\xee\xff\x58\xdc\xd2\x64\xff\x7b\xff\x7f\xe2\xfd\xff" "\x55\xbd\xff\x7f\xae\xfe\x27\xfd\x7f\xf3\xfe\xff\xee\xb3\x0b\x3f\x5f\xff" "\xaf\xff\x1f\x99\xfe\x7f\x5f\x5f\x13\xb7\xd3\xfb\xff\x17\xbe\x5a\xff\x7f" "\x28\xa7\xdd\xcf\x6f\xfa\xd7\xaf\xff\xd7\xff\xb3\xd7\xd4\xfa\xff\xdc\xfd" "\x1f\x8f\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x27\xe2\x16\xfb\x1f" "\x00\x00\x00\x86\x91\xbb\xff\x93\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd" "\xff\xa9\xb8\xa5\xc9\xfe\xd7\xff\x8f\xd8\xff\x7b\xff\x5f\xff\xbf\xfc\xf3" "\xc7\xe9\xff\xbf\xee\xba\xf3\x4f\x7c\xdb\xb7\x3f\xf4\x80\xfe\x9f\x2b\x4e" "\xb2\xff\xcf\x1f\x0b\x1b\xd2\xff\x5f\x72\xc4\xf7\xff\x37\xad\xff\x3f\xcc" "\xe7\xdf\x73\xe9\x5f\xf5\xff\xfa\x7f\xfd\xff\xa1\xfb\xff\xeb\xe3\xea\xff" "\x59\x64\x6a\xfd\x7f\xee\xfe\x4f\xc7\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90" "\xbb\xff\xc5\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x4c\xdc\x62\xff" "\x03\x00\x00\xc0\x30\x72\xf7\xbf\x14\xb7\x34\xd9\xff\x1b\xd5\xff\x7f\x83" "\xfe\x7f\xe4\xfe\x3f\xbf\xaf\x4f\xa1\xff\x3f\xbf\x79\xfd\x7f\x36\xc5\xdd" "\xfb\x7f\xef\xff\xeb\xff\xf7\xf2\xfe\xff\x72\xfa\xff\x15\xf4\xff\xfa\x7f" "\xfd\xbf\xf7\xff\x59\xab\xa9\xf5\xff\xb9\xfb\x3f\x1b\xb7\x34\xd9\xff\x00" "\x00\x00\xd0\x41\xee\xfe\xcf\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff" "\xe7\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xe5\xb8\xa5\xc9\xfe\xdf" "\xa8\xfe\xdf\xfb\xff\x43\xf7\xff\xe9\x6a\xfa\xff\xfc\x7c\xef\xff\xeb\xff" "\x67\xfa\xff\xf6\xf4\xff\x73\xb6\xf7\x7e\x93\xfe\x7f\x05\xfd\xbf\xfe\x5f" "\xff\xaf\xff\x67\xad\xa6\xd6\xff\xe7\xee\xff\x42\xdc\xd2\x64\xff\x03\x00" "\x00\x40\x07\xb9\xfb\x5f\x89\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x2f" "\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x97\xe2\x96\x26\xfb\x5f\xff" "\xaf\xff\x1f\xa1\xff\x3f\xe2\xfb\xff\xa7\xd3\xff\x5f\xfc\xe9\x46\xff\xaf" "\xff\xd7\xff\xaf\x9d\xfe\x7f\x39\xfd\xff\x0a\xfa\x7f\xfd\x7f\xfb\xfe\xff" "\x16\xfd\x3f\x6b\x35\xb5\xfe\x3f\x77\xff\x57\x02\x00\x00\xff\xff\x61\x70" "\x62\x1a", 25328); syz_mount_image(/*fs=*/0x200000000040, /*dir=*/0x200000000080, /*flags=MS_POSIXACL|MS_RELATIME|MS_NODEV*/ 0x210004, /*opts=*/0x2000000002c0, /*chdir=*/3, /*size=*/0x62f0, /*img=*/0x20000000cc80); // openat$cachefiles arguments: [ // fd: const = 0xffffffffffffff9c (8 bytes) // file: nil // flags: open_flags = 0x280080 (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0ul, /*flags=O_PATH|O_EXCL|O_CLOEXEC*/ 0x280080, /*mode=*/0); // openat arguments: [ // fd: fd_dir (resource) // file: nil // flags: open_flags = 0x143042 (4 bytes) // mode: open_mode = 0x0 (2 bytes) // ] // returns fd syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0ul, /*flags=O_SYNC|O_NOATIME|O_CREAT|FASYNC|O_RDWR*/ 0x143042, /*mode=*/0); // syz_mount_image$btrfs arguments: [ // fs: ptr[in, buffer] { // buffer: {62 74 72 66 73 00} (length 0x6) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 62 75 73 00} (length 0x6) // } // flags: mount_flags = 0x0 (8 bytes) // opts: ptr[in, fs_options[btrfs_options]] { // fs_options[btrfs_options] { // elems: array[fs_opt_elem[btrfs_options]] { // } // common: array[fs_opt_elem[fs_options_common]] { // } // null: const = 0x0 (1 bytes) // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x559d (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x559d) // } // ] // returns fd_dir memcpy((void*)0x2000000055c0, "btrfs\000", 6); memcpy((void*)0x200000000180, "./bus\000", 6); *(uint8_t*)0x200000000440 = 0; memcpy( (void*)0x200000005680, "\x78\x9c\xec\xdd\x7d\x6c\x55\x67\x1d\x07\xf0\x73\x7b\x29\xe5\x25\xa1\x65" "\xca\x32\xd4\x85\xf9\x0f\x4e\x10\xa9\x98\x58\x84\xa0\x45\x60\x02\x83\xd1" "\x81\x26\xc3\xc0\x28\x0e\xd8\x10\x06\x85\x04\x61\x63\xd3\x8e\x39\x9d\x23" "\x93\x86\x39\xc6\x8a\x2f\x0c\xa4\x02\xc6\xae\xbe\xac\x98\x98\x21\xba\x88" "\x71\x4e\x26\x8b\xc3\x86\x11\x79\xc9\x22\xe2\x02\x2b\x8c\xa8\x24\xd3\x99" "\xde\x7b\x9f\xcb\xbd\xe7\xd2\xf6\x0e\xe7\x3a\xb7\xcf\x87\xb4\xe7\x3e\xf7" "\x77\x9e\xe7\x3c\xf7\xe4\xfc\x71\xbf\x97\x3e\xe7\x46\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x45\xd1\xc1\xe5\x0b\xfe\xb6\xee\x07\xcb\xbf\xf9\xd0" "\x75\x27\xa7\x6c\xbc\xff\xcc\x03\x27\x6a\x9e\x7b\x7c\xd3\xf8\xbb\xe7\xec" "\x1e\x75\xf8\x81\x55\x57\xb6\x9d\x6e\x6a\x2a\x7d\xf5\xf9\xb3\x37\x2c\xba" "\xef\xe1\xaa\xa1\x27\xf6\xcc\x3f\x14\x45\x89\x54\xbf\x44\xa6\xff\xbc\x4f" "\x4d\x9e\xb9\x68\xd6\xbc\xe9\x7d\xc2\x80\xb5\x37\xa6\xb7\x15\x15\x9d\x1d" "\x32\xdd\xf5\x58\xba\xd1\x3b\xef\xc9\x8e\x7e\xf9\x3f\xf3\xa3\x28\x2a\x8d" "\x0d\x90\xcc\x6c\x27\xf5\xcf\x69\x27\xe2\x07\x88\x56\x16\x0e\xd8\xa5\xed" "\x55\x63\x56\x0d\xdc\x38\x71\xda\xe6\xb2\xc9\x83\x16\x26\xeb\x1a\x0b\x5f" "\x3a\x1d\xfa\xf4\xf4\x04\x7a\x4a\xe6\xba\x7a\xf1\xe2\xb5\x54\x9d\xfa\x5d" "\x12\xdb\x23\xdb\xce\xb9\xf4\x12\x79\x97\x68\xba\x7f\xfc\x82\x7b\x53\x5e" "\x04\x00\xf0\xba\x54\xd6\xa4\x36\xd9\xb7\xa3\x99\xb7\xb8\xd9\x76\x7d\xbc" "\x1e\x6b\x57\xc7\xda\x0d\xb1\x76\x78\x87\xd0\x90\xdb\xb8\x1c\xe9\x71\x7b" "\x77\x36\xcf\x6b\xe2\xf5\x1e\x9a\x67\x75\x3a\x2a\x94\x75\x3a\xcf\x58\x3d" "\x73\xfe\xb3\xed\x9a\x78\xff\x58\x3b\x16\x35\x5e\xc7\x3c\xf3\x77\xcd\x44" "\x9a\x3e\x9d\xcd\xb3\x2e\x56\xef\xa9\x79\x02\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xbc\x95\xdc\x7d\xfc\x96\xa7\x4b\x36\xfd\xe8\x7d\x4b" "\xd7\x8f\x4c\x1e\x1f\x3c\xec\x17\x5f\x6d\xda\xf2\xbd\x49\xed\xe5\x53\xbe" "\xb6\x6f\x43\xdb\xef\x5b\x9f\x7b\x4f\x53\x53\xe9\xab\xcf\x9f\xbd\x61\xd1" "\x7d\x0f\x57\x0d\x3d\xb1\x67\xfe\xa1\x28\xaa\x48\xf5\x4b\xa4\xbb\x27\xe6" "\xee\x68\xdd\xf0\xb3\x15\x53\x56\xff\x7c\xce\xa3\xcd\xe7\xde\x7b\xc7\xae" "\x64\x66\xdc\xb0\xed\x95\xb3\x73\xd4\x16\x1e\x7c\xbc\x3c\x8a\x3e\x9f\x53" "\x79\x31\x0c\x7b\x6a\x40\x14\xd5\xe4\x17\x52\xcd\xe8\xd1\xc2\xc2\xe2\xd4" "\x83\x29\xa1\x00\x00\x00\xc0\xdb\xc9\xe0\xd4\xef\x92\x6c\x3b\x1d\x07\x4b" "\xf3\xda\x89\x54\x9a\x4c\xa4\xfe\x05\xe9\xb0\xb8\xbd\x6a\xcc\xaa\x81\x1b" "\x27\x4e\xdb\x5c\x36\x79\xd0\xc2\x64\x5d\xe3\xe5\x8f\x57\xd3\xc9\x78\xd5" "\x97\x1c\x2f\xdb\xae\xb8\xf8\x93\xc8\x09\xc6\x21\xfe\xc6\xc7\xbb\x58\x0f" "\xbb\xae\x2c\x18\xa7\x6b\xf1\x11\xe3\x79\x7e\xd4\xd0\x0b\x87\x8f\x7c\x7d" "\xf9\x86\xb5\x8d\xfd\x4f\xee\xef\x3b\x30\x39\xe9\x57\x5f\xae\x1d\x7c\xc5" "\x9c\xd1\xaf\x5c\x3b\x76\xcc\x6d\x7f\x7d\x64\x47\x41\xfe\xaf\xe8\x3a\xff" "\x87\x33\x27\xff\x03\x00\x00\xf0\xdf\x90\xff\xe3\xe3\x74\xad\xbb\xfc\x3f" "\xec\xc8\xfd\x67\xee\x3a\xf5\xd3\x75\xb5\x9f\xd9\x36\xf7\xf8\xf8\x6f\xd4" "\x0e\x78\x57\xe5\x9a\x3f\x35\x7f\xf8\x73\xeb\x87\x4d\x9d\xd8\xeb\xd8\x95" "\x5b\x0a\xf2\xff\x35\x79\x87\x2c\xc8\xff\x61\xc6\x21\xff\x97\x44\x97\x97" "\xff\x01\x00\x00\xe0\xad\xec\x7f\x9d\xff\xab\x0b\xc6\xe9\x5a\x77\xf9\x7f" "\xd9\x9a\x11\x7f\x9f\x76\x61\xd6\xc4\x27\xc6\x5d\xf8\xe1\x99\x3b\x87\xfc" "\xf2\xe0\x91\x68\x6f\xfd\x88\x2f\xb4\xdc\xfe\x81\xfd\xb3\xfb\x0d\x68\xf8" "\x49\x41\xfe\xaf\x2c\x2e\xff\xf7\xca\x9d\x76\x78\xf2\x99\x30\xe1\x25\xe5" "\x51\x54\x59\xfc\x49\x05\x00\x00\x00\xf2\x84\xff\x77\xbf\xf8\xd1\x42\xc8" "\xeb\xe9\x4f\x0e\xe2\x79\x7d\xce\xf9\x83\x93\x6e\x2e\x7d\xf0\xec\x47\x66" "\x5f\x3b\x74\xdb\xd1\x21\xbb\xda\xcf\xff\x63\xc9\xf2\x4d\x17\x46\x37\xcf" "\x18\x5e\xf5\xe9\xa7\x2b\x36\x14\xe4\xff\xea\xe2\xf2\x7f\xe9\x9b\xf3\x72" "\x01\x00\x00\x80\x22\x3c\xb5\xf8\x13\x37\xed\x8c\xa6\x4f\xfa\x50\xf5\x3d" "\x87\xf7\x2f\xd8\xfe\x48\xfd\xb2\xb5\x2b\x97\x36\x96\x25\xa6\xfe\x7b\x65" "\xdb\xf5\xff\x6a\xee\x5d\x90\xff\x6b\x8a\xcb\xff\x65\x3d\xf3\x72\x00\x00" "\x00\x80\x4b\x38\xf4\xa5\x6d\xbb\x5f\x9b\xb9\xac\x75\x78\x73\xd9\xf9\xad" "\x7f\x78\xed\xcf\x8f\x5f\x3d\x7c\xf5\x81\xa6\xca\xa3\x2b\x7f\x3b\xb0\x74" "\x45\x6b\xed\xe2\x82\xfc\x5f\x5b\x5c\xfe\xef\x97\xd9\x66\x56\x3e\xa4\x3b" "\xed\x0f\x7f\x85\xf0\x50\x79\x14\xf5\xe9\x78\x50\x97\x2e\xfc\x26\x6a\xf8" "\x64\xb6\x00\x00\x00\x00\xbc\x41\x42\x4e\xff\xe7\xb1\xb6\x91\x3b\xaf\x2b" "\xfb\xf5\x53\xdf\x7f\x79\xf3\xac\xef\x7c\x7b\xd0\xde\x6f\xcd\x38\xd8\xf8" "\xdd\x09\xfd\x6f\x99\xf8\xe0\x81\x19\x07\x9e\xac\x2d\xc8\xff\x75\x5d\xdf" "\xff\x3f\xdc\xe9\x20\xac\xff\xcf\xbb\xff\x5f\xc1\xfa\xff\x9c\x42\xfa\xae" "\x7f\x63\xdd\x18\x00\x00\x00\x80\x77\xa2\xc2\xf5\xfc\xe1\xf6\xf8\xe9\x6f" "\x2e\xe8\xec\xfb\xf7\x8b\x5d\xff\x7f\xe3\x17\x5b\x5f\x3a\x7e\xfb\xfc\xaf" "\xb4\xbf\x7b\xc8\x4d\xcb\x5e\xbe\xed\x8a\x5b\x3f\x36\xfe\xd4\x1f\xa7\xdf" "\x99\xdc\x39\xee\xae\x92\xa9\x53\x5f\x3a\x5d\x90\xff\xeb\x8b\xcb\xff\xc9" "\xdc\xed\x1b\xf9\xfd\x7f\x00\x00\x00\x70\x19\xfe\xdf\xbe\xff\x6f\x76\xc1" "\x38\x5d\xeb\xee\xfe\xff\x33\x1f\xbb\xe7\x68\xfb\x5f\x5e\x18\x37\x62\x66" "\xe3\xda\x45\x27\xc7\x6f\xfc\xf1\xbc\x2d\xcf\x3c\xb6\xbb\xea\xea\x73\x0b" "\x6e\xee\xfb\xc1\x67\x97\xee\x2d\xc8\xff\x0d\xc5\xe5\xff\xb0\xed\x9f\xfb" "\xf2\xf6\x85\xf3\x73\x6f\x79\x14\x5d\xd5\xf1\x20\x73\x37\xc1\x5d\x61\xba" "\x4b\x62\x85\x96\xd2\x9c\x42\xfa\xc4\xc7\x7a\xcc\x0a\x3d\x32\x85\x96\xb2" "\x9c\x42\x4a\x5d\xac\xc7\xa8\xf2\x28\x7a\x7f\xc7\x83\xfa\x58\x61\x60\x28" "\x34\xc4\x0a\xed\x03\x32\x85\xad\xb1\xc2\xb3\xa1\x90\xb9\x1e\xb2\x85\xe6" "\x58\x61\x5f\xb8\xd2\x36\x0d\xc8\x4c\x37\x5e\xd8\x13\x0a\x99\x05\x16\x2d" "\x61\x05\x45\xff\xec\x92\x88\x58\x8f\x57\x3a\xeb\xd1\x51\xb8\x64\x8f\x17" "\xb2\x07\x07\x00\x00\x78\x47\x09\xe1\x39\x93\x65\x4b\xf3\x9b\x51\x3c\xca" "\xb6\x24\xba\xdb\xa1\x5f\x77\x3b\x94\x74\xb7\x43\xb2\xbb\x1d\x7a\xc5\x76" "\x88\xef\xd8\xd9\xf3\x51\x6d\x7e\x21\x3c\x7f\x7e\xcd\x13\xbf\xab\xfc\x68" "\xc9\x67\x0f\xdd\x7a\xc7\x84\xe1\x23\x17\xae\xbb\xb7\x61\xec\x81\xe4\xdc" "\x09\xd7\x3f\xb9\xa3\xef\xb9\x15\xa7\x47\xaf\x2e\xc8\xff\x5b\x8b\xcb\xff" "\xe1\x54\xf4\x4e\x6f\x3a\x5b\xff\x1f\x85\xf5\xff\x99\xef\x35\xcc\xae\xff" "\xaf\x0d\x85\x8a\x58\xa1\x25\x14\x6a\xe2\x77\x0c\xa8\x09\xc7\x48\x87\xdd" "\xf5\xe1\x18\x15\x35\x99\x1e\xed\x57\x65\x0b\x00\x00\x00\xf0\xb6\x16\x3e" "\x17\x48\xf6\xf0\x3c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0" "\x3f\xec\xdd\x7b\x9c\x54\xd5\x9d\x20\xf0\xd3\x4d\x3f\x68\x68\x9a\x16\xe3" "\x2b\x62\x6c\x75\x6d\x45\x87\xa6\x41\x51\x3f\xc1\x07\x6a\x26\x1a\x60\x4d" "\xa3\xec\xcc\xb8\xf8\x68\x84\x46\x91\x56\x10\x61\x22\xae\x51\x50\xb3\x9b" "\xc4\xc1\x28\x2a\x51\x67\x46\x61\x15\x46\x56\x71\xf0\x05\x64\x35\x01\x35" "\xa2\x89\x68\x34\x8e\x66\x46\x1d\x43\x30\x6a\xdc\x8d\x1f\xc5\x88\x7e\xb2" "\xc6\xb8\x9f\xee\x5b\xa7\xa8\xba\xd5\x65\x17\x02\x4a\x3b\xdf\xef\x1f\x5d" "\xa7\xea\x77\x9e\xb7\x1e\x5d\xe7\xde\x5b\xe7\x02\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xff\x31\xac\x7f\xf4\xc6\x23\xfe\xe9\xa2\x27\x47\x8f" "\xda\x30\x6f\xc0\xf2\x57\x0e\xff\xef\x1f\xd6\x1f\xba\x6c\xd1\x3b\xff\xeb" "\x4f\xcf\x5e\x77\xdb\xde\xf3\xbe\xb7\x7e\xd5\x92\x25\x95\x7f\x7a\x7e\xe3" "\x49\x93\xbf\x73\xc3\xe1\x8d\x1b\x56\x4e\x78\x21\x84\x96\xce\x72\x65\x49" "\xf1\xb2\xd3\x17\xaf\xf8\xc1\xaa\x0b\xbe\xf1\xad\x07\x4f\xbb\xe9\xee\x77" "\xf7\x9c\xbd\xb4\x2a\x53\x6f\x26\x1e\xfa\x76\xfc\x29\xcf\xdc\xb9\x32\xb6" "\xfa\xdb\x7e\x21\xac\x2c\x0b\xa1\x22\x1d\x18\x5c\x9b\x04\x2a\x33\xf7\x6b" "\x63\x7d\x03\x6b\x43\xd8\x29\x6c\x0e\x64\x4b\xb4\xf5\x49\x4a\xa4\x1b\x0e" "\x8f\xd5\x84\xb0\x30\x6c\x0e\x64\xab\xfa\x51\x4d\x08\xb5\x39\x81\x71\xbf" "\x7c\x64\xf5\xbc\x8e\xc4\xf5\x35\x21\xec\x1f\x42\xa8\x4e\xb7\xf1\xef\xd5" "\x49\x1b\x35\xe9\x40\x63\x55\x12\xe8\x93\x0e\x4c\xab\x48\x02\x1f\x7c\x9c" "\xc8\x06\x56\x95\x27\x01\xd8\x6a\xf1\xcd\x90\x7d\xd1\x2f\x6f\xc9\xcf\x50" "\xdf\x75\xb9\x22\xaf\xbf\xca\x6d\xd6\xb1\xcf\x57\x7a\x78\xbd\x62\xa2\xbe" "\x78\xbe\xb7\x8e\xdd\xce\x9d\xca\x51\x95\x7e\xa0\x65\xab\x9e\xb6\x82\xea" "\xd8\x2e\x0a\xde\x1e\x6b\xbc\xdb\x7a\xc0\xbb\xad\x60\x3b\x5f\xe3\x69\xcb" "\xfd\x22\x95\xf9\x86\xf2\xf1\xe6\x50\x75\x28\x9f\xd4\x36\x79\xc2\xac\xf6" "\x99\xf1\x91\xf2\xd0\xd4\xd4\xab\x58\x4d\xdb\xe9\x79\x7e\x71\xe3\x25\x13" "\xb7\x24\xdd\x63\x5e\x87\xb1\x03\xf5\xdb\xe4\x75\xf8\xf8\xf9\x03\xef\x5c" "\xd0\x38\x66\xd7\x9b\x1f\xde\x30\xf9\xf5\xaa\x67\x17\x6c\x6d\x37\x8b\x6d" "\xde\xed\xad\x3a\x64\x5e\x73\x3d\xe6\x79\x8c\x46\xfa\x3c\xe9\x01\x6f\xbf" "\x82\x6f\x49\x0d\xbe\x74\x85\x10\x6e\x3f\x7e\xd3\xdb\xbf\x7d\x69\xec\xff" "\xfd\xd5\x83\x4f\x0f\x7e\xef\x9b\x43\xcf\x1a\xf2\xc2\x2b\x43\xeb\x6e\xfe" "\xee\xb4\x7e\x7f\x7d\xf6\xff\xa9\xbc\x65\xea\xc6\x82\xf9\x7f\xfd\x27\xcf" "\xff\xe3\xcb\x39\xde\x96\xe7\xe5\x8e\xad\x7e\x58\x97\xcc\xcd\xe3\x23\xb5" "\x31\xf1\x76\x5d\x32\x37\x07\x00\x00\x80\x1e\xa3\x27\xec\x35\x7d\x63\xc4" "\x41\x6f\xd7\xae\x6b\x78\x78\xdf\xaf\xaf\x98\x7c\xde\xa2\x79\xaf\x9d\x7e" "\xee\x9f\xab\x7e\xda\x77\xc2\x41\x27\x9e\x32\xf4\xfb\x77\xdc\x38\xf5\xb4" "\x82\xf9\x7f\x43\x69\xc7\xff\xe3\x21\xff\xda\xdc\xd1\xae\x09\x61\x64\x67" "\xe2\x8a\xfe\x21\xec\xde\xf9\x78\x12\x58\x1a\xbb\x73\x56\xff\x10\xf6\xe9" "\x4c\xb5\xe4\x07\x8e\x4d\x05\xd6\x84\xb0\x47\x67\x62\x50\xb6\xaa\x54\x89" "\xde\xb1\x44\x43\x2a\xf0\x46\x5d\x26\x30\x32\x15\x58\x1b\x03\x2d\xa9\xc0" "\xe2\x18\xb8\x26\x15\xb8\x32\x06\x96\xa7\x02\x13\x63\x60\x4d\x2a\x70\x5c" "\x0c\x84\x29\xf9\xe3\x38\xa8\x2e\x33\x8e\x92\x03\x35\x31\xd0\x9a\x6c\xc4" "\xe5\xf1\x2c\x84\x3f\xd4\xc5\xd6\x52\xdb\xea\xa5\x6c\x55\x00\x00\x00\xdb" "\x48\x66\x76\x58\x99\x7f\x37\xe7\x5c\x87\xad\xcd\x10\xa7\x97\xcb\x6b\xba" "\xcb\x10\xcf\xc0\x2e\x9a\xa1\x3a\x55\x43\x7a\x06\x9b\x9d\x56\x15\xad\xa1" "\xa2\xbb\x1a\xca\xbb\xab\x21\x3b\xee\x39\x9f\x3c\xfc\x82\x9a\xcb\xba\xab" "\xb9\xe0\x34\x8c\xb2\xfc\x0c\xef\x1d\x78\xdf\xdc\xd5\x0f\xfc\xdb\x8f\x6f" "\x9c\x70\xd8\x53\x07\x7d\xd8\x7a\xc6\xcb\xeb\x57\x3d\x3a\x7a\x53\xaf\xbf" "\x7b\x67\xcc\x8f\x2f\x1d\x37\x7f\xd8\xf8\x82\xf9\x7f\xf3\x27\xcf\xff\xab" "\xbb\xe8\x48\x59\xc1\xf1\xff\x10\xc6\x76\xfe\x8d\xb9\xcb\x33\x91\xf6\x6c" "\xbc\xb5\x25\x2f\x03\x00\x00\x00\xb0\x15\x2a\x5e\x5b\x7a\xf2\x2f\xe6\x7e" "\x54\xb6\xe4\x67\xe7\x6c\xdc\xff\x2f\x4f\x1b\x77\x75\xef\x15\xfb\xee\x3b" "\x60\xed\xc1\xf7\xfd\xbf\x86\x37\x07\x1c\xbf\x6a\xff\x82\xf9\xff\xc8\xd2" "\xce\xff\x8f\xfb\x44\x7a\xe5\x64\x0e\xeb\xe2\x6e\x88\xa9\xfd\x43\x68\xce" "\x0f\x24\xd5\x8e\x28\x0c\x24\x47\xbd\xfb\x66\x02\x00\x00\x00\xd0\x13\x64" "\x8f\xc7\x67\x8f\x85\x4f\xc9\xdc\x26\xa7\x68\xa7\xe7\xd3\x85\xf9\x5b\xb6" "\x30\x7f\x3c\xf0\x3f\xb2\xcb\xfc\x83\xc7\x5d\xbd\xae\x79\xf5\xed\xa7\x4c" "\x19\x71\xe8\x9a\x35\x9b\xce\xd8\xf5\xe5\x65\x1b\x9e\xda\x65\xff\x77\x5e" "\x38\xf0\xe4\xd3\x4f\xb8\x7f\x6a\xc3\x3d\x05\xf3\xff\x96\xd2\xce\xff\xef" "\x93\x7f\x9b\x74\x62\x6d\xec\xc5\x75\xfd\x43\xe8\x9d\x13\x78\x3c\xf6\xb2" "\x23\xd0\xa9\x21\x06\xd6\x1f\x93\x1f\xc8\x8c\x7f\x6d\xdc\x00\x57\xc5\xaa" "\x32\x27\x26\x64\xab\xba\x2a\x96\x68\x8d\x81\xe6\x54\x60\x61\xb1\x12\xcf" "\x64\x4b\xec\x9e\x1f\xc8\x3c\x59\xd9\xc6\xaf\xc8\x8e\x63\x4a\xa6\x44\x4e" "\x00\x00\x00\x00\x3e\x73\x71\x77\x40\x3c\x2e\x1f\xcf\xff\x7f\xfa\xdc\x7e" "\x8f\xfe\xe3\xb2\x5b\x2e\x79\x70\xc9\xba\xd0\xf7\xec\xe5\xbf\xb8\xec\xe8" "\xe1\x03\xe7\x0f\xee\xfd\xd6\xb4\x67\x0e\x79\xe4\x6f\xdf\x3d\x79\x6a\xc1" "\xfc\xbf\x75\xcb\xce\xff\xef\x9c\x07\x17\x9c\xde\xdf\xde\x37\x84\x21\x15" "\x21\xf4\x4a\xff\x30\x60\x5d\x9f\x64\x61\xc0\x18\xa8\x2d\xcb\x24\x7e\xdc" "\x27\xa9\xab\x57\xba\xaa\xcb\xfb\x84\x30\xa2\x63\x60\xe9\xaa\x36\x64\xd6" "\xff\xaf\x48\xaf\x31\xf8\x5c\x4d\x52\x55\x0c\xec\xbe\xef\x1d\x1b\x1b\x3b" "\x12\xb7\xd7\x84\x30\x24\x37\xf0\xc2\xf8\x45\xc3\x3b\x12\xb3\x52\x81\x6c" "\xe3\x7f\x55\x13\xc2\xde\x1d\xa3\x4d\x37\xbe\xa2\x77\xd2\x78\x65\xba\xf1" "\x1b\x7b\x87\xf0\x95\x9c\x40\xb6\xaa\x89\xbd\x43\xe8\x68\xac\x2a\x5d\xd5" "\xa3\xd5\x99\xeb\x18\xa4\xab\x5a\x5e\x1d\xc2\xce\x39\x81\x6c\x55\x87\x57" "\x87\x30\x3b\x00\xd0\x53\xc5\xff\xa5\x93\x72\x1f\xbc\x70\xf6\xc5\x53\x27" "\xb4\xb7\xb7\xcd\xd8\x8e\x89\xb8\x13\xbf\x26\x4c\x9e\xd2\xde\xd6\x34\x71" "\x5a\xfb\xa4\xea\x22\x7d\x9a\x94\xea\x73\xde\x3a\x46\x73\x0b\xc7\x54\xea" "\xa5\x6f\x5e\xce\xac\x51\x74\xd7\xa8\xa6\xfe\xa5\xa4\xb3\x3f\x14\x6c\xce" "\x6d\x2b\xb3\x23\xbf\xe0\xcc\xc1\xcc\xfd\xf8\x65\xa8\xb2\x73\x9c\xc3\x2a" "\xf3\xee\x1e\x92\x1e\xf2\x81\xfb\x15\x36\x11\x72\xbe\x4a\x15\x1b\x72\xf9" "\x76\x1e\x72\x9f\xdc\x4a\x36\x3f\x89\x05\xf5\xc7\xfc\x55\xa1\x6f\xe8\x3d" "\xeb\xc2\xb6\x19\x4d\x17\x4d\x98\x39\x73\xc6\xd0\xe4\x6f\xa9\xd9\x87\x25" "\x7f\xe3\x71\xa6\x64\x5b\x0d\x4d\x6f\xab\x3e\x5d\xf5\xad\x84\x97\x47\xd1" "\xe5\xb2\x52\x3e\xed\xb6\x6a\xcc\xad\x64\xc8\xcc\xf3\xa6\x0f\xb9\x70\xf6" "\xc5\x83\xa7\x9c\x37\xe1\xec\xb6\xb3\xdb\xce\x3f\x6c\xf8\x61\x47\x1c\x31" "\xec\xd0\x43\x87\x0f\xe9\x18\x54\x73\xf2\xb7\x9b\x91\x36\x76\x55\x73\x6a" "\xa4\x1f\x2f\x2a\x71\x58\xdb\x70\xa4\x5f\xae\xc8\xa9\xe4\xb3\xf8\xd0\x90" "\x90\x90\xe8\x69\x89\x55\xbf\xdb\xe3\xe5\xa3\x77\x59\xfa\xbd\x15\xb7\x2c" "\x9e\xf1\xf3\xf6\xa3\xda\x7e\xfe\xf5\x9d\x77\x1e\xb3\xa4\xea\x9b\x2f\x6c" "\xba\xf4\xb2\xfd\x9f\xfe\x1f\x1f\x14\xcc\xff\xa7\x7f\xf2\xfc\x3f\x7e\xea" "\xc4\x0f\xfe\xcc\xfa\x0c\xc5\x8e\xff\xd7\xc7\xc3\xfc\xc9\xe3\x9b\x0f\xf3" "\xb7\xc6\xc0\xc2\x52\x8f\xff\xd7\x17\x3b\x9a\x9f\x3d\x31\xa0\x21\x15\x98" "\x13\x03\x73\x1c\xe6\x07\x00\x00\xe0\x8b\x21\xee\x8e\x8c\x7b\x33\xe3\x4e" "\xe9\x47\xe6\xef\xf6\x2f\x77\x8e\xbb\x6f\xcc\xfc\xf5\x07\x3f\xb9\xee\xb9" "\xb2\xf5\x7d\x0e\xfe\xfb\x0f\x7f\x5f\x5e\x79\xd9\xb8\xff\x72\xcc\x03\x0d" "\xb7\x7d\xf7\x6f\x0a\xe6\xff\x73\x4a\xfb\xfd\xff\x36\x5a\xff\x3f\xbb\x74" "\xfd\xa8\x62\xcb\xfc\x0f\x8a\x25\x9a\x8b\xad\xff\x9f\x5e\xe6\x3f\xbb\xfe" "\xff\x9c\x62\xeb\xff\xa7\x97\xf9\xcf\xae\xff\xbf\xf0\x73\x58\xff\x7f\x56" "\x36\x90\xda\x24\x7f\xb0\xfe\x3f\x00\x00\xf0\x45\xf0\xd9\xad\xff\xdf\xed" "\xf2\xfe\xe9\x0b\x04\x14\x64\xe8\x76\x79\xff\xf4\x05\x02\x0a\x32\x74\xbb" "\x8c\x7f\xa9\x17\x08\xd8\xe2\xf5\xff\x1f\x69\x38\x68\xe4\x4f\x56\x7f\xe7" "\x37\x8d\xcb\x2e\x98\xf6\xce\x7f\x1b\x72\xdf\xe8\x01\x7b\x36\xfc\xee\x91" "\xbd\xae\x9c\x34\x75\xe4\xe8\xd1\x23\x06\xff\x4b\xc1\xfc\xff\x9a\xd2\xe6" "\xff\x16\xee\x07\x00\x00\x80\x1d\xc7\x01\x13\x8f\x7d\x6a\xe3\xa4\xbd\x8f" "\xbd\xfa\x7f\xde\xb6\xd3\x1e\x3f\x69\xfd\xf6\xae\x87\xed\xf2\xfd\x65\x47" "\xb6\xcd\xdf\xb4\x7e\xe2\xdf\xdc\xf6\xee\x39\x7f\x5d\x30\xff\x5f\x58\xda" "\xfc\xff\xb3\x5f\xff\x2f\x14\x3b\xff\xbf\xa1\x58\xa0\xa5\xd8\xc2\x80\xd6" "\xff\x03\x00\x00\xa0\x87\x2a\xb6\xfe\xdf\xd0\x1b\xbf\x75\xf9\xab\x8b\x8f" "\xbb\xff\x9e\xcb\xa7\x8d\x6a\x6d\x1d\x3f\xfb\x8a\xab\xf7\x5b\x7d\x40\xf5" "\xa9\xe1\xa5\xd1\xf3\x1b\xfe\x62\xc6\xbd\x1f\x15\xcc\xff\x97\x97\x36\xff" "\x8f\xa7\x5d\x94\xe7\xe5\x8e\xbd\xf9\xb0\x2e\x59\xd3\x2e\xa4\xd7\xb4\x7b" "\xbb\x2e\xfb\x93\x01\x00\x00\x00\xe8\x19\xca\x43\x53\x53\x65\x89\x79\xf3" "\x16\x46\x3d\xf6\xd3\xb7\xf9\x62\x66\x29\xd0\x4f\x4a\xe7\x7a\xf2\xc1\xfd" "\x9e\x7f\xe0\xab\x23\x4e\x9c\xbf\xb8\xea\xea\xd7\xca\x76\x1b\xf6\xf1\x53" "\xd7\xcf\x3c\xf8\xf8\xaf\xfd\xf0\xd5\x8d\x7b\x5d\x72\xc7\xb9\xe7\xed\x57" "\x30\xff\x5f\x53\xda\xfc\x3f\xef\x77\x19\x8f\x9f\x3f\xf0\xce\x05\x8d\x63" "\x76\xfd\xf0\xe6\x87\x37\x4c\x7e\xbd\xea\xd9\x05\x9b\x8f\xff\x03\x00\x00" "\x00\xdb\x4f\xa9\xfb\x25\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80" "\xcf\xdf\x09\x0f\xff\xe4\xea\xb7\x27\x2e\xf9\xda\x9c\x85\xbf\xdc\xf5\xa7" "\xbd\xc6\x3e\xbb\x7c\xc3\xac\x39\x4d\xb3\x6b\xaf\x7f\xf5\x87\xd7\xfe\xea" "\x88\x3b\x1f\x1e\x57\xf0\xfb\xff\x30\xb6\xb3\x5c\xb1\xdf\xff\xc7\xeb\xfe" "\xc5\xdf\x17\x7c\x29\x2f\x77\x6c\xb5\xfb\xf5\xff\x32\xf7\xc7\x8d\xbe\x7b" "\x76\xe7\x92\x85\xeb\xea\x42\xd8\x2f\x37\x30\xf5\xf2\xa9\x3b\x85\xcc\xb5" "\xf9\x0f\xc8\x0d\xac\x3e\x7d\xd0\x6e\x1d\x89\xcb\xd3\x25\x1e\x7a\xe5\xb8" "\xd7\x3a\x12\x67\xa6\x03\x27\x0e\x1e\xf0\x7e\x47\xe2\xc8\x54\xa0\x35\x2e" "\x92\xb8\x47\x3a\x10\xaf\xaa\xf8\x7e\xbf\x54\x20\x2e\xaf\xf8\x5c\x3a\x10" "\xb7\xc7\xf2\x74\xa0\x2a\x13\xf8\x5e\xbf\x64\x1c\x65\xe9\x6d\xf5\x66\x6d" "\xb2\xad\xca\xd2\xdb\xea\xc5\xda\x10\xfa\xe7\x04\xb2\xdb\x6a\x65\x6d\xd2" "\x46\x59\x7a\x80\xd7\xa7\x02\xd9\x01\x5e\x90\x0e\xc4\x01\x9e\x94\x09\x94" "\xa7\x7b\x75\x77\xdf\xa4\x57\x31\x50\x1b\x8b\xde\xda\x37\xe9\x15\x00\x00" "\x3b\xac\xf8\x2d\xb0\x32\x4c\x9e\xd2\xde\xd6\x1c\xbf\xc2\xc7\xdb\x2f\x57" "\xe4\xdf\x46\x79\x4b\x96\xcd\x2d\xac\xb6\xac\xc4\xe6\x5f\xce\x2c\x4d\x76" "\xd7\xa8\xa6\xfe\xa5\xa4\x7b\xa5\xbf\x8b\x6e\xbe\xd6\x78\x65\xa8\xee\x18" "\xc2\xd0\x82\xaf\xab\xb9\x59\xca\x3a\x47\xb9\x6d\x6a\xe9\x66\xd3\x7d\xa9" "\xc8\x90\xbb\x5b\xed\xad\xbc\x48\xb9\xb4\x2d\xdd\x74\x55\xc5\x47\x54\x93" "\x8c\xa8\x69\xe2\xb4\xf6\x49\x95\xdd\x0e\xfc\x90\xee\xb3\x0c\xab\xe8\x36" "\xcb\xd0\x82\xc9\x4e\x6e\x96\xf2\xce\x4d\x5a\x42\x2d\x25\xf4\xa5\x84\x11" "\x95\xb8\x6d\x4a\xe8\x72\xbc\x5f\x1e\x9a\x9a\x7a\xa5\x72\x7d\x35\x06\xeb" "\x43\x9e\xee\x5e\x11\xa5\xfe\x5e\x3f\x77\x9d\xbf\x62\xaf\x82\xdc\x3c\x4f" "\xbe\xd9\xfe\xd4\x13\xff\xfc\xfc\xca\x7d\x1e\xff\xf3\xd3\x67\x7f\xf0\x57" "\x93\xbe\x7d\xe9\xbc\xb3\xce\x78\xf7\xc8\x73\xaa\xff\xe1\x3f\x97\x3d\xfd" "\x5f\x07\xee\x5c\x30\xff\xaf\x2f\x6d\xfe\x5f\x9d\x3b\xae\xf7\x33\x17\x03" "\x98\x13\xaf\xac\x37\xa2\x7f\x08\xad\x25\x8e\x08\x00\x00\x00\xbe\xf8\xce" "\x39\xff\x95\xf9\xdf\x7d\xf4\xda\x37\xd6\xb7\x34\xbe\x36\x6d\xc8\xb5\xab" "\xff\x75\xf6\x8d\x17\x57\xd4\x2d\xbd\xf2\x2f\x5f\x7c\xe8\x6f\x37\x8d\xbf" "\xfa\xcc\xad\x8d\xbf\xf9\xf3\x3b\xf6\x79\x78\xf2\x84\x67\xbe\x74\xee\x21" "\xcb\x4e\x78\x7d\x9f\x83\x2f\x6b\x3c\xf3\xad\xfb\xfe\x62\xde\xb8\x07\xaf" "\xea\x7b\xcb\x0f\xe7\xdf\xf1\x83\x82\xf9\x7f\x43\x69\xf3\xff\xb8\x07\x2b" "\x73\x28\x38\xd9\xdb\xb1\x26\x5e\xff\xff\x8a\xfe\x21\x74\x5e\x5a\xbf\x3e" "\x09\x2c\x8d\xc3\x3d\xab\x7f\x08\xfb\x74\xa6\x5a\x62\x89\xe4\x82\xfa\xa3" "\x62\x89\xe6\x24\xb0\x34\xee\x30\x19\x14\x4b\xb4\xb6\xe4\x57\xd5\x3b\x06" "\x96\xa7\x02\x6f\xd4\x65\x02\x6b\x52\x81\xb5\x31\x90\xd9\x4b\x71\x47\xc8" "\xec\xca\xb9\xb6\x2e\x84\xe1\x9d\xa9\xb1\xf9\x25\xa6\xc7\x12\xf5\xa9\xc0" "\x37\x63\xa0\x21\x15\x68\x8a\x81\xe6\x54\xa0\x5f\x0c\x8c\x4c\x05\x7e\xdf" "\x2f\x13\x68\x49\x05\x9e\x8c\x81\x30\x25\x7f\x5b\xdd\xd7\x2f\xb3\xad\x00" "\x00\x00\xb6\x44\x66\x9e\x55\x99\x7f\x37\xa4\xe7\x79\xcb\x2b\xba\xcb\x50" "\xd6\x5d\x86\x3e\xdd\x65\x28\xef\x2e\x43\x75\x77\x19\x8a\x8d\x22\xde\xbf" "\x37\x66\xa8\x4c\x9d\xbc\x52\x96\x93\xa9\x32\x5d\x6b\x4d\xaa\x96\x82\x0c" "\xf1\x62\xf8\x5b\xdc\xaf\x82\x0c\xe1\x99\xfc\x9c\xe9\x82\x05\x4d\xc7\xf3" "\x0f\xb2\xe7\x1b\x94\xe5\x67\x78\xe0\xe4\xaf\xde\x73\xd5\x82\xc9\x83\xca" "\x7f\xf5\xd1\xda\xa5\xad\xef\xdd\x3f\x71\xc5\xad\xb3\x8f\x5e\x79\xce\x43" "\x7f\xf7\xc4\xa4\x7d\x17\xdd\x75\xfd\xde\x05\xf3\xff\xe6\xd2\xe6\xff\x7d" "\xf2\x6f\x93\xd6\xd7\xc6\xf9\xff\xe6\xeb\xff\x25\x81\xc7\x63\xf7\xae\x8b" "\xa7\x8e\x37\xc4\xc0\xfa\x63\xf2\x03\x99\x1d\x03\x6b\xe3\x64\xf7\xaa\x6c" "\x55\x2d\x99\x12\x99\x49\xfb\x55\xb1\xc4\xc8\x18\x68\x48\x05\xa6\xc7\xc0" "\xc8\x54\xa0\x75\x6c\x26\xb0\x70\xb7\xfc\x40\x66\xa6\x9d\x6d\xfc\x8a\x6c" "\xe3\x53\x32\x25\x72\x02\x00\x00\x00\xf0\x99\x8b\x3b\x08\xe2\x6e\x9a\x38" "\xff\xff\xe3\xb2\x67\x8f\x7a\xac\x62\xd1\x5d\xff\xfa\xea\xf8\xbb\xee\x9d" "\xf3\xd6\x3d\xf7\xfe\xf4\x9e\x7b\x6e\xbd\x77\xf4\xed\x9b\xbe\xfe\xdc\x15" "\x17\xbf\x7b\xd1\x47\x05\xf3\xff\x91\xa5\xcd\xff\x63\x7b\x7d\x73\x1b\xbb" "\x32\xf6\xe6\xb7\xfd\x42\x58\x59\xb6\xb9\x37\xd9\xc0\xe0\xda\x24\x10\xf7" "\x63\xd4\xc6\x9f\xc7\x0f\xac\x0d\x61\xa7\x9c\x1d\x1c\xd9\x12\x6d\x7d\x92" "\x12\x55\xa9\x86\xc3\x63\x35\xc9\x2f\xd4\xab\xd2\x55\xfd\xa8\x26\x59\x63" "\x20\xde\x1f\xf7\xcb\x47\x56\xcf\xeb\x48\x5c\x5f\x13\xc2\xfe\x39\x7b\x5f" "\xb2\x6d\xfc\x7b\x75\xd2\x46\x4d\x3a\xd0\x58\x95\x04\xfa\xa4\x03\xd3\x2a" "\x92\x40\xdc\xf3\x93\x0d\xac\x2a\x4f\x02\xb0\xd5\xb2\x7b\x05\xe3\x0b\x2a" "\x73\xaa\x4b\x56\x7d\xd7\xe5\x8a\xbc\xfe\xbe\x28\xd7\x04\x4d\x0f\xaf\x60" "\x1f\x68\x17\xf9\xba\xfa\xcd\xd5\xf6\x52\x9d\x7e\x20\xb3\x4f\x35\x6b\xcb" "\x9e\xb6\x82\xea\xd8\x2e\x0a\xde\x1e\x6b\xbc\xdb\x7a\xe2\xbb\xad\xde\xbb" "\x2d\xf7\x8b\x54\xe6\x1b\xca\xc7\x9b\x43\xd5\xa1\x7c\x52\xdb\xe4\x09\xb3" "\xda\x67\xc6\x47\x72\x7f\xc9\x5a\x60\x3b\x3d\xcf\xb9\xbf\x52\x2d\x25\xbd" "\x0d\x5e\x87\x73\x3e\x7d\x6f\xbb\x57\x9d\xee\x40\x73\xea\xe3\xa3\xb9\xeb" "\x72\x5d\xbf\x0e\xcb\x62\x75\x8f\x9f\x3f\xf0\xce\x05\x8d\x63\x76\xbd\xf9" "\xe1\x0d\x93\x5f\xaf\x7a\x76\x41\xc9\xdd\x28\x22\xfe\x50\xf8\x99\xaa\x01" "\xf5\xb9\x9b\x77\x7b\xab\x0e\x99\xd7\x5c\x8f\xfb\x3c\x69\xf1\x79\xd2\x13" "\xff\x0d\x34\x78\xda\x42\x08\x1b\x2e\x3d\xe1\xba\x91\x55\xd3\xaf\x58\x39" "\xfa\x90\x23\xf7\x7a\xed\xb4\x53\xaa\x67\xbe\x37\xef\xef\xef\x7f\xe9\x81" "\x77\xf7\xfd\xc7\x15\x13\x87\x7d\x6d\x40\xc1\xfc\xbf\xa5\xb4\xf9\x7f\x45" "\xea\xb6\xd3\x1f\xe3\xc6\xbc\xb0\x7f\x08\x07\xe6\x6c\xdc\x75\x71\xf3\x1f" "\xdf\x3f\xf9\x1c\xcc\x09\x24\x9f\x92\x3b\x17\x06\x92\x43\xee\xaf\xd6\x15" "\xfd\xe4\x04\x00\x00\x80\x6d\x2d\xbb\xbb\x23\xbb\xbf\x60\x4a\xe6\x36\x39" "\x21\x3c\x3d\x4f\x2e\xcc\xdf\xb2\x85\xf9\xe3\xfe\x8a\x91\x5d\xe6\x2f\xb5" "\xdf\x3f\x1a\x74\xca\x5e\xf7\xef\x76\xf7\xb8\x6b\x4f\x3d\xea\xa6\x7f\xfe" "\xcd\xd8\x7e\x1b\xc7\xbf\xb8\xe4\x98\x15\xad\x47\x35\x2e\x3d\xfa\x67\xff" "\xe9\xcc\x9a\x79\x05\xf3\xff\xd6\x4f\x9e\xff\xf7\x4e\x75\xd3\xf1\x7f\xc7" "\xff\xd9\x4e\x1c\xff\xef\xd2\x8e\xbe\x2b\xba\x77\xfa\x81\x39\x5b\xb5\x2b" "\xba\xa0\x3a\xb6\x0b\xc7\xff\xbb\xb4\xa3\xbf\xdb\x1c\xff\xef\x92\xe3\xff" "\x8e\xff\x77\xc5\xf1\xff\x6e\x38\xfe\xdf\xa5\x1d\xfd\x69\x2b\xf8\x96\x34" "\xdd\x97\xae\x10\xc2\xb0\x31\x67\x0c\xae\xbd\x6b\xf0\x13\xef\x0f\x5c\xfd" "\xeb\x27\x9e\x9a\xf2\x6f\x73\x5b\x27\xdc\xf3\x8d\xab\x6e\xd9\xf3\xe3\x6f" "\xd7\x2f\x5e\x50\xbf\x6b\xdf\x82\xf9\xff\xf4\xd2\xe6\xff\xd6\xff\xeb\x7a" "\xd1\xbe\xec\xfa\x7f\xad\xc5\xd6\xff\x9b\x5e\x6c\xfd\xbf\x39\xd6\xff\x03" "\x00\x00\xb6\xab\x22\x0b\xcd\xa5\xe7\x79\x05\xab\xf7\x15\x64\x48\xaf\xde" "\x57\x90\xa1\xdb\x05\x02\xbb\x5d\x62\xd0\xfa\x7f\x5b\xbc\xfe\xdf\x63\x47" "\x1d\x39\x7e\xf9\xe8\xc5\xbf\x5e\xb3\xf7\x98\x03\x2e\xeb\x3b\x77\xee\xa9" "\xbb\x3c\x79\xd3\x8b\x2d\x33\xdf\xaf\xb9\xed\x83\xf7\x77\xfb\xc5\x81\xa3" "\x0a\xe6\xff\x73\x4a\x9b\xff\xc7\x97\x43\xdf\xdc\xd6\x7b\xca\xfa\x7f\x0d" "\x63\x8b\x54\x75\x4d\x0c\x4c\xb7\x30\x20\x00\x00\x00\x3b\xa2\x62\x3b\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\xf8\x7c\xed\x7e\xc3\x75" "\xe3\x8f\x69\xae\x3e\xe9\x37\xc7\x5f\x5a\x33\xfa\xfb\x0f\xad\x3b\xa0\xfa" "\x9a\x57\x4e\xbd\x74\xd9\x84\x5b\x27\x7d\xe5\xf6\xf3\x07\xcd\x5a\xb1\x64" "\x49\xe5\x9f\x9e\xdf\x78\xd2\xe4\xef\xdc\x70\x78\xe3\x86\x95\x13\x5e\x08" "\x61\x4a\x67\xb9\xb2\xa4\x78\xd9\xe9\x8b\x57\xfc\x60\xd5\x05\xdf\xf8\xd6" "\x83\xa7\xdd\x74\xf7\xbb\x7b\xce\x5e\x5a\x9d\xa9\xb7\x32\x73\xbb\x67\x5e" "\xee\xd8\xea\x87\x75\x21\x2c\xcc\x79\xa4\x36\x26\xde\xae\xeb\xb8\xb3\x39" "\x30\x6e\xf4\xdd\xb3\x2b\x3a\x12\xeb\xea\x42\xd8\x2f\x37\x30\xf5\xf2\xa9" "\x3b\x75\x24\x16\xd7\x85\x70\x40\x6e\x60\xf5\xe9\x83\x76\xeb\x48\x5c\x9e" "\x2e\xf1\xd0\x2b\xc7\xbd\xd6\x91\x38\x33\x1d\x38\x71\xf0\x80\xf7\x3b\x12" "\x47\x66\x02\x65\xe9\xee\xfe\x43\xbf\xa4\xbb\x65\xe9\xee\xce\xeb\x17\x42" "\xff\x9c\x40\xb6\xbb\xe7\xf6\xcb\xaf\x2a\xdb\xc6\x09\x99\x40\x79\xba\x8d" "\x7f\xaa\x4d\xda\x88\x81\xda\x58\xf4\xc6\xda\xa4\x8d\x18\x68\x8f\x25\xa6" "\xf4\x0e\x61\x48\x45\x08\xbd\xd2\x55\xfd\xac\x3a\xa9\xaa\x57\xba\xaa\xff" "\x5d\x9d\x54\xd5\x2b\x5d\xd5\x65\xd5\x21\x8c\x08\x21\x54\xa4\xab\xfa\x75" "\x55\x52\x55\x45\x7a\xe4\xcf\x54\x25\x55\xc5\xc0\xee\xfb\xde\xb1\xb1\xb1" "\x23\xb1\xa8\x2a\x84\x21\xb9\x81\x17\xc6\x2f\x1a\xde\x91\x98\x91\x0a\x64" "\x1b\x3f\xa5\x2a\x84\xbd\x3b\x5e\x32\xe9\xc6\xef\xab\x4c\x1a\xaf\x4c\x37" "\x7e\x43\x65\x08\x5f\x09\x21\x54\xa5\x4b\x6c\xaa\x48\x4a\x54\xa5\x4b\x6c" "\xa8\x08\x61\xe7\x9c\xc0\xe6\x8d\x58\x11\xc2\xec\xc0\x17\x43\xfc\xf4\x99" "\x94\xfb\xe0\x85\xb3\x2f\x9e\x3a\xa1\xbd\xbd\x6d\xc6\x76\x4c\x54\x65\xda" "\xaa\x09\x93\xa7\xb4\xb7\x35\x4d\x9c\xd6\x3e\xa9\x3a\xd5\xa7\x62\xca\x72" "\xd2\x1f\xcf\xfd\xf4\x63\x7f\x79\xe3\x25\x13\x3b\x6e\xef\x1a\xd5\xd4\xbf" "\x94\x74\x45\xa6\x5c\x65\x67\x97\x87\x55\xe6\xdd\x3d\x64\x47\xef\x7d\xec" "\x57\x9f\xdc\x4a\x36\x3f\x1f\x05\xf5\xc7\xfc\x55\xa1\x6f\xe8\x3d\xeb\xc2" "\xb6\x19\x4d\x17\x4d\x98\x39\x73\xc6\xd0\xe4\x6f\xa9\xd9\x87\x25\x7f\x7b" "\x65\xa2\xc9\xb6\x1a\xda\x53\xb6\x55\x63\x6e\x25\x43\x66\x9e\x37\x7d\xc8" "\x85\xb3\x2f\x1e\x3c\xe5\xbc\x09\x67\xb7\x9d\xdd\x76\xfe\x61\xc3\x0f\x3b" "\xe2\x88\x61\x87\x1e\x3a\x7c\x48\xc7\xa0\x9a\x93\xbf\xdb\x62\xa4\x8b\x3e" "\xfb\x91\x7e\xb9\x22\xa7\x92\xcf\xe2\xfd\x2f\x21\x21\xd1\xd3\x12\xe5\x79" "\x9f\x6e\xcd\x3b\xfa\xe7\x78\xc1\x17\xfd\xcd\x1d\xad\x0c\xd5\x9d\x1f\xd0" "\x05\xd3\x8a\xdc\x2c\x65\x9d\xa3\xdc\x16\x83\x3e\xf6\x53\x8e\xf8\xd3\x7c" "\x4d\xe9\x76\x44\x43\x0b\x26\x0e\x05\x59\x86\x75\x9f\xe5\x90\x82\xc9\xc4" "\xe6\x2c\x35\x49\x96\xce\xaf\x75\x05\x93\xc3\xdc\x9a\xca\x3b\x37\x69\xbc" "\x5f\x1e\x9a\x9a\x7a\x15\xdb\x0e\xf5\xf9\x77\x73\x37\xef\x5b\x5b\xb1\x79" "\x5f\xcc\x6c\xba\x52\xd3\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\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\x67\x07\x0e\x04\x00\x00" "\x00\x00\x80\xfc\x5f\x1b\xa1\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x0a\x3b" "\x70\x20\x00\x00\x00\x00\x00\xe4\xff\xda\x08\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\xd8\x81\x63\x01\x00\x00\x00\x00\x61\xfe\xd6\x61\xf4\x6c\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x5c\x0a\x00\x00\xff\xff\x2f\x39\x22\x38", 21917); syz_mount_image(/*fs=*/0x2000000055c0, /*dir=*/0x200000000180, /*flags=*/0, /*opts=*/0x200000000440, /*chdir=*/1, /*size=*/0x559d, /*img=*/0x200000005680); // lseek arguments: [ // fd: fd (resource) // offset: intptr = 0x2 (8 bytes) // whence: seek_whence = 0x3 (8 bytes) // ] syscall(__NR_lseek, /*fd=*/(intptr_t)-1, /*offset=*/2ul, /*whence=SEEK_DATA*/ 3ul); // openat arguments: [ // fd: fd_dir (resource) // file: nil // flags: open_flags = 0xc4042 (4 bytes) // mode: open_mode = 0x1ff (2 bytes) // ] // returns fd res = syscall( __NR_openat, /*fd=*/0xffffff9c, /*file=*/0ul, /*flags=O_NOATIME|O_DIRECT|O_CREAT|O_CLOEXEC|0x2*/ 0xc4042, /*mode=S_IXOTH|S_IWOTH|S_IROTH|S_IXGRP|S_IWGRP|S_IRGRP|S_IXUSR|S_IWUSR|0x100*/ 0x1ff); if (res != -1) r[0] = res; // sendfile arguments: [ // fdout: fd (resource) // fdin: fd (resource) // off: nil // count: intptr = 0x20fffe82 (8 bytes) // ] syscall(__NR_sendfile, /*fdout=*/r[0], /*fdin=*/(intptr_t)-1, /*off=*/0ul, /*count=*/0x20fffe82ul); // pwrite64 arguments: [ // fd: fd (resource) // buf: ptr[in, buffer] { // buffer: {} (length 0x0) // } // count: len = 0x0 (8 bytes) // pos: intptr = 0xe7c (8 bytes) // ] syscall(__NR_pwrite64, /*fd=*/(intptr_t)-1, /*buf=*/0x200000000140ul, /*count=*/0ul, /*pos=*/0xe7cul); // truncate arguments: [ // file: nil // len: intptr = 0x7 (8 bytes) // ] syscall(__NR_truncate, /*file=*/0ul, /*len=*/7ul); // openat arguments: [ // fd: fd_dir (resource) // file: nil // flags: open_flags = 0x143042 (4 bytes) // mode: open_mode = 0x0 (2 bytes) // ] // returns fd syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0ul, /*flags=O_SYNC|O_NOATIME|O_CREAT|FASYNC|O_RDWR*/ 0x143042, /*mode=*/0); } 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; }