diff options
author | Stuart Henderson <sthen@cvs.openbsd.org> | 2019-02-08 10:35:15 +0000 |
---|---|---|
committer | Stuart Henderson <sthen@cvs.openbsd.org> | 2019-02-08 10:35:15 +0000 |
commit | 386ccca312e01e4309f25858a2bef1b850e6b5a9 (patch) | |
tree | 639d15679f00af3ffe0cd77e0019b334f4f20f8e /sbin | |
parent | 801d50e5b54dd7bd2ba3c2a14ca821f84009f4c9 (diff) |
update unwind's copy of libunbound to match the new 1.9.0 update in
/usr/src/usr.sbin/unbound, diff from florian@
Diffstat (limited to 'sbin')
28 files changed, 3676 insertions, 2531 deletions
diff --git a/sbin/unwind/libunbound/config.h b/sbin/unwind/libunbound/config.h index 2623b3e9ed6..81b42aa2243 100644 --- a/sbin/unwind/libunbound/config.h +++ b/sbin/unwind/libunbound/config.h @@ -179,6 +179,9 @@ /* Define to 1 if you have the <event.h> header file. */ #define HAVE_EVENT_H 1 +/* Define to 1 if you have the `EVP_aes_256_cbc' function. */ +#define HAVE_EVP_AES_256_CBC 1 + /* Define to 1 if you have the `EVP_cleanup' function. */ #define HAVE_EVP_CLEANUP 1 @@ -188,6 +191,9 @@ /* Define to 1 if you have the `EVP_dss1' function. */ #define HAVE_EVP_DSS1 1 +/* Define to 1 if you have the `EVP_EncryptInit_ex' function. */ +#define HAVE_EVP_ENCRYPTINIT_EX 1 + /* Define to 1 if you have the `EVP_MD_CTX_new' function. */ #define HAVE_EVP_MD_CTX_NEW 1 @@ -260,6 +266,9 @@ /* Define to 1 if you have the <hiredis/hiredis.h> header file. */ /* #undef HAVE_HIREDIS_HIREDIS_H */ +/* Define to 1 if you have the `HMAC_Init_ex' function. */ +#define HAVE_HMAC_INIT_EX 1 + /* If you have HMAC_Update */ #define HAVE_HMAC_UPDATE 1 @@ -452,9 +461,15 @@ /* Define if you have the SSL libraries installed. */ #define HAVE_SSL /**/ +/* Define to 1 if you have the `SSL_CTX_set_ciphersuites' function. */ +/* #undef HAVE_SSL_CTX_SET_CIPHERSUITES */ + /* Define to 1 if you have the `SSL_CTX_set_security_level' function. */ /* #undef HAVE_SSL_CTX_SET_SECURITY_LEVEL */ +/* Define to 1 if you have the `SSL_CTX_set_tlsext_ticket_key_cb' function. */ +/* #undef HAVE_SSL_CTX_SET_TLSEXT_TICKET_KEY_CB */ + /* Define to 1 if you have the `SSL_get0_peername' function. */ /* #undef HAVE_SSL_GET0_PEERNAME */ @@ -587,6 +602,9 @@ /* Define to 1 if you have the <ws2tcpip.h> header file. */ /* #undef HAVE_WS2TCPIP_H */ +/* Define to 1 if you have the `X509_VERIFY_PARAM_set1_host' function. */ +#define HAVE_X509_VERIFY_PARAM_SET1_HOST 1 + /* Define to 1 if you have the `_beginthreadex' function. */ /* #undef HAVE__BEGINTHREADEX */ @@ -643,7 +661,7 @@ #define PACKAGE_NAME "unbound" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "unbound 1.8.3" +#define PACKAGE_STRING "unbound 1.9.0" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "unbound" @@ -652,7 +670,7 @@ #define PACKAGE_URL "" /* Define to the version of this package. */ -#define PACKAGE_VERSION "1.8.3" +#define PACKAGE_VERSION "1.9.0" /* default pidfile location */ #define PIDFILE "" @@ -674,7 +692,7 @@ #define ROOT_CERT_FILE "/var/unbound/etc/icannbundle.pem" /* version number for resource files */ -#define RSRC_PACKAGE_VERSION 1,8,3,0 +#define RSRC_PACKAGE_VERSION 1,9,0,0 /* Directory to chdir to */ #define RUN_DIR "/var/unbound/etc" diff --git a/sbin/unwind/libunbound/dns64/dns64.c b/sbin/unwind/libunbound/dns64/dns64.c index 77e689000ef..f2834da2bfc 100644 --- a/sbin/unwind/libunbound/dns64/dns64.c +++ b/sbin/unwind/libunbound/dns64/dns64.c @@ -628,6 +628,7 @@ handle_event_moddone(struct module_qstate* qstate, int id) /* Store the response in cache. */ if ( (!iq || !iq->started_no_cache_store) && + qstate->return_msg && qstate->return_msg->rep && !dns_cache_store(qstate->env, &qstate->qinfo, qstate->return_msg->rep, 0, 0, 0, NULL, qstate->query_flags)) log_err("out of memory"); diff --git a/sbin/unwind/libunbound/iterator/iterator.c b/sbin/unwind/libunbound/iterator/iterator.c index 75fd23456d5..8312dfd5331 100644 --- a/sbin/unwind/libunbound/iterator/iterator.c +++ b/sbin/unwind/libunbound/iterator/iterator.c @@ -2298,7 +2298,7 @@ processQueryTargets(struct module_qstate* qstate, struct iter_qstate* iq, errinf(qstate, "auth zone lookup failed, fallback is off"); return error_response(qstate, id, LDNS_RCODE_SERVFAIL); } - if(iq->dp && iq->dp->auth_dp) { + if(iq->dp->auth_dp) { /* we wanted to fallback, but had no delegpt, only the * auth zone generated delegpt, create an actual one */ iq->auth_zone_avoid = 1; @@ -3570,7 +3570,7 @@ process_response(struct module_qstate* qstate, struct iter_qstate* iq, if(event == module_event_noreply || event == module_event_error) { if(event == module_event_noreply && iq->sent_count >= 3 && qstate->env->cfg->use_caps_bits_for_id && - !iq->caps_fallback) { + !iq->caps_fallback && !is_caps_whitelisted(ie, iq)) { /* start fallback */ iq->caps_fallback = 1; iq->caps_server = 0; diff --git a/sbin/unwind/libunbound/libunbound/unbound.h b/sbin/unwind/libunbound/libunbound/unbound.h index 8074e3ac5ba..682ba55308c 100644 --- a/sbin/unwind/libunbound/libunbound/unbound.h +++ b/sbin/unwind/libunbound/libunbound/unbound.h @@ -781,6 +781,10 @@ struct ub_server_stats { /** number of queries answered from edns-subnet specific data, and * the answer was from the edns-subnet cache. */ long long num_query_subnet_cache; + /** number of bytes in the stream wait buffers */ + long long mem_stream_wait; + /** number of TLS connection resume */ + long long qtls_resume; }; /** diff --git a/sbin/unwind/libunbound/services/authzone.c b/sbin/unwind/libunbound/services/authzone.c index 0dc88e692a2..a87c2274fb9 100644 --- a/sbin/unwind/libunbound/services/authzone.c +++ b/sbin/unwind/libunbound/services/authzone.c @@ -88,6 +88,9 @@ #define AUTH_HTTPS_PORT 443 /* max depth for nested $INCLUDEs */ #define MAX_INCLUDE_DEPTH 10 +/** number of timeouts before we fallback from IXFR to AXFR, + * because some versions of servers (eg. dnsmasq) drop IXFR packets. */ +#define NUM_TIMEOUTS_FALLBACK_IXFR 3 /** pick up nextprobe task to start waiting to perform transfer actions */ static void xfr_set_timeout(struct auth_xfer* xfr, struct module_env* env, @@ -2743,13 +2746,14 @@ az_nsec3_insert(struct auth_zone* z, struct regional* region, * that is an exact match that should exist for it. * If that does not exist, a higher exact match + nxproof is enabled * (for some sort of opt-out empty nonterminal cases). + * ceproof: include ce proof NSEC3 (omitted for wildcard replies). * nxproof: include denial of the qname. * wcproof: include denial of wildcard (wildcard.ce). */ static int az_add_nsec3_proof(struct auth_zone* z, struct regional* region, struct dns_msg* msg, uint8_t* cenm, size_t cenmlen, uint8_t* qname, - size_t qname_len, int nxproof, int wcproof) + size_t qname_len, int ceproof, int nxproof, int wcproof) { int algo; size_t iter, saltlen; @@ -2761,11 +2765,13 @@ az_add_nsec3_proof(struct auth_zone* z, struct regional* region, if(!az_nsec3_param(z, &algo, &iter, &salt, &saltlen)) return 1; /* no nsec3 */ /* find ce that has an NSEC3 */ - node = az_nsec3_find_ce(z, &cenm, &cenmlen, &no_exact_ce, - algo, iter, salt, saltlen); - if(no_exact_ce) nxproof = 1; - if(!az_nsec3_insert(z, region, msg, node)) - return 0; + if(ceproof) { + node = az_nsec3_find_ce(z, &cenm, &cenmlen, &no_exact_ce, + algo, iter, salt, saltlen); + if(no_exact_ce) nxproof = 1; + if(!az_nsec3_insert(z, region, msg, node)) + return 0; + } if(nxproof) { uint8_t* nx; @@ -2910,7 +2916,7 @@ az_generate_notype_answer(struct auth_zone* z, struct regional* region, /* DNSSEC denial NSEC3 */ if(!az_add_nsec3_proof(z, region, msg, node->name, node->namelen, msg->qinfo.qname, - msg->qinfo.qname_len, 0, 0)) + msg->qinfo.qname_len, 1, 0, 0)) return 0; } return 1; @@ -2937,7 +2943,7 @@ az_generate_referral_answer(struct auth_zone* z, struct regional* region, } else { if(!az_add_nsec3_proof(z, region, msg, ce->name, ce->namelen, msg->qinfo.qname, - msg->qinfo.qname_len, 0, 0)) + msg->qinfo.qname_len, 1, 0, 0)) return 0; } } @@ -3008,9 +3014,12 @@ az_generate_wildcard_answer(struct auth_zone* z, struct query_info* qinfo, if((nsec=az_find_nsec_cover(z, &node)) != NULL) { if(!msg_add_rrset_ns(z, region, msg, node, nsec)) return 0; } else if(ce) { - if(!az_add_nsec3_proof(z, region, msg, ce->name, - ce->namelen, msg->qinfo.qname, - msg->qinfo.qname_len, 1, 0)) + uint8_t* wildup = wildcard->name; + size_t wilduplen= wildcard->namelen; + dname_remove_label(&wildup, &wilduplen); + if(!az_add_nsec3_proof(z, region, msg, wildup, + wilduplen, msg->qinfo.qname, + msg->qinfo.qname_len, 0, 1, 0)) return 0; } @@ -3036,7 +3045,7 @@ az_generate_nxdomain_answer(struct auth_zone* z, struct regional* region, } else if(ce) { if(!az_add_nsec3_proof(z, region, msg, ce->name, ce->namelen, msg->qinfo.qname, - msg->qinfo.qname_len, 1, 1)) + msg->qinfo.qname_len, 1, 1, 1)) return 0; } return 1; @@ -5630,15 +5639,33 @@ auth_xfer_transfer_tcp_callback(struct comm_point* c, void* arg, int err, * and continue task_transfer*/ verbose(VERB_ALGO, "xfr stopped, connection lost to %s", xfr->task_transfer->master->host); + + /* see if IXFR caused the failure, if so, try AXFR */ + if(xfr->task_transfer->on_ixfr) { + xfr->task_transfer->ixfr_possible_timeout_count++; + if(xfr->task_transfer->ixfr_possible_timeout_count >= + NUM_TIMEOUTS_FALLBACK_IXFR) { + verbose(VERB_ALGO, "xfr to %s, fallback " + "from IXFR to AXFR (because of timeouts)", + xfr->task_transfer->master->host); + xfr->task_transfer->ixfr_fail = 1; + gonextonfail = 0; + } + } + failed: /* delete transferred data from list */ auth_chunks_delete(xfr->task_transfer); comm_point_delete(xfr->task_transfer->cp); xfr->task_transfer->cp = NULL; - xfr_transfer_nextmaster(xfr); + if(gonextonfail) + xfr_transfer_nextmaster(xfr); xfr_transfer_nexttarget_or_end(xfr, env); return 0; } + /* note that IXFR worked without timeout */ + if(xfr->task_transfer->on_ixfr) + xfr->task_transfer->ixfr_possible_timeout_count = 0; /* handle returned packet */ /* if it fails, cleanup and end this transfer */ diff --git a/sbin/unwind/libunbound/services/authzone.h b/sbin/unwind/libunbound/services/authzone.h index 243f3e4a01e..4706803a86b 100644 --- a/sbin/unwind/libunbound/services/authzone.h +++ b/sbin/unwind/libunbound/services/authzone.h @@ -378,6 +378,8 @@ struct auth_transfer { * data or add of duplicate data). Flag is cleared once the retry * with axfr is done. */ int ixfr_fail; + /** we saw an ixfr-indicating timeout, count of them */ + int ixfr_possible_timeout_count; /** we are doing IXFR right now */ int on_ixfr; /** did we detect the current AXFR/IXFR serial number yet, 0 not yet, diff --git a/sbin/unwind/libunbound/services/listen_dnsport.c b/sbin/unwind/libunbound/services/listen_dnsport.c index efc0c3e185b..f86a83d9673 100644 --- a/sbin/unwind/libunbound/services/listen_dnsport.c +++ b/sbin/unwind/libunbound/services/listen_dnsport.c @@ -53,6 +53,9 @@ #include "util/config_file.h" #include "util/net_help.h" #include "sldns/sbuffer.h" +#include "services/mesh.h" +#include "util/fptr_wlist.h" +#include "util/locks.h" #ifdef HAVE_NETDB_H #include <netdb.h> @@ -70,6 +73,18 @@ /** number of queued TCP connections for listen() */ #define TCP_BACKLOG 256 +/** number of simultaneous requests a client can have */ +#define TCP_MAX_REQ_SIMULTANEOUS 32 + +#ifndef THREADS_DISABLED +/** lock on the counter of stream buffer memory */ +static lock_basic_type stream_wait_count_lock; +#endif +/** size (in bytes) of stream wait buffers */ +static size_t stream_wait_count = 0; +/** is the lock initialised for stream wait buffers */ +static int stream_wait_lock_inited = 0; + /** * Debug print of the getaddrinfo returned address. * @param addr: the address returned. @@ -838,7 +853,11 @@ create_tcp_accept_sock(struct addrinfo *addr, int v6only, int* noproto, disabled, except when verbosity enabled for debugging */ if(errno != ENOPROTOOPT || verbosity >= 3) #endif - log_err("Setting TCP Fast Open as server failed: %s", strerror(errno)); + if(errno == EPERM) { + log_warn("Setting TCP Fast Open as server failed: %s ; this could likely be because sysctl net.inet.tcp.fastopen.enabled, net.inet.tcp.fastopen.server_enable, or net.ipv4.tcp_fastopen is disabled", strerror(errno)); + } else { + log_err("Setting TCP Fast Open as server failed: %s", strerror(errno)); + } } #endif return s; @@ -1260,6 +1279,10 @@ listen_create(struct comm_base* base, struct listen_port* ports, free(front); return NULL; } + if(!stream_wait_lock_inited) { + lock_basic_init(&stream_wait_count_lock); + stream_wait_lock_inited = 1; + } /* create comm points as needed */ while(ports) { @@ -1272,11 +1295,13 @@ listen_create(struct comm_base* base, struct listen_port* ports, ports->ftype == listen_type_tcp_dnscrypt) cp = comm_point_create_tcp(base, ports->fd, tcp_accept_count, tcp_idle_timeout, - tcp_conn_limit, bufsize, cb, cb_arg); + tcp_conn_limit, bufsize, front->udp_buff, + cb, cb_arg); else if(ports->ftype == listen_type_ssl) { cp = comm_point_create_tcp(base, ports->fd, tcp_accept_count, tcp_idle_timeout, - tcp_conn_limit, bufsize, cb, cb_arg); + tcp_conn_limit, bufsize, front->udp_buff, + cb, cb_arg); cp->ssl = sslctx; } else if(ports->ftype == listen_type_udpancil || ports->ftype == listen_type_udpancil_dnscrypt) @@ -1347,6 +1372,10 @@ listen_delete(struct listen_dnsport* front) #endif sldns_buffer_free(front->udp_buff); free(front); + if(stream_wait_lock_inited) { + stream_wait_lock_inited = 0; + lock_basic_destroy(&stream_wait_count_lock); + } } struct listen_port* @@ -1504,3 +1533,367 @@ void listen_start_accept(struct listen_dnsport* listen) } } +struct tcp_req_info* +tcp_req_info_create(struct sldns_buffer* spoolbuf) +{ + struct tcp_req_info* req = (struct tcp_req_info*)malloc(sizeof(*req)); + if(!req) { + log_err("malloc failure for new stream outoforder processing structure"); + return NULL; + } + memset(req, 0, sizeof(*req)); + req->spool_buffer = spoolbuf; + return req; +} + +void +tcp_req_info_delete(struct tcp_req_info* req) +{ + if(!req) return; + tcp_req_info_clear(req); + /* cp is pointer back to commpoint that owns this struct and + * called delete on us */ + /* spool_buffer is shared udp buffer, not deleted here */ + free(req); +} + +void tcp_req_info_clear(struct tcp_req_info* req) +{ + struct tcp_req_open_item* open, *nopen; + struct tcp_req_done_item* item, *nitem; + if(!req) return; + + /* free outstanding request mesh reply entries */ + open = req->open_req_list; + while(open) { + nopen = open->next; + mesh_state_remove_reply(open->mesh, open->mesh_state, req->cp); + free(open); + open = nopen; + } + req->open_req_list = NULL; + req->num_open_req = 0; + + /* free pending writable result packets */ + item = req->done_req_list; + while(item) { + nitem = item->next; + lock_basic_lock(&stream_wait_count_lock); + stream_wait_count -= (sizeof(struct tcp_req_done_item) + +item->len); + lock_basic_unlock(&stream_wait_count_lock); + free(item->buf); + free(item); + item = nitem; + } + req->done_req_list = NULL; + req->num_done_req = 0; + req->read_is_closed = 0; +} + +void +tcp_req_info_remove_mesh_state(struct tcp_req_info* req, struct mesh_state* m) +{ + struct tcp_req_open_item* open, *prev = NULL; + if(!req || !m) return; + open = req->open_req_list; + while(open) { + if(open->mesh_state == m) { + struct tcp_req_open_item* next; + if(prev) prev->next = open->next; + else req->open_req_list = open->next; + /* caller has to manage the mesh state reply entry */ + next = open->next; + free(open); + req->num_open_req --; + + /* prev = prev; */ + open = next; + continue; + } + prev = open; + open = open->next; + } +} + +/** setup listening for read or write */ +static void +tcp_req_info_setup_listen(struct tcp_req_info* req) +{ + int wr = 0; + int rd = 0; + + if(req->cp->tcp_byte_count != 0) { + /* cannot change, halfway through */ + return; + } + + if(!req->cp->tcp_is_reading) + wr = 1; + if(req->num_open_req + req->num_done_req < TCP_MAX_REQ_SIMULTANEOUS && + !req->read_is_closed) + rd = 1; + + if(wr) { + req->cp->tcp_is_reading = 0; + comm_point_start_listening(req->cp, -1, + req->cp->tcp_timeout_msec); + } else if(rd) { + req->cp->tcp_is_reading = 1; + comm_point_start_listening(req->cp, -1, + req->cp->tcp_timeout_msec); + /* and also read it (from SSL stack buffers), so + * no event read event is expected since the remainder of + * the TLS frame is sitting in the buffers. */ + req->read_again = 1; + } else { + comm_point_start_listening(req->cp, -1, + req->cp->tcp_timeout_msec); + comm_point_listen_for_rw(req->cp, 0, 0); + } +} + +/** remove first item from list of pending results */ +static struct tcp_req_done_item* +tcp_req_info_pop_done(struct tcp_req_info* req) +{ + struct tcp_req_done_item* item; + log_assert(req->num_done_req > 0 && req->done_req_list); + item = req->done_req_list; + lock_basic_lock(&stream_wait_count_lock); + stream_wait_count -= (sizeof(struct tcp_req_done_item)+item->len); + lock_basic_unlock(&stream_wait_count_lock); + req->done_req_list = req->done_req_list->next; + req->num_done_req --; + return item; +} + +/** Send given buffer and setup to write */ +static void +tcp_req_info_start_write_buf(struct tcp_req_info* req, uint8_t* buf, + size_t len) +{ + sldns_buffer_clear(req->cp->buffer); + sldns_buffer_write(req->cp->buffer, buf, len); + sldns_buffer_flip(req->cp->buffer); + + req->cp->tcp_is_reading = 0; /* we are now writing */ +} + +/** pick up the next result and start writing it to the channel */ +static void +tcp_req_pickup_next_result(struct tcp_req_info* req) +{ + if(req->num_done_req > 0) { + /* unlist the done item from the list of pending results */ + struct tcp_req_done_item* item = tcp_req_info_pop_done(req); + tcp_req_info_start_write_buf(req, item->buf, item->len); + free(item->buf); + free(item); + } +} + +/** the read channel has closed */ +int +tcp_req_info_handle_read_close(struct tcp_req_info* req) +{ + verbose(VERB_ALGO, "tcp channel read side closed %d", req->cp->fd); + /* reset byte count for (potential) partial read */ + req->cp->tcp_byte_count = 0; + /* if we still have results to write, pick up next and write it */ + if(req->num_done_req != 0) { + tcp_req_pickup_next_result(req); + tcp_req_info_setup_listen(req); + return 1; + } + /* if nothing to do, this closes the connection */ + if(req->num_open_req == 0 && req->num_done_req == 0) + return 0; + /* otherwise, we must be waiting for dns resolve, wait with timeout */ + req->read_is_closed = 1; + tcp_req_info_setup_listen(req); + return 1; +} + +void +tcp_req_info_handle_writedone(struct tcp_req_info* req) +{ + /* back to reading state, we finished this write event */ + sldns_buffer_clear(req->cp->buffer); + if(req->num_done_req == 0 && req->read_is_closed) { + /* no more to write and nothing to read, close it */ + comm_point_drop_reply(&req->cp->repinfo); + return; + } + req->cp->tcp_is_reading = 1; + /* see if another result needs writing */ + tcp_req_pickup_next_result(req); + + /* see if there is more to write, if not stop_listening for writing */ + /* see if new requests are allowed, if so, start_listening + * for reading */ + tcp_req_info_setup_listen(req); +} + +void +tcp_req_info_handle_readdone(struct tcp_req_info* req) +{ + struct comm_point* c = req->cp; + + /* we want to read up several requests, unless there are + * pending answers */ + + req->is_drop = 0; + req->is_reply = 0; + req->in_worker_handle = 1; + /* handle the current request */ + /* this calls the worker handle request routine that could give + * a cache response, or localdata response, or drop the reply, + * or schedule a mesh entry for later */ + fptr_ok(fptr_whitelist_comm_point(c->callback)); + if( (*c->callback)(c, c->cb_arg, NETEVENT_NOERROR, &c->repinfo) ) { + req->in_worker_handle = 0; + /* there is an answer, put it up. It is already in the + * c->buffer, just send it. */ + /* since we were just reading a query, the channel is + * clear to write to */ + send_it: + c->tcp_is_reading = 0; + comm_point_start_listening(c, -1, c->tcp_timeout_msec); + return; + } + req->in_worker_handle = 0; + /* it should be waiting in the mesh for recursion. + * If mesh failed to add a new entry and called commpoint_drop_reply. + * Then the mesh state has been cleared. */ + if(req->is_drop) { + /* we can now call drop_reply without recursing into ourselves + * whilst in the callback */ + /* we have to close the stream because there is no reply, + * no servfail to send, but the query needs an action, for + * a stream that is close the connection */ + sldns_buffer_clear(c->buffer); + comm_point_drop_reply(&c->repinfo); + return; + } + /* If mesh failed(mallocfail) and called commpoint_send_reply with + * something like servfail then we pick up that reply below. */ + if(req->is_reply) { + goto send_it; + } + + sldns_buffer_clear(c->buffer); + /* if pending answers, pick up an answer and start sending it */ + tcp_req_pickup_next_result(req); + + /* if answers pending, start sending answers */ + /* read more requests if we can have more requests */ + tcp_req_info_setup_listen(req); +} + +int +tcp_req_info_add_meshstate(struct tcp_req_info* req, + struct mesh_area* mesh, struct mesh_state* m) +{ + struct tcp_req_open_item* item; + log_assert(req && mesh && m); + item = (struct tcp_req_open_item*)malloc(sizeof(*item)); + if(!item) return 0; + item->next = req->open_req_list; + item->mesh = mesh; + item->mesh_state = m; + req->open_req_list = item; + req->num_open_req++; + return 1; +} + +/** Add a result to the result list. At the end. */ +static int +tcp_req_info_add_result(struct tcp_req_info* req, uint8_t* buf, size_t len) +{ + struct tcp_req_done_item* last = NULL; + struct tcp_req_done_item* item; + size_t space; + + /* see if we have space */ + space = sizeof(struct tcp_req_done_item) + len; + lock_basic_lock(&stream_wait_count_lock); + if(stream_wait_count + space > stream_wait_max) { + lock_basic_unlock(&stream_wait_count_lock); + verbose(VERB_ALGO, "drop stream reply, no space left, in stream-wait-size"); + return 0; + } + stream_wait_count += space; + lock_basic_unlock(&stream_wait_count_lock); + + /* find last element */ + last = req->done_req_list; + while(last && last->next) + last = last->next; + + /* create new element */ + item = (struct tcp_req_done_item*)malloc(sizeof(*item)); + if(!item) { + log_err("malloc failure, for stream result list"); + return 0; + } + item->next = NULL; + item->len = len; + item->buf = memdup(buf, len); + if(!item->buf) { + free(item); + log_err("malloc failure, adding reply to stream result list"); + return 0; + } + + /* link in */ + if(last) last->next = item; + else req->done_req_list = item; + req->num_done_req++; + return 1; +} + +void +tcp_req_info_send_reply(struct tcp_req_info* req) +{ + if(req->in_worker_handle) { + /* It is in the right buffer to answer straight away */ + req->is_reply = 1; + return; + } + /* now that the query has been handled, that mesh_reply entry + * should be removed, from the tcp_req_info list, + * the mesh state cleanup removes then with region_cleanup and + * replies_sent true. */ + /* see if we can send it straight away (we are not doing + * anything else). If so, copy to buffer and start */ + if(req->cp->tcp_is_reading && req->cp->tcp_byte_count == 0) { + /* buffer is free, and was ready to read new query into, + * but we are now going to use it to send this answer */ + tcp_req_info_start_write_buf(req, + sldns_buffer_begin(req->spool_buffer), + sldns_buffer_limit(req->spool_buffer)); + /* switch to listen to write events */ + comm_point_stop_listening(req->cp); + comm_point_start_listening(req->cp, -1, + req->cp->tcp_timeout_msec); + return; + } + /* queue up the answer behind the others already pending */ + if(!tcp_req_info_add_result(req, sldns_buffer_begin(req->spool_buffer), + sldns_buffer_limit(req->spool_buffer))) { + /* drop the connection, we are out of resources */ + comm_point_drop_reply(&req->cp->repinfo); + } +} + +size_t tcp_req_info_get_stream_buffer_size(void) +{ + size_t s; + if(!stream_wait_lock_inited) + return stream_wait_count; + lock_basic_lock(&stream_wait_count_lock); + s = stream_wait_count; + lock_basic_unlock(&stream_wait_count_lock); + return s; +} diff --git a/sbin/unwind/libunbound/services/listen_dnsport.h b/sbin/unwind/libunbound/services/listen_dnsport.h index 46b432d4b93..ad84d832264 100644 --- a/sbin/unwind/libunbound/services/listen_dnsport.h +++ b/sbin/unwind/libunbound/services/listen_dnsport.h @@ -237,4 +237,134 @@ int create_tcp_accept_sock(struct addrinfo *addr, int v6only, int* noproto, */ int create_local_accept_sock(const char* path, int* noproto, int use_systemd); +/** + * TCP request info. List of requests outstanding on the channel, that + * are asked for but not yet answered back. + */ +struct tcp_req_info { + /** the TCP comm point for this. Its buffer is used for read/write */ + struct comm_point* cp; + /** the buffer to use to spool reply from mesh into, + * it can then be copied to the result list and written. + * it is a pointer to the shared udp buffer. */ + struct sldns_buffer* spool_buffer; + /** are we in worker_handle function call (for recursion callback)*/ + int in_worker_handle; + /** is the comm point dropped (by worker handle). + * That means we have to disconnect the channel. */ + int is_drop; + /** is the comm point set to send_reply (by mesh new client in worker + * handle), if so answer is available in c.buffer */ + int is_reply; + /** read channel has closed, just write pending results */ + int read_is_closed; + /** read again */ + int read_again; + /** number of outstanding requests */ + int num_open_req; + /** list of outstanding requests */ + struct tcp_req_open_item* open_req_list; + /** number of pending writeable results */ + int num_done_req; + /** list of pending writable result packets, malloced one at a time */ + struct tcp_req_done_item* done_req_list; +}; + +/** + * List of open items in TCP channel + */ +struct tcp_req_open_item { + /** next in list */ + struct tcp_req_open_item* next; + /** the mesh area of the mesh_state */ + struct mesh_area* mesh; + /** the mesh state */ + struct mesh_state* mesh_state; +}; + +/** + * List of done items in TCP channel + */ +struct tcp_req_done_item { + /** next in list */ + struct tcp_req_done_item* next; + /** the buffer with packet contents */ + uint8_t* buf; + /** length of the buffer */ + size_t len; +}; + +/** + * Create tcp request info structure that keeps track of open + * requests on the TCP channel that are resolved at the same time, + * and the pending results that have to get written back to that client. + * @param spoolbuf: shared buffer + * @return new structure or NULL on alloc failure. + */ +struct tcp_req_info* tcp_req_info_create(struct sldns_buffer* spoolbuf); + +/** + * Delete tcp request structure. Called by owning commpoint. + * Removes mesh entry references and stored results from the lists. + * @param req: the tcp request info + */ +void tcp_req_info_delete(struct tcp_req_info* req); + +/** + * Clear tcp request structure. Removes list entries, sets it up ready + * for the next connection. + * @param req: tcp request info structure. + */ +void tcp_req_info_clear(struct tcp_req_info* req); + +/** + * Remove mesh state entry from list in tcp_req_info. + * caller has to manage the mesh state reply entry in the mesh state. + * @param req: the tcp req info that has the entry removed from the list. + * @param m: the state removed from the list. + */ +void tcp_req_info_remove_mesh_state(struct tcp_req_info* req, + struct mesh_state* m); + +/** + * Handle write done of the last result packet + * @param req: the tcp req info. + */ +void tcp_req_info_handle_writedone(struct tcp_req_info* req); + +/** + * Handle read done of a new request from the client + * @param req: the tcp req info. + */ +void tcp_req_info_handle_readdone(struct tcp_req_info* req); + +/** + * Add mesh state to the tcp req list of open requests. + * So the comm_reply can be removed off the mesh reply list when + * the tcp channel has to be closed (for other reasons then that that + * request was done, eg. channel closed by client or some format error). + * @param req: tcp req info structure. It keeps track of the simultaneous + * requests and results on a tcp (or TLS) channel. + * @param mesh: mesh area for the state. + * @param m: mesh state to add. + * @return 0 on failure (malloc failure). + */ +int tcp_req_info_add_meshstate(struct tcp_req_info* req, + struct mesh_area* mesh, struct mesh_state* m); + +/** + * Send reply on tcp simultaneous answer channel. May queue it up. + * @param req: request info structure. + */ +void tcp_req_info_send_reply(struct tcp_req_info* req); + +/** the read channel has closed + * @param req: request. remaining queries are looked up and answered. + * @return zero if nothing to do, just close the tcp. + */ +int tcp_req_info_handle_read_close(struct tcp_req_info* req); + +/** get the size of currently used tcp stream wait buffers (in bytes) */ +size_t tcp_req_info_get_stream_buffer_size(void); + #endif /* LISTEN_DNSPORT_H */ diff --git a/sbin/unwind/libunbound/services/mesh.c b/sbin/unwind/libunbound/services/mesh.c index c6bb9ef2bc6..bee0f76a4ad 100644 --- a/sbin/unwind/libunbound/services/mesh.c +++ b/sbin/unwind/libunbound/services/mesh.c @@ -61,6 +61,7 @@ #include "services/localzone.h" #include "util/data/dname.h" #include "respip/respip.h" +#include "services/listen_dnsport.h" /** subtract timers and the values do not overflow or become negative */ static void @@ -429,6 +430,7 @@ void mesh_new_client(struct mesh_area* mesh, struct query_info* qinfo, /* add reply to s */ if(!mesh_state_add_reply(s, edns, rep, qid, qflags, qinfo)) { log_err("mesh_new_client: out of memory; SERVFAIL"); + servfail_mem: if(!inplace_cb_reply_servfail_call(mesh->env, qinfo, &s->s, NULL, LDNS_RCODE_SERVFAIL, edns, rep, mesh->env->scratch)) edns->opt_list = NULL; @@ -439,6 +441,12 @@ void mesh_new_client(struct mesh_area* mesh, struct query_info* qinfo, mesh_state_delete(&s->s); return; } + if(rep->c->tcp_req_info) { + if(!tcp_req_info_add_meshstate(rep->c->tcp_req_info, mesh, s)) { + log_err("mesh_new_client: out of memory add tcpreqinfo"); + goto servfail_mem; + } + } /* update statistics */ if(was_detached) { log_assert(mesh->num_detached_states > 0); @@ -732,9 +740,13 @@ mesh_state_cleanup(struct mesh_state* mstate) mesh = mstate->s.env->mesh; /* drop unsent replies */ if(!mstate->replies_sent) { - struct mesh_reply* rep; + struct mesh_reply* rep = mstate->reply_list; struct mesh_cb* cb; - for(rep=mstate->reply_list; rep; rep=rep->next) { + /* in tcp_req_info, the mstates linked are removed, but + * the reply_list is now NULL, so the remove-from-empty-list + * takes no time and also it does not do the mesh accounting */ + mstate->reply_list = NULL; + for(; rep; rep=rep->next) { comm_point_drop_reply(&rep->query_reply); mesh->num_reply_addrs--; } @@ -1031,11 +1043,14 @@ mesh_do_callback(struct mesh_state* m, int rcode, struct reply_info* rep, * @param rcode: if not 0, error code. * @param rep: reply to send (or NULL if rcode is set). * @param r: reply entry + * @param r_buffer: buffer to use for reply entry. * @param prev: previous reply, already has its answer encoded in buffer. + * @param prev_buffer: buffer for previous reply. */ static void mesh_send_reply(struct mesh_state* m, int rcode, struct reply_info* rep, - struct mesh_reply* r, struct mesh_reply* prev) + struct mesh_reply* r, struct sldns_buffer* r_buffer, + struct mesh_reply* prev, struct sldns_buffer* prev_buffer) { struct timeval end_time; struct timeval duration; @@ -1063,7 +1078,7 @@ mesh_send_reply(struct mesh_state* m, int rcode, struct reply_info* rep, * and still reuse the previous answer if they are the same, but that * would be complicated and error prone for the relatively minor case. * So we err on the side of safety. */ - if(prev && prev->qflags == r->qflags && + if(prev && prev_buffer && prev->qflags == r->qflags && !prev->local_alias && !r->local_alias && prev->edns.edns_present == r->edns.edns_present && prev->edns.bits == r->edns.bits && @@ -1071,13 +1086,11 @@ mesh_send_reply(struct mesh_state* m, int rcode, struct reply_info* rep, edns_opt_list_compare(prev->edns.opt_list, r->edns.opt_list) == 0) { /* if the previous reply is identical to this one, fix ID */ - if(prev->query_reply.c->buffer != r->query_reply.c->buffer) - sldns_buffer_copy(r->query_reply.c->buffer, - prev->query_reply.c->buffer); - sldns_buffer_write_at(r->query_reply.c->buffer, 0, - &r->qid, sizeof(uint16_t)); - sldns_buffer_write_at(r->query_reply.c->buffer, 12, - r->qname, m->s.qinfo.qname_len); + if(prev_buffer != r_buffer) + sldns_buffer_copy(r_buffer, prev_buffer); + sldns_buffer_write_at(r_buffer, 0, &r->qid, sizeof(uint16_t)); + sldns_buffer_write_at(r_buffer, 12, r->qname, + m->s.qinfo.qname_len); comm_point_send_reply(&r->query_reply); } else if(rcode) { m->s.qinfo.qname = r->qname; @@ -1091,8 +1104,8 @@ mesh_send_reply(struct mesh_state* m, int rcode, struct reply_info* rep, &r->edns, NULL, m->s.region)) r->edns.opt_list = NULL; } - error_encode(r->query_reply.c->buffer, rcode, &m->s.qinfo, - r->qid, r->qflags, &r->edns); + error_encode(r_buffer, rcode, &m->s.qinfo, r->qid, + r->qflags, &r->edns); comm_point_send_reply(&r->query_reply); } else { size_t udp_size = r->edns.udp_size; @@ -1108,16 +1121,15 @@ mesh_send_reply(struct mesh_state* m, int rcode, struct reply_info* rep, m->s.env->cfg, r->query_reply.c, m->s.region) || !reply_info_answer_encode(&m->s.qinfo, rep, r->qid, - r->qflags, r->query_reply.c->buffer, 0, 1, - m->s.env->scratch, udp_size, &r->edns, - (int)(r->edns.bits & EDNS_DO), secure)) + r->qflags, r_buffer, 0, 1, m->s.env->scratch, + udp_size, &r->edns, (int)(r->edns.bits & EDNS_DO), + secure)) { if(!inplace_cb_reply_servfail_call(m->s.env, &m->s.qinfo, &m->s, rep, LDNS_RCODE_SERVFAIL, &r->edns, NULL, m->s.region)) r->edns.opt_list = NULL; - error_encode(r->query_reply.c->buffer, - LDNS_RCODE_SERVFAIL, &m->s.qinfo, r->qid, - r->qflags, &r->edns); + error_encode(r_buffer, LDNS_RCODE_SERVFAIL, + &m->s.qinfo, r->qid, r->qflags, &r->edns); } r->edns = edns_bak; comm_point_send_reply(&r->query_reply); @@ -1132,19 +1144,17 @@ mesh_send_reply(struct mesh_state* m, int rcode, struct reply_info* rep, timeval_add(&m->s.env->mesh->replies_sum_wait, &duration); timehist_insert(m->s.env->mesh->histogram, &duration); if(m->s.env->cfg->stat_extended) { - uint16_t rc = FLAGS_GET_RCODE(sldns_buffer_read_u16_at(r-> - query_reply.c->buffer, 2)); + uint16_t rc = FLAGS_GET_RCODE(sldns_buffer_read_u16_at( + r_buffer, 2)); if(secure) m->s.env->mesh->ans_secure++; m->s.env->mesh->ans_rcode[ rc ] ++; - if(rc == 0 && LDNS_ANCOUNT(sldns_buffer_begin(r-> - query_reply.c->buffer)) == 0) + if(rc == 0 && LDNS_ANCOUNT(sldns_buffer_begin(r_buffer)) == 0) m->s.env->mesh->ans_nodata++; } /* Log reply sent */ if(m->s.env->cfg->log_replies) { log_reply_info(0, &m->s.qinfo, &r->query_reply.addr, - r->query_reply.addrlen, duration, 0, - r->query_reply.c->buffer); + r->query_reply.addrlen, duration, 0, r_buffer); } } @@ -1152,6 +1162,7 @@ void mesh_query_done(struct mesh_state* mstate) { struct mesh_reply* r; struct mesh_reply* prev = NULL; + struct sldns_buffer* prev_buffer = NULL; struct mesh_cb* c; struct reply_info* rep = (mstate->s.return_msg? mstate->s.return_msg->rep:NULL); @@ -1180,9 +1191,15 @@ void mesh_query_done(struct mesh_state* mstate) if(mstate->s.is_drop) comm_point_drop_reply(&r->query_reply); else { + struct sldns_buffer* r_buffer = r->query_reply.c->buffer; + if(r->query_reply.c->tcp_req_info) + r_buffer = r->query_reply.c->tcp_req_info->spool_buffer; mesh_send_reply(mstate, mstate->s.return_rcode, rep, - r, prev); + r, r_buffer, prev, prev_buffer); + if(r->query_reply.c->tcp_req_info) + tcp_req_info_remove_mesh_state(r->query_reply.c->tcp_req_info, mstate); prev = r; + prev_buffer = r_buffer; } } mstate->replies_sent = 1; @@ -1392,7 +1409,7 @@ mesh_continue(struct mesh_area* mesh, struct mesh_state* mstate, /* module is looping. Stop it. */ log_err("internal error: looping module (%s) stopped", mesh->mods.mod[mstate->s.curmod]->name); - log_query_info(VERB_QUERY, "pass error for qstate", + log_query_info(0, "pass error for qstate", &mstate->s.qinfo); s = module_error; } @@ -1613,3 +1630,38 @@ void mesh_list_remove(struct mesh_state* m, struct mesh_state** fp, m->prev->next = m->next; else *fp = m->next; } + +void mesh_state_remove_reply(struct mesh_area* mesh, struct mesh_state* m, + struct comm_point* cp) +{ + struct mesh_reply* n, *prev = NULL; + n = m->reply_list; + /* when in mesh_cleanup, it sets the reply_list to NULL, so that + * there is no accounting twice */ + if(!n) return; /* nothing to remove, also no accounting needed */ + while(n) { + if(n->query_reply.c == cp) { + /* unlink it */ + if(prev) prev->next = n->next; + else m->reply_list = n->next; + /* delete it, but allocated in m region */ + mesh->num_reply_addrs--; + + /* prev = prev; */ + n = n->next; + continue; + } + prev = n; + n = n->next; + } + /* it was not detached (because it had a reply list), could be now */ + if(!m->reply_list && !m->cb_list + && m->super_set.count == 0) { + mesh->num_detached_states++; + } + /* if not replies any more in mstate, it is no longer a reply_state */ + if(!m->reply_list && !m->cb_list) { + log_assert(mesh->num_reply_states > 0); + mesh->num_reply_states--; + } +} diff --git a/sbin/unwind/libunbound/services/mesh.h b/sbin/unwind/libunbound/services/mesh.h index b4ce03e7e2a..a2622844bbf 100644 --- a/sbin/unwind/libunbound/services/mesh.h +++ b/sbin/unwind/libunbound/services/mesh.h @@ -65,7 +65,7 @@ struct respip_client_info; * Maximum number of mesh state activations. Any more is likely an * infinite loop in the module. It is then terminated. */ -#define MESH_MAX_ACTIVATION 3000 +#define MESH_MAX_ACTIVATION 10000 /** * Max number of references-to-references-to-references.. search size. @@ -633,4 +633,14 @@ void mesh_list_insert(struct mesh_state* m, struct mesh_state** fp, void mesh_list_remove(struct mesh_state* m, struct mesh_state** fp, struct mesh_state** lp); +/** + * Remove mesh reply entry from the reply entry list. Searches for + * the comm_point pointer. + * @param mesh: to update the counters. + * @param m: the mesh state. + * @param cp: the comm_point to remove from the list. + */ +void mesh_state_remove_reply(struct mesh_area* mesh, struct mesh_state* m, + struct comm_point* cp); + #endif /* SERVICES_MESH_H */ diff --git a/sbin/unwind/libunbound/services/outside_network.c b/sbin/unwind/libunbound/services/outside_network.c index e0684fc6632..8ed5de37585 100644 --- a/sbin/unwind/libunbound/services/outside_network.c +++ b/sbin/unwind/libunbound/services/outside_network.c @@ -63,6 +63,9 @@ #ifdef HAVE_OPENSSL_SSL_H #include <openssl/ssl.h> #endif +#ifdef HAVE_X509_VERIFY_PARAM_SET1_HOST +#include <openssl/x509v3.h> +#endif #ifdef HAVE_NETDB_H #include <netdb.h> @@ -385,6 +388,22 @@ outnet_tcp_take_into_use(struct waiting_tcp* w, uint8_t* pkt, size_t pkt_len) return 0; } } +#elif defined(HAVE_X509_VERIFY_PARAM_SET1_HOST) + /* openssl 1.0.2 has this function that can be used for + * set1_host like verification */ + if(w->tls_auth_name) { + X509_VERIFY_PARAM* param = SSL_get0_param(pend->c->ssl); + X509_VERIFY_PARAM_set_hostflags(param, X509_CHECK_FLAG_NO_PARTIAL_WILDCARDS); + if(!X509_VERIFY_PARAM_set1_host(param, w->tls_auth_name, strlen(w->tls_auth_name))) { + log_err("X509_VERIFY_PARAM_set1_host failed"); + pend->c->fd = s; + SSL_free(pend->c->ssl); + pend->c->ssl = NULL; + comm_point_close(pend->c); + return 0; + } + SSL_set_verify(pend->c->ssl, SSL_VERIFY_PEER, NULL); + } #endif /* HAVE_SSL_SET1_HOST */ } w->pkt = NULL; @@ -759,7 +778,7 @@ outside_network_create(struct comm_base *base, size_t bufsize, outnet->delay_tv.tv_usec = (delayclose%1000)*1000; } #endif - if(numavailports == 0) { + if(numavailports == 0 || num_ports == 0) { log_err("no outgoing ports available"); outside_network_delete(outnet); return NULL; @@ -1487,7 +1506,6 @@ serviced_delete(struct serviced_query* sq) /* clear up the pending query */ if(sq->status == serviced_query_UDP_EDNS || sq->status == serviced_query_UDP || - sq->status == serviced_query_PROBE_EDNS || sq->status == serviced_query_UDP_EDNS_FRAG || sq->status == serviced_query_UDP_EDNS_fallback) { struct pending* p = (struct pending*)sq->pending; @@ -1614,15 +1632,7 @@ serviced_udp_send(struct serviced_query* sq, sldns_buffer* buff) sq->last_rtt = rtt; verbose(VERB_ALGO, "EDNS lookup known=%d vs=%d", edns_lame_known, vs); if(sq->status == serviced_initial) { - if(edns_lame_known == 0 && rtt > 5000 && rtt < 10001) { - /* perform EDNS lame probe - check if server is - * EDNS lame (EDNS queries to it are dropped) */ - verbose(VERB_ALGO, "serviced query: send probe to see " - " if use of EDNS causes timeouts"); - /* even 700 msec may be too small */ - rtt = 1000; - sq->status = serviced_query_PROBE_EDNS; - } else if(vs != -1) { + if(vs != -1) { sq->status = serviced_query_UDP_EDNS; } else { sq->status = serviced_query_UDP; @@ -1959,12 +1969,6 @@ serviced_udp_callback(struct comm_point* c, void* arg, int error, sq->pending = NULL; /* removed after callback */ if(error == NETEVENT_TIMEOUT) { int rto = 0; - if(sq->status == serviced_query_PROBE_EDNS) { - /* non-EDNS probe failed; we do not know its status, - * keep trying with EDNS, timeout may not be caused - * by EDNS. */ - sq->status = serviced_query_UDP_EDNS; - } if(sq->status == serviced_query_UDP_EDNS && sq->last_rtt < 5000) { /* fallback to 1480/1280 */ sq->status = serviced_query_UDP_EDNS_FRAG; @@ -2028,18 +2032,6 @@ serviced_udp_callback(struct comm_point* c, void* arg, int error, serviced_callbacks(sq, NETEVENT_CLOSED, c, rep); } return 0; - } else if(sq->status == serviced_query_PROBE_EDNS) { - /* probe without EDNS succeeds, so we conclude that this - * host likely has EDNS packets dropped */ - log_addr(VERB_DETAIL, "timeouts, concluded that connection to " - "host drops EDNS packets", &sq->addr, sq->addrlen); - /* only store noEDNS in cache if domain is noDNSSEC */ - if(!sq->want_dnssec) - if(!infra_edns_update(outnet->infra, &sq->addr, sq->addrlen, - sq->zone, sq->zonelen, -1, (time_t)now.tv_sec)) { - log_err("Out of memory caching no edns for host"); - } - sq->status = serviced_query_UDP; } else if(sq->status == serviced_query_UDP_EDNS && !sq->edns_lame_known) { /* now we know that edns queries received answers store that */ @@ -2403,6 +2395,18 @@ outnet_comm_point_for_http(struct outside_network* outnet, return NULL; } } +#elif defined(HAVE_X509_VERIFY_PARAM_SET1_HOST) + /* openssl 1.0.2 has this function that can be used for + * set1_host like verification */ + if((SSL_CTX_get_verify_mode(outnet->sslctx)&SSL_VERIFY_PEER)) { + X509_VERIFY_PARAM* param = SSL_get0_param(cp->ssl); + X509_VERIFY_PARAM_set_hostflags(param, X509_CHECK_FLAG_NO_PARTIAL_WILDCARDS); + if(!X509_VERIFY_PARAM_set1_host(param, host, strlen(host))) { + log_err("X509_VERIFY_PARAM_set1_host failed"); + comm_point_delete(cp); + return NULL; + } + } #endif /* HAVE_SSL_SET1_HOST */ } @@ -2508,7 +2512,6 @@ serviced_get_mem(struct serviced_query* sq) s += sizeof(*sb); if(sq->status == serviced_query_UDP_EDNS || sq->status == serviced_query_UDP || - sq->status == serviced_query_PROBE_EDNS || sq->status == serviced_query_UDP_EDNS_FRAG || sq->status == serviced_query_UDP_EDNS_fallback) { s += sizeof(struct pending); diff --git a/sbin/unwind/libunbound/services/outside_network.h b/sbin/unwind/libunbound/services/outside_network.h index 01a307417ea..48ef03edba7 100644 --- a/sbin/unwind/libunbound/services/outside_network.h +++ b/sbin/unwind/libunbound/services/outside_network.h @@ -359,8 +359,6 @@ struct serviced_query { serviced_query_TCP_EDNS, /** TCP without EDNS sent */ serviced_query_TCP, - /** probe to test EDNS lameness (EDNS is dropped) */ - serviced_query_PROBE_EDNS, /** probe to test noEDNS0 (EDNS gives FORMERRorNOTIMP) */ serviced_query_UDP_EDNS_fallback, /** probe to test TCP noEDNS0 (EDNS gives FORMERRorNOTIMP) */ diff --git a/sbin/unwind/libunbound/util/config_file.c b/sbin/unwind/libunbound/util/config_file.c index a272731d227..d97ad998990 100644 --- a/sbin/unwind/libunbound/util/config_file.c +++ b/sbin/unwind/libunbound/util/config_file.c @@ -76,6 +76,8 @@ uid_t cfg_uid = (uid_t)-1; gid_t cfg_gid = (gid_t)-1; /** for debug allow small timeout values for fast rollovers */ int autr_permit_small_holddown = 0; +/** size (in bytes) of stream wait buffers max */ +size_t stream_wait_max = 4 * 1024 * 1024; /** global config during parsing */ struct config_parser_state* cfg_parser = 0; @@ -119,6 +121,7 @@ config_create(void) cfg->log_time_ascii = 0; cfg->log_queries = 0; cfg->log_replies = 0; + cfg->log_tag_queryreply = 0; cfg->log_local_actions = 0; cfg->log_servfail = 0; #ifndef USE_WINSOCK @@ -139,6 +142,7 @@ config_create(void) cfg->outgoing_num_tcp = 2; /* leaves 64-52=12 for: 4if,1stop,thread4 */ cfg->incoming_num_tcp = 2; #endif + cfg->stream_wait_size = 4 * 1024 * 1024; cfg->edns_buffer_size = 4096; /* 4k from rfc recommendation */ cfg->msg_buffer_size = 65552; /* 64 k + a small margin */ cfg->msg_cache_size = 4 * 1024 * 1024; @@ -483,6 +487,9 @@ int config_set_option(struct config_file* cfg, const char* opt, else S_STRLIST("additional-tls-port:", tls_additional_port) else S_STRLIST("tls-additional-ports:", tls_additional_port) else S_STRLIST("tls-additional-port:", tls_additional_port) + else S_STRLIST_APPEND("tls-session-ticket-keys:", tls_session_ticket_keys) + else S_STR("tls-ciphers:", tls_ciphers) + else S_STR("tls-ciphersuites:", tls_ciphersuites) else S_YNO("interface-automatic:", if_automatic) else S_YNO("use-systemd:", use_systemd) else S_YNO("do-daemonize:", do_daemonize) @@ -490,6 +497,7 @@ int config_set_option(struct config_file* cfg, const char* opt, else S_NUMBER_NONZERO("outgoing-range:", outgoing_num_ports) else S_SIZET_OR_ZERO("outgoing-num-tcp:", outgoing_num_tcp) else S_SIZET_OR_ZERO("incoming-num-tcp:", incoming_num_tcp) + else S_MEMSIZE("stream-wait-size:", stream_wait_size) else S_SIZET_NONZERO("edns-buffer-size:", edns_buffer_size) else S_SIZET_NONZERO("msg-buffer-size:", msg_buffer_size) else S_MEMSIZE("msg-cache-size:", msg_cache_size) @@ -560,6 +568,7 @@ int config_set_option(struct config_file* cfg, const char* opt, else S_YNO("val-log-squelch:", val_log_squelch) else S_YNO("log-queries:", log_queries) else S_YNO("log-replies:", log_replies) + else S_YNO("log-tag-queryreply:", log_tag_queryreply) else S_YNO("log-local-actions:", log_local_actions) else S_YNO("log-servfail:", log_servfail) else S_YNO("val-permissive-mode:", val_permissive_mode) @@ -875,6 +884,7 @@ config_get_option(struct config_file* cfg, const char* opt, else O_DEC(opt, "outgoing-range", outgoing_num_ports) else O_DEC(opt, "outgoing-num-tcp", outgoing_num_tcp) else O_DEC(opt, "incoming-num-tcp", incoming_num_tcp) + else O_MEM(opt, "stream-wait-size", stream_wait_size) else O_DEC(opt, "edns-buffer-size", edns_buffer_size) else O_DEC(opt, "msg-buffer-size", msg_buffer_size) else O_MEM(opt, "msg-cache-size", msg_cache_size) @@ -917,6 +927,9 @@ config_get_option(struct config_file* cfg, const char* opt, else O_STR(opt, "tls-cert-bundle", tls_cert_bundle) else O_YNO(opt, "tls-win-cert", tls_win_cert) else O_LST(opt, "tls-additional-port", tls_additional_port) + else O_LST(opt, "tls-session-ticket-keys", tls_session_ticket_keys.first) + else O_STR(opt, "tls-ciphers", tls_ciphers) + else O_STR(opt, "tls-ciphersuites", tls_ciphersuites) else O_YNO(opt, "use-systemd", use_systemd) else O_YNO(opt, "do-daemonize", do_daemonize) else O_STR(opt, "chroot", chrootdir) @@ -925,6 +938,7 @@ config_get_option(struct config_file* cfg, const char* opt, else O_STR(opt, "logfile", logfile) else O_YNO(opt, "log-queries", log_queries) else O_YNO(opt, "log-replies", log_replies) + else O_YNO(opt, "log-tag-queryreply", log_tag_queryreply) else O_YNO(opt, "log-local-actions", log_local_actions) else O_YNO(opt, "log-servfail", log_servfail) else O_STR(opt, "pidfile", pidfile) @@ -1350,6 +1364,9 @@ config_delete(struct config_file* cfg) free(cfg->ssl_service_pem); free(cfg->tls_cert_bundle); config_delstrlist(cfg->tls_additional_port); + config_delstrlist(cfg->tls_session_ticket_keys.first); + free(cfg->tls_ciphers); + free(cfg->tls_ciphersuites); free(cfg->log_identity); config_del_strarray(cfg->ifs, cfg->num_ifs); config_del_strarray(cfg->out_ifs, cfg->num_out_ifs); @@ -1903,9 +1920,11 @@ config_apply(struct config_file* config) EDNS_ADVERTISED_SIZE = (uint16_t)config->edns_buffer_size; MINIMAL_RESPONSES = config->minimal_responses; RRSET_ROUNDROBIN = config->rrset_roundrobin; + LOG_TAG_QUERYREPLY = config->log_tag_queryreply; UNKNOWN_SERVER_NICENESS = config->unknown_server_time_limit; log_set_time_asc(config->log_time_ascii); autr_permit_small_holddown = config->permit_small_holddown; + stream_wait_max = config->stream_wait_size; } void config_lookup_uid(struct config_file* cfg) diff --git a/sbin/unwind/libunbound/util/config_file.h b/sbin/unwind/libunbound/util/config_file.h index 6083f8333d8..3cffdbff938 100644 --- a/sbin/unwind/libunbound/util/config_file.h +++ b/sbin/unwind/libunbound/util/config_file.h @@ -120,6 +120,12 @@ struct config_file { int tls_win_cert; /** additional tls ports */ struct config_strlist* tls_additional_port; + /** secret key used to encrypt and decrypt TLS session ticket */ + struct config_strlist_head tls_session_ticket_keys; + /** TLS ciphers */ + char* tls_ciphers; + /** TLS chiphersuites (TLSv1.3) */ + char* tls_ciphersuites; /** outgoing port range number of ports (per thread) */ int outgoing_num_ports; @@ -132,6 +138,8 @@ struct config_file { /** EDNS buffer size to use */ size_t edns_buffer_size; + /** size of the stream wait buffers, max */ + size_t stream_wait_size; /** number of bytes buffer size for DNS messages */ size_t msg_buffer_size; /** size of the message cache */ @@ -286,6 +294,8 @@ struct config_file { int log_queries; /** log replies with one line per reply */ int log_replies; + /** tag log_queries and log_replies for filtering */ + int log_tag_queryreply; /** log every local-zone hit **/ int log_local_actions; /** log servfails with a reason */ @@ -573,6 +583,8 @@ extern uid_t cfg_uid; extern gid_t cfg_gid; /** debug and enable small timeouts */ extern int autr_permit_small_holddown; +/** size (in bytes) of stream wait buffers max */ +extern size_t stream_wait_max; /** * Stub config options diff --git a/sbin/unwind/libunbound/util/configlexer.c b/sbin/unwind/libunbound/util/configlexer.c index 0757c6803d0..52b179de292 100644 --- a/sbin/unwind/libunbound/util/configlexer.c +++ b/sbin/unwind/libunbound/util/configlexer.c @@ -5,7 +5,7 @@ #define YY_INT_ALIGNED short int -/* $OpenBSD: configlexer.c,v 1.1 2019/01/23 13:05:27 florian Exp $ */ +/* $OpenBSD: configlexer.c,v 1.2 2019/02/08 10:35:14 sthen Exp $ */ /* A lexical scanner generated by flex */ @@ -27,7 +27,7 @@ /* end standard C headers. */ -/* $OpenBSD: configlexer.c,v 1.1 2019/01/23 13:05:27 florian Exp $ */ +/* $OpenBSD: configlexer.c,v 1.2 2019/02/08 10:35:14 sthen Exp $ */ /* flex integer type definitions */ @@ -368,8 +368,8 @@ static void yy_fatal_error (yyconst char msg[] ); *yy_cp = '\0'; \ (yy_c_buf_p) = yy_cp; -#define YY_NUM_RULES 286 -#define YY_END_OF_BUFFER 287 +#define YY_NUM_RULES 291 +#define YY_END_OF_BUFFER 292 /* This struct is not used in this scanner, but its presence is necessary. */ struct yy_trans_info @@ -377,321 +377,328 @@ struct yy_trans_info flex_int32_t yy_verify; flex_int32_t yy_nxt; }; -static yyconst flex_int16_t yy_accept[2845] = +static yyconst flex_int16_t yy_accept[2905] = { 0, - 1, 1, 268, 268, 272, 272, 276, 276, 280, 280, - 1, 1, 287, 284, 1, 266, 266, 285, 2, 285, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 268, 269, 269, 270, 285, 272, 273, 273, - 274, 285, 279, 276, 277, 277, 278, 285, 280, 281, - 281, 282, 285, 283, 267, 2, 271, 285, 283, 284, - 0, 1, 2, 2, 2, 2, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 268, - 0, 272, 0, 279, 0, 276, 280, 0, 283, 0, - 2, 2, 283, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 283, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 110, 284, 284, - 284, 284, 284, 284, 284, 283, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 92, 284, - 284, 284, 284, 284, 284, 8, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 115, - 284, 283, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 283, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 51, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 209, 284, - 14, 15, 284, 18, 17, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - - 284, 284, 284, 284, 284, 284, 284, 109, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 193, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 3, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 283, 284, 284, 284, 284, 284, 284, 284, 259, - - 284, 284, 258, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 275, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 54, 284, 233, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 55, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - - 284, 284, 284, 284, 284, 284, 284, 182, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 20, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 134, 284, 284, 275, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 90, 284, 284, - 284, 284, 284, 284, 284, 241, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 155, 284, - - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 133, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 89, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 31, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - - 284, 284, 284, 32, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 52, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 108, 284, 284, 284, - 284, 284, 107, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 53, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 156, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 42, 284, - - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 224, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 46, 284, 47, 284, 284, 284, 284, 93, 284, - 94, 284, 284, 284, 284, 91, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - - 284, 7, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 202, 284, 284, 284, 284, 136, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 43, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 174, - 284, 173, 284, 284, 284, 284, 284, 284, 284, 284, - - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 16, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 56, 284, 284, 284, 284, 284, 284, 284, 284, 181, - 284, 284, 284, 284, 284, 96, 284, 95, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 166, 284, 284, 284, - 284, 284, 284, 284, 284, 116, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 74, 284, 284, 284, 284, - - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 78, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 50, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 169, 170, 284, - 284, 235, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 6, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - - 284, 284, 284, 284, 284, 239, 284, 284, 284, 260, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 40, - 284, 284, 284, 284, 284, 284, 284, 284, 162, 284, - 284, 284, 111, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 186, 284, 163, 284, 284, 284, 199, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 41, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 113, 101, 284, 102, - - 284, 284, 284, 100, 284, 284, 284, 284, 284, 284, - 284, 284, 131, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 223, 284, 284, 284, 284, 284, - 284, 284, 284, 164, 284, 284, 284, 284, 284, 167, - 284, 172, 284, 284, 284, 284, 198, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 88, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 48, 284, 284, 284, 25, 284, 284, - 284, 284, 284, 284, 284, 284, 19, 284, 284, 284, - - 284, 26, 35, 284, 141, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 63, 65, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 243, - 284, 284, 284, 210, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 103, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 130, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 254, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - - 284, 284, 284, 284, 284, 284, 135, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 192, 284, 284, 284, 284, 284, 284, 284, 284, 263, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 152, - 284, 284, 284, 284, 284, 284, 284, 97, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 147, 284, 157, 284, 284, - 284, 284, 284, 119, 284, 284, 284, 284, 284, 84, - 284, 284, 284, 284, 184, 284, 284, 284, 284, 284, - 284, 200, 284, 284, 284, 284, 284, 284, 284, 284, - - 284, 284, 284, 284, 215, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 112, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 151, 284, 284, 284, 284, - 284, 66, 67, 284, 284, 284, 284, 284, 49, 284, - 284, 284, 284, 284, 73, 158, 284, 175, 284, 203, - 284, 168, 236, 284, 284, 284, 284, 284, 59, 284, - 160, 284, 284, 284, 284, 284, 9, 284, 284, 284, - 87, 284, 284, 284, 284, 228, 284, 284, 284, 183, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 150, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 137, 284, 242, 284, 284, 284, 284, - 214, 284, 284, 284, 284, 284, 284, 284, 284, 194, - 284, 284, 284, 284, 234, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 257, - 284, 159, 284, 284, 284, 284, 284, 284, 58, 60, - 284, 284, 284, 284, 284, 284, 284, 86, 284, 284, - - 284, 284, 226, 284, 284, 284, 238, 284, 284, 284, - 284, 284, 284, 284, 188, 33, 27, 29, 284, 284, - 284, 284, 284, 284, 284, 284, 34, 28, 30, 284, - 284, 284, 284, 284, 284, 284, 83, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 190, 187, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 57, 284, 284, 114, 284, 104, 284, 284, 284, 284, - 284, 284, 284, 284, 132, 13, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 252, 284, 255, 284, 284, - - 284, 284, 284, 284, 284, 284, 284, 12, 284, 284, - 21, 284, 284, 284, 232, 284, 284, 284, 240, 284, - 61, 284, 196, 284, 284, 189, 284, 284, 284, 284, - 284, 284, 22, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 146, 145, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 191, 185, 284, 201, - 284, 284, 244, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 68, 284, 284, - 284, 227, 284, 284, 284, 284, 171, 284, 284, 284, - - 195, 284, 284, 284, 284, 284, 284, 284, 284, 261, - 262, 143, 62, 284, 284, 153, 284, 284, 98, 99, - 284, 284, 284, 138, 284, 140, 284, 176, 284, 284, - 284, 284, 144, 284, 284, 204, 284, 284, 284, 284, - 284, 284, 284, 121, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 211, 284, 284, 284, 23, - 284, 237, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 177, 284, 284, 225, 284, 256, 284, - 284, 284, 284, 284, 44, 284, 284, 284, 284, 4, - 284, 284, 120, 284, 284, 284, 284, 284, 284, 284, - - 284, 284, 284, 284, 284, 284, 284, 284, 207, 36, - 37, 284, 284, 284, 284, 284, 284, 284, 245, 284, - 284, 284, 284, 284, 284, 213, 284, 284, 284, 180, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 71, - 284, 45, 231, 284, 208, 284, 284, 284, 284, 11, - 284, 284, 284, 284, 284, 284, 284, 178, 75, 284, - 39, 284, 284, 284, 284, 284, 284, 284, 149, 284, - 284, 284, 284, 284, 123, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 212, 117, 284, 284, 105, 106, - 284, 284, 284, 77, 81, 76, 284, 69, 284, 284, - - 284, 284, 284, 10, 284, 284, 284, 229, 284, 284, - 265, 38, 284, 284, 284, 284, 148, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 82, 80, 284, 70, 253, - 284, 284, 284, 284, 284, 284, 284, 165, 284, 284, - 284, 179, 284, 284, 284, 284, 284, 284, 284, 139, - 64, 284, 284, 284, 284, 284, 246, 284, 284, 284, - 284, 284, 284, 284, 118, 284, 79, 124, 125, 128, - 129, 126, 127, 72, 284, 230, 284, 142, 284, 284, - 284, 284, 284, 206, 284, 284, 284, 284, 284, 284, - - 284, 284, 284, 284, 284, 284, 284, 284, 154, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 85, 284, 205, 284, 222, 250, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 5, 284, 197, 284, - 284, 251, 284, 284, 284, 284, 284, 284, 284, 284, - 24, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 122, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 161, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 247, 284, 284, 284, 284, 284, - - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 264, 284, 284, 218, 284, 284, 284, 284, - 284, 248, 284, 284, 284, 284, 284, 284, 249, 284, - 284, 284, 216, 284, 219, 220, 284, 284, 284, 284, - 284, 217, 221, 0 + 1, 1, 273, 273, 277, 277, 281, 281, 285, 285, + 1, 1, 292, 289, 1, 271, 271, 290, 2, 290, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 273, 274, 274, 275, 290, 277, 278, 278, + 279, 290, 284, 281, 282, 282, 283, 290, 285, 286, + 286, 287, 290, 288, 272, 2, 276, 290, 288, 289, + 0, 1, 2, 2, 2, 2, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 273, + 0, 277, 0, 284, 0, 281, 285, 0, 288, 0, + 2, 2, 288, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 288, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 114, + 289, 289, 289, 289, 289, 289, 289, 288, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 96, 289, 289, 289, 289, 289, 289, 8, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 119, 289, 288, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 288, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 54, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 214, 289, 14, 15, 289, 18, + 17, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 113, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 198, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 3, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + + 289, 288, 289, 289, 289, 289, 289, 289, 289, 264, + 289, 289, 263, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 280, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 57, 289, 238, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 58, 289, 289, + + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 187, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 20, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 138, 289, 289, + 280, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 94, 289, 289, 289, 289, 289, 289, 289, 246, + + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 159, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 137, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 93, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + + 31, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 32, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 55, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 112, 289, 289, 289, 289, 289, + 111, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 56, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 160, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 45, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 229, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 49, 289, 50, 289, 289, 289, 289, 289, 97, 289, + 98, 289, 289, 289, 289, 95, 289, 289, 289, 289, + + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 7, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 207, 289, 289, 289, 289, 140, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 46, 289, 289, + + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 179, 289, 178, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 16, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 59, 289, 289, 289, 289, 289, 289, + 289, 289, 186, 289, 289, 289, 289, 289, 289, 100, + 289, 99, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 170, 289, 289, 289, 289, 289, 289, 289, + + 289, 120, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 78, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 82, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 53, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 173, 174, 289, 289, 289, 240, 289, + + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 6, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 244, 289, 289, 289, 265, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 41, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 43, 289, 289, 289, 289, 289, 289, 289, 289, 166, + 289, 289, 289, 115, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 191, 289, 167, 289, 289, 289, + + 204, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 44, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 117, 105, 289, + 106, 289, 289, 289, 104, 289, 289, 289, 289, 289, + 289, 289, 289, 135, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 228, 289, 289, 289, 289, + 289, 289, 289, 289, 168, 289, 289, 289, 289, 289, + 171, 289, 177, 289, 289, 289, 289, 289, 203, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 92, 289, 289, 289, 289, 289, 289, + + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 51, 289, 289, 289, 25, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 19, + 289, 289, 289, 289, 289, 289, 26, 35, 289, 145, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 67, + 69, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 248, 289, 289, 289, 215, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 107, 289, 289, + + 289, 289, 289, 289, 289, 289, 289, 134, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 259, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 139, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 197, 289, 289, 289, + 289, 289, 289, 289, 289, 268, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 156, 289, 289, 289, 289, + 289, 289, 289, 289, 101, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + + 289, 289, 289, 289, 151, 289, 161, 289, 289, 289, + 289, 289, 123, 289, 289, 289, 289, 289, 88, 289, + 289, 289, 289, 189, 289, 289, 289, 289, 289, 289, + 205, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 220, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 116, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 155, 289, 289, 289, 289, 289, + 70, 71, 289, 289, 289, 289, 289, 52, 289, 289, + 289, 289, 289, 77, 162, 289, 180, 289, 208, 289, + 289, 172, 241, 289, 289, 289, 289, 289, 63, 289, + + 164, 289, 289, 289, 289, 289, 9, 289, 289, 289, + 91, 289, 289, 289, 289, 233, 289, 289, 289, 188, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 154, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 141, 289, 247, 289, + 289, 289, 289, 219, 289, 289, 289, 289, 289, 289, + 289, 289, 199, 289, 289, 289, 289, 239, 289, 289, + + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 262, 289, 163, 289, 289, 289, 289, 289, + 289, 289, 62, 64, 289, 289, 289, 289, 289, 289, + 289, 90, 289, 289, 289, 289, 231, 289, 289, 289, + 243, 289, 289, 289, 289, 289, 289, 289, 193, 33, + 27, 29, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 34, 289, 28, 30, 289, 289, 289, 289, 289, + 289, 289, 289, 87, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + + 289, 195, 192, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 61, 289, 289, + 118, 289, 108, 289, 289, 289, 289, 289, 289, 289, + 289, 136, 13, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 257, 289, 260, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 12, 289, 289, 21, 289, + 289, 289, 237, 289, 289, 289, 245, 289, 65, 289, + 201, 289, 289, 194, 289, 289, 60, 289, 289, 289, + 289, 22, 289, 42, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 150, 149, 289, 289, + + 289, 289, 289, 289, 289, 289, 289, 196, 190, 289, + 206, 289, 289, 249, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 72, 289, + 289, 289, 232, 289, 289, 289, 289, 176, 289, 289, + 289, 289, 200, 289, 289, 289, 289, 289, 289, 289, + 289, 266, 267, 147, 66, 289, 289, 157, 289, 289, + 102, 103, 289, 289, 289, 289, 142, 289, 144, 289, + 181, 289, 289, 289, 289, 148, 289, 289, 209, 289, + 289, 289, 289, 289, 289, 289, 125, 289, 289, 289, + + 289, 289, 289, 289, 289, 289, 289, 289, 216, 289, + 289, 289, 23, 289, 242, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 182, 289, 289, 230, + 289, 261, 289, 175, 289, 289, 289, 289, 47, 289, + 289, 289, 289, 4, 289, 289, 124, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 212, 36, 37, 289, 289, 289, 289, + 289, 289, 289, 250, 289, 289, 289, 289, 289, 289, + 218, 289, 289, 289, 185, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 75, 289, 48, 236, 289, 213, + + 289, 289, 289, 289, 11, 289, 289, 289, 289, 289, + 289, 289, 183, 79, 289, 39, 289, 289, 289, 289, + 289, 289, 289, 289, 153, 289, 289, 289, 289, 289, + 127, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 217, 121, 289, 289, 109, 110, 289, 289, 289, 81, + 85, 80, 289, 73, 289, 289, 289, 289, 289, 10, + 289, 289, 289, 234, 289, 289, 270, 38, 289, 289, + 289, 289, 289, 152, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 86, 84, 289, 74, 258, 289, 289, 289, + + 289, 289, 289, 289, 169, 289, 289, 289, 184, 289, + 289, 289, 289, 289, 289, 289, 289, 143, 68, 289, + 289, 289, 289, 289, 251, 289, 289, 289, 289, 289, + 289, 289, 122, 289, 83, 128, 129, 132, 133, 130, + 131, 76, 289, 235, 289, 289, 146, 289, 289, 289, + 289, 289, 211, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 158, 40, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 89, 289, 210, 289, 227, 255, 289, 289, 289, 289, + + 289, 289, 289, 289, 289, 289, 5, 289, 202, 289, + 289, 256, 289, 289, 289, 289, 289, 289, 289, 289, + 24, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 126, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 165, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 252, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 269, 289, 289, 223, 289, 289, 289, 289, + 289, 253, 289, 289, 289, 289, 289, 289, 254, 289, + 289, 289, 221, 289, 224, 225, 289, 289, 289, 289, + + 289, 222, 226, 0 } ; static yyconst flex_int32_t yy_ec[256] = @@ -734,643 +741,657 @@ static yyconst flex_int32_t yy_meta[41] = 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 } ; -static yyconst flex_int16_t yy_base[2859] = +static yyconst flex_int16_t yy_base[2919] = { 0, 0, 0, 38, 41, 44, 46, 59, 65, 71, 77, - 90, 112, 2455, 2203, 81, 5552, 5552, 5552, 96, 52, + 90, 112, 2146, 1869, 81, 5674, 5674, 5674, 96, 52, 106, 63, 107, 111, 70, 128, 130, 133, 57, 88, 76, 135, 141, 117, 148, 145, 160, 164, 185, 176, - 191, 152, 1950, 5552, 5552, 5552, 107, 1843, 5552, 5552, - 5552, 165, 1756, 1310, 5552, 5552, 5552, 211, 1251, 5552, - 5552, 5552, 180, 1045, 5552, 217, 5552, 221, 168, 918, + 191, 152, 1830, 5674, 5674, 5674, 107, 1790, 5674, 5674, + 5674, 165, 1674, 1331, 5674, 5674, 5674, 211, 1221, 5674, + 5674, 5674, 180, 1211, 5674, 217, 5674, 221, 168, 962, 225, 189, 0, 232, 0, 0, 226, 189, 85, 221, 114, 227, 234, 156, 219, 235, 239, 236, 238, 132, 246, 242, 241, 252, 244, 247, 266, 243, 258, 273, 275, 187, 277, 278, 267, 274, 280, 283, 287, 289, 295, 297, 298, 299, 304, 305, 306, 311, 307, 315, - 309, 313, 330, 318, 329, 325, 320, 335, 336, 338, - 339, 340, 343, 346, 342, 349, 350, 359, 351, 806, - 372, 771, 377, 699, 381, 549, 355, 385, 198, 389, - 393, 0, 385, 373, 395, 387, 391, 392, 257, 390, - 394, 396, 397, 399, 401, 414, 403, 412, 420, 422, - 426, 423, 430, 433, 434, 435, 436, 418, 447, 445, - 450, 442, 451, 453, 454, 457, 458, 473, 459, 460, - 409, 467, 475, 477, 484, 469, 487, 488, 485, 492, - - 490, 500, 502, 498, 499, 501, 503, 504, 508, 509, - 511, 513, 516, 514, 515, 519, 521, 520, 528, 522, - 533, 534, 541, 536, 540, 543, 551, 554, 546, 555, - 547, 557, 560, 563, 564, 572, 567, 568, 570, 573, - 574, 576, 577, 578, 579, 587, 594, 590, 596, 598, - 589, 599, 600, 603, 606, 580, 615, 607, 619, 611, - 623, 608, 624, 627, 616, 622, 630, 631, 629, 640, - 636, 645, 641, 648, 647, 652, 644, 660, 646, 655, - 656, 657, 658, 661, 662, 663, 665, 671, 669, 675, - 674, 682, 681, 679, 692, 685, 688, 690, 693, 697, - - 689, 703, 705, 717, 718, 713, 719, 720, 722, 724, - 727, 725, 728, 735, 736, 737, 738, 739, 747, 742, - 744, 751, 750, 752, 761, 746, 765, 767, 759, 769, - 770, 792, 777, 775, 772, 785, 780, 5552, 798, 788, - 818, 789, 790, 825, 803, 805, 810, 807, 814, 812, - 841, 816, 827, 836, 844, 828, 839, 840, 843, 849, - 846, 862, 852, 845, 855, 857, 869, 864, 866, 868, - 877, 870, 872, 876, 879, 878, 778, 881, 883, 886, - 887, 891, 894, 895, 897, 899, 896, 910, 904, 921, - 903, 916, 923, 920, 911, 928, 926, 930, 932, 933, - - 942, 937, 938, 940, 943, 944, 946, 947, 950, 951, - 952, 954, 956, 962, 965, 958, 967, 971, 5552, 975, - 968, 973, 977, 978, 979, 5552, 982, 983, 980, 990, - 987, 999, 992, 995, 1004, 1007, 985, 1008, 1016, 1006, - 1013, 1014, 1017, 1019, 1021, 1022, 1024, 1025, 1027, 1047, - 1030, 1028, 1031, 1032, 1033, 1040, 1052, 1039, 1059, 1042, - 1056, 1074, 1060, 1069, 1062, 1070, 1077, 1071, 1080, 1082, - 1075, 1083, 1084, 1086, 1088, 1091, 1092, 1089, 1095, 5552, - 1105, 1102, 1113, 1109, 1110, 1099, 1112, 1115, 1116, 1119, - 1120, 1122, 1127, 1129, 1137, 1132, 1142, 1138, 1140, 1139, - - 1141, 1146, 1145, 1149, 1147, 1160, 1157, 1162, 1167, 1175, - 1172, 1174, 1182, 1164, 1152, 1178, 1177, 1179, 1181, 1186, - 1094, 1180, 1188, 1195, 1190, 1193, 1197, 1198, 1206, 1203, - 1201, 1204, 1205, 1209, 1213, 1214, 1217, 1220, 1221, 1230, - 1226, 1225, 1229, 1227, 1237, 1238, 1241, 1242, 1239, 1244, - 1245, 1247, 1250, 1248, 1253, 1254, 1256, 1264, 1266, 1270, - 1271, 1275, 1261, 1262, 1283, 1281, 1284, 1282, 1287, 1294, - 1289, 1290, 1291, 1301, 1296, 1297, 1299, 1305, 1313, 1300, - 1309, 1322, 1317, 1319, 1324, 1320, 1325, 1328, 1329, 1330, - 1331, 1332, 1333, 1334, 1336, 1338, 1340, 1335, 1345, 1341, - - 1355, 1359, 1360, 1342, 1362, 1363, 1364, 1365, 1366, 1368, - 1371, 1369, 1374, 1375, 1377, 1376, 1386, 1379, 1380, 1389, - 1393, 1392, 1396, 1401, 1404, 1398, 1405, 1408, 1407, 1410, - 1411, 1413, 1422, 1420, 1414, 1426, 1415, 1427, 1429, 1432, - 1433, 1437, 1438, 5552, 1439, 1446, 1443, 1444, 1445, 1449, - 1451, 1459, 1452, 1454, 1455, 1456, 1462, 1466, 5552, 1464, - 5552, 5552, 1467, 5552, 5552, 1468, 1470, 1480, 1483, 1489, - 1491, 1486, 1493, 1494, 1495, 1504, 1516, 1500, 1501, 1503, - 1499, 1506, 1513, 1465, 1525, 1514, 1530, 1502, 1533, 1527, - 1537, 1538, 1540, 1541, 1542, 1544, 1543, 1546, 1549, 1552, - - 1553, 1555, 1548, 1556, 1565, 1558, 1575, 5552, 1567, 1577, - 1582, 1579, 1586, 1585, 1581, 1583, 1589, 1590, 1593, 1561, - 1592, 1595, 1510, 1596, 1605, 1600, 5552, 1601, 1603, 1602, - 1606, 1613, 1609, 1617, 1618, 1620, 1622, 1623, 1624, 1625, - 1627, 5552, 1626, 1635, 1629, 1636, 1632, 1639, 1640, 1644, - 1645, 1646, 1647, 1652, 1648, 1662, 1654, 1657, 1658, 1661, - 1668, 1664, 1671, 1673, 1679, 1680, 1681, 1682, 1683, 1684, - 1691, 1686, 1693, 1688, 1696, 1698, 1703, 1694, 1697, 1706, - 1695, 1714, 1718, 1719, 1710, 1720, 1727, 1723, 1725, 1726, - 1729, 1731, 1732, 1735, 1736, 1738, 1741, 1740, 1746, 5552, - - 1742, 1748, 5552, 1749, 1750, 1772, 1751, 1753, 1755, 1759, - 1754, 1763, 1774, 1764, 1768, 1776, 1786, 1782, 1787, 1784, - 1792, 1795, 1794, 1798, 1801, 1803, 1810, 1811, 1813, 1821, - 1820, 1802, 1806, 1817, 1836, 1818, 1822, 1826, 1829, 1831, - 1823, 1838, 1833, 1834, 1839, 1849, 1857, 5552, 1851, 1860, - 1852, 1854, 1865, 1864, 1866, 1868, 1870, 1872, 1880, 1873, - 1875, 1876, 1878, 1883, 1884, 1887, 1886, 1891, 1890, 1907, - 5552, 1889, 5552, 1892, 1893, 1902, 1903, 1908, 1909, 1910, - 1911, 1914, 1918, 1922, 1931, 1920, 5552, 1912, 1935, 1936, - 1938, 1930, 1932, 1939, 1942, 1943, 1951, 1946, 1953, 1956, - - 1948, 1949, 1960, 1961, 1962, 1963, 1964, 5552, 1972, 1970, - 1973, 1980, 1982, 1975, 1971, 1985, 1983, 1987, 1990, 1991, - 1992, 1999, 2002, 1995, 1998, 2004, 2013, 5552, 1997, 2008, - 2017, 2019, 2012, 2014, 2020, 2022, 2016, 2024, 2026, 2029, - 2036, 2037, 2034, 2035, 2044, 2033, 2039, 2045, 2050, 2041, - 2047, 2051, 2054, 5552, 2055, 2061, 124, 2058, 2062, 2063, - 2064, 2067, 2066, 2068, 2084, 2086, 2082, 2071, 2085, 2081, - 2083, 2089, 2091, 2092, 2093, 2098, 2096, 5552, 2102, 2103, - 2104, 2099, 2110, 2105, 2107, 5552, 2108, 2119, 2120, 2118, - 2128, 2129, 2130, 2133, 2134, 2135, 2137, 2136, 5552, 2142, - - 2144, 2145, 2143, 2146, 2152, 2157, 2154, 2158, 2159, 2160, - 2161, 2164, 2162, 2165, 2167, 2168, 2175, 2170, 2177, 2179, - 2180, 5552, 2193, 2182, 2183, 2190, 2195, 2192, 2207, 2194, - 2198, 2202, 2208, 2216, 2205, 2211, 2223, 2226, 2214, 2222, - 2234, 2232, 2233, 2240, 2242, 2244, 2230, 2236, 2246, 2245, - 2248, 2252, 2251, 2262, 2263, 2259, 2267, 2261, 2272, 2260, - 2274, 5552, 2276, 2268, 2278, 2282, 2290, 2286, 2287, 2288, - 2294, 2293, 2295, 2297, 2299, 2301, 2304, 2298, 2309, 2300, - 2310, 2317, 2311, 2320, 2321, 5552, 2328, 2324, 2322, 2333, - 2330, 2335, 2336, 2338, 2339, 2340, 2345, 2342, 2346, 2347, - - 2348, 2354, 2355, 5552, 2356, 2364, 2365, 2358, 2368, 2371, - 2351, 2372, 2374, 2375, 2378, 2380, 5552, 2388, 2389, 2379, - 2396, 2386, 2387, 2391, 2398, 2394, 5552, 2399, 2400, 2407, - 2409, 2404, 5552, 2411, 2408, 2412, 2413, 2415, 2416, 2417, - 2420, 2421, 2424, 2426, 2436, 2427, 2433, 5552, 2430, 2445, - 2437, 2443, 2448, 2447, 2451, 2453, 2454, 2458, 2463, 2470, - 2465, 2467, 2457, 2472, 2473, 2474, 2475, 2480, 2481, 5552, - 2482, 2484, 2486, 2487, 2490, 2489, 2492, 2503, 2483, 2499, - 2500, 2505, 2506, 2508, 2510, 2509, 2512, 2513, 2519, 2522, - 2524, 2526, 2525, 2529, 2536, 2541, 2537, 2542, 5552, 2545, - - 2547, 2540, 2548, 2550, 2552, 2553, 2554, 2556, 2557, 2558, - 2559, 2561, 2575, 2578, 2562, 2570, 2568, 2579, 2581, 2583, - 2584, 2585, 2592, 2588, 2589, 2597, 2594, 2595, 2605, 2600, - 2606, 2607, 2608, 2596, 2609, 2614, 2611, 2617, 2616, 2622, - 2618, 2631, 2624, 2632, 2633, 2634, 5552, 2638, 2639, 2642, - 2644, 2648, 2645, 2651, 2655, 2657, 2649, 2652, 2658, 2671, - 2664, 5552, 2666, 5552, 2667, 2668, 2674, 2682, 5552, 2680, - 5552, 2683, 2690, 2677, 2681, 5552, 2691, 2672, 2687, 2698, - 2685, 2695, 2701, 2702, 2704, 2705, 2707, 2708, 2710, 2711, - 2712, 2713, 2715, 2719, 2718, 2725, 2721, 2730, 2727, 2733, - - 2734, 5552, 2736, 2737, 2740, 2742, 2744, 2745, 2746, 2748, - 2749, 2751, 2750, 2760, 2756, 2764, 2763, 2773, 2757, 2778, - 5552, 2774, 2780, 2775, 2781, 5552, 2784, 2782, 2785, 2790, - 2783, 2792, 2793, 2795, 2799, 2801, 2796, 2809, 2811, 2802, - 2814, 2817, 2803, 2818, 2825, 2824, 2830, 2832, 2826, 2834, - 2835, 2836, 2837, 2838, 2840, 2847, 2850, 2846, 2855, 2842, - 2852, 2860, 2861, 2845, 2853, 2862, 2864, 2867, 2868, 2870, - 2875, 2871, 2872, 2874, 2876, 5552, 2885, 2879, 2889, 2886, - 2890, 2893, 2877, 2895, 2900, 2896, 2903, 2906, 2898, 5552, - 2902, 5552, 2904, 2916, 2921, 2924, 2925, 2927, 2932, 2926, - - 2928, 2933, 2935, 2934, 2936, 2941, 2942, 2945, 2946, 2949, - 2959, 2944, 2956, 2948, 2951, 2960, 2962, 5552, 2963, 2967, - 2970, 2968, 2972, 2973, 2979, 2977, 2975, 2982, 2983, 2996, - 5552, 2991, 2998, 2997, 3000, 3008, 3004, 3012, 3007, 5552, - 3010, 3011, 3020, 3016, 3018, 5552, 3023, 5552, 3017, 3019, - 3024, 3026, 3028, 3033, 3034, 3037, 3045, 3040, 3022, 3043, - 3044, 3047, 3055, 3050, 3052, 3056, 5552, 3058, 3059, 2908, - 3062, 3064, 3065, 3066, 3054, 5552, 3071, 3081, 3073, 3076, - 3078, 3083, 3084, 3087, 3089, 3090, 3085, 3091, 3099, 3095, - 3096, 3100, 3109, 3110, 3116, 5552, 3112, 3118, 3125, 3121, - - 3122, 3103, 3123, 3124, 3128, 3129, 3130, 3131, 3132, 3133, - 3137, 3135, 3142, 3138, 3139, 3156, 3149, 3146, 3153, 3157, - 3159, 3160, 3161, 3165, 3169, 3171, 3163, 3181, 3184, 3174, - 3176, 3187, 3178, 3194, 3189, 5552, 3196, 3191, 3199, 3198, - 3200, 3202, 3204, 3212, 3207, 3208, 3210, 3217, 3213, 5552, - 3235, 3218, 3214, 3225, 3222, 3244, 3215, 3227, 3231, 3240, - 3241, 3242, 3245, 3246, 3248, 3251, 3253, 5552, 5552, 3255, - 3257, 5552, 3260, 3256, 3264, 3262, 3259, 3263, 3272, 3274, - 3270, 3275, 3271, 3282, 5552, 3281, 3290, 3285, 3287, 3295, - 3299, 3292, 3301, 3300, 3288, 3302, 3303, 3304, 3310, 3311, - - 3312, 3320, 3316, 3317, 3318, 5552, 3319, 3323, 3325, 5552, - 3324, 3326, 3327, 3335, 3346, 3347, 3341, 3349, 3329, 3353, - 3354, 3355, 3356, 3364, 3362, 3360, 3369, 3370, 3374, 3372, - 3380, 3382, 3390, 3391, 3392, 3361, 3393, 3394, 3401, 5552, - 3396, 3399, 3397, 3400, 3410, 3402, 3411, 3407, 5552, 3414, - 3412, 3413, 5552, 3331, 3415, 3421, 3423, 3417, 3433, 3428, - 3430, 3432, 3436, 5552, 3439, 5552, 3363, 3429, 3442, 5552, - 3440, 3446, 3448, 3450, 3447, 3454, 3455, 3462, 3451, 3457, - 3463, 3464, 3465, 3467, 3474, 3470, 5552, 3475, 3473, 3477, - 3478, 3480, 3482, 3485, 3488, 3490, 5552, 5552, 3496, 5552, - - 3497, 3492, 3498, 5552, 3501, 3499, 3510, 3502, 3511, 3505, - 3518, 3515, 5552, 3520, 3509, 3521, 3524, 3525, 3526, 3528, - 3530, 3531, 3532, 3535, 5552, 3536, 3537, 3544, 3534, 3539, - 3545, 3550, 3551, 5552, 3553, 3560, 3561, 3563, 3565, 5552, - 3564, 5552, 3566, 3569, 3574, 3567, 5552, 3578, 3570, 3583, - 3577, 3585, 3587, 3588, 3591, 3592, 3594, 3601, 3597, 3598, - 3599, 5552, 3600, 3604, 3606, 3608, 3612, 3613, 3621, 3617, - 3623, 3616, 3629, 3626, 3630, 3634, 3636, 3637, 3639, 3640, - 3648, 3643, 3644, 5552, 3650, 3653, 3654, 5552, 3651, 3655, - 3666, 3660, 3663, 3657, 3668, 3669, 5552, 3667, 3671, 3672, - - 3680, 5552, 5552, 3670, 5552, 3686, 3674, 3687, 3688, 3690, - 3691, 3694, 3695, 3699, 3701, 3703, 3705, 3696, 3714, 3717, - 3718, 3716, 3721, 3722, 5552, 5552, 3724, 3725, 3727, 3731, - 3732, 3734, 3735, 3743, 3739, 3747, 3750, 3752, 3760, 5552, - 3741, 3738, 3755, 5552, 3756, 3761, 3762, 3763, 3764, 3765, - 3768, 3771, 3772, 3767, 3774, 3773, 3775, 3777, 3786, 3780, - 3788, 3790, 5552, 3792, 3794, 3795, 3797, 3798, 3802, 3803, - 3804, 3805, 5552, 3808, 3810, 3812, 3817, 3811, 3818, 3827, - 3833, 3835, 3829, 3836, 3837, 3839, 3841, 3842, 5552, 3845, - 3843, 3846, 3807, 3853, 3855, 3856, 3858, 3859, 3861, 3864, - - 3868, 3870, 3862, 3865, 3871, 3872, 5552, 3873, 3881, 3882, - 3884, 3886, 3887, 3889, 3894, 3897, 3888, 3890, 3898, 3900, - 5552, 3902, 3903, 3906, 3908, 3914, 3909, 3915, 3916, 5552, - 3919, 3920, 3925, 3923, 3924, 3933, 3927, 3939, 3929, 5552, - 3935, 3938, 3946, 3942, 3944, 3945, 3948, 5552, 3954, 3955, - 3956, 3958, 3961, 3968, 3964, 3963, 3965, 3970, 3972, 3974, - 3975, 3973, 3986, 3991, 3989, 5552, 3976, 5552, 3990, 3994, - 3998, 4000, 3997, 5552, 4002, 4004, 4006, 4007, 4003, 5552, - 4011, 4008, 4010, 4014, 5552, 4013, 4027, 4015, 4021, 4029, - 4030, 5552, 4037, 4038, 4034, 4046, 4048, 4044, 4045, 4049, - - 4051, 4047, 4052, 4053, 5552, 4056, 4055, 4065, 4057, 4066, - 4067, 4068, 4070, 4073, 5552, 4074, 4076, 4077, 4078, 4080, - 4081, 4083, 4091, 4089, 4082, 5552, 4090, 4093, 4105, 4094, - 4107, 5552, 5552, 4103, 4110, 4112, 4104, 4113, 5552, 4116, - 4124, 4119, 4122, 4123, 5552, 5552, 4126, 5552, 4127, 5552, - 4128, 5552, 5552, 4129, 4133, 4135, 4136, 4138, 5552, 4144, - 5552, 4152, 4147, 4139, 4149, 4151, 5552, 4150, 4153, 4158, - 5552, 4154, 4166, 4161, 4162, 5552, 4168, 4164, 4170, 5552, - 4172, 4175, 4176, 4180, 4182, 4178, 4186, 4187, 4189, 4191, - 4196, 4198, 4202, 4193, 4199, 4203, 4208, 4206, 4210, 4211, - - 4212, 4214, 4216, 4220, 4221, 4223, 4224, 4225, 4227, 4226, - 4229, 4235, 4238, 4237, 4239, 4240, 4241, 4242, 4243, 4248, - 4251, 4252, 5552, 4250, 4254, 4255, 4258, 4260, 4264, 4270, - 4272, 4280, 4281, 5552, 4283, 5552, 4285, 4273, 4277, 4287, - 5552, 4289, 4290, 4292, 4293, 4294, 4295, 4298, 4296, 5552, - 4300, 4301, 4302, 4305, 5552, 4310, 4318, 4307, 4312, 4320, - 4321, 4322, 4324, 4328, 4326, 4332, 4334, 4335, 4337, 4338, - 4339, 4341, 4343, 4347, 4349, 4348, 4352, 4357, 4361, 5552, - 4356, 5552, 4362, 4364, 4365, 4368, 4366, 4369, 5552, 5552, - 4370, 4374, 4379, 4372, 4376, 4381, 4389, 5552, 4382, 4391, - - 4399, 4392, 5552, 4384, 4396, 4401, 5552, 4402, 4407, 4403, - 4409, 4410, 4411, 4413, 5552, 5552, 5552, 5552, 4417, 4419, - 4420, 4421, 4426, 4427, 4425, 4428, 5552, 5552, 5552, 4432, - 4430, 4440, 4431, 4429, 4438, 4442, 5552, 4446, 4449, 4451, - 4452, 4458, 4460, 4455, 4463, 4453, 4464, 4472, 4465, 4473, - 4469, 4475, 4477, 4479, 5552, 5552, 4481, 4486, 4487, 4489, - 4491, 4492, 4499, 4498, 4495, 4501, 4503, 4504, 4506, 4505, - 5552, 4508, 4516, 5552, 4509, 5552, 4515, 4522, 4507, 4523, - 4524, 4526, 4528, 4530, 5552, 5552, 4531, 4514, 4532, 4538, - 4540, 4543, 4541, 4545, 4542, 5552, 4547, 5552, 4546, 4549, - - 4555, 4563, 4564, 4571, 4568, 4569, 4570, 5552, 4572, 4560, - 5552, 4574, 4576, 4579, 5552, 4582, 4585, 4587, 5552, 4589, - 5552, 4592, 5552, 4580, 4599, 5552, 4595, 4596, 4602, 4604, - 4605, 4606, 5552, 4607, 4610, 4611, 4614, 4616, 4618, 4620, - 4621, 4622, 4629, 4627, 4624, 5552, 5552, 4638, 4630, 4634, - 4635, 4640, 4647, 4642, 4644, 4650, 5552, 5552, 4651, 5552, - 4652, 4658, 5552, 4643, 4659, 4657, 4664, 4645, 4665, 4666, - 4671, 4672, 4673, 4683, 4676, 4679, 4686, 4688, 4692, 4696, - 4684, 4694, 4690, 4698, 4702, 4701, 4703, 5552, 4705, 4706, - 4707, 5552, 4713, 4708, 4717, 4714, 5552, 4718, 4720, 4722, - - 5552, 4726, 4733, 4730, 4728, 4735, 4742, 4738, 4739, 5552, - 5552, 5552, 5552, 4746, 4740, 5552, 4743, 4747, 5552, 5552, - 4749, 4753, 4755, 5552, 4754, 5552, 4756, 5552, 4760, 4763, - 4769, 4764, 5552, 4767, 4778, 5552, 4781, 4784, 4786, 4787, - 4771, 4757, 4788, 5552, 4795, 4792, 4794, 4801, 4790, 4798, - 4802, 4803, 4810, 4805, 4812, 5552, 4806, 4809, 4813, 5552, - 4815, 5552, 4816, 4818, 4822, 4823, 4820, 4827, 4834, 4835, - 4817, 4838, 4828, 5552, 4845, 4849, 5552, 4839, 5552, 4851, - 4841, 4852, 4853, 4854, 5552, 4856, 4858, 4861, 4862, 5552, - 4863, 4865, 5552, 4866, 4867, 4873, 4875, 4870, 4877, 4882, - - 4880, 4892, 4883, 4885, 4887, 4894, 4895, 4903, 5552, 5552, - 5552, 4899, 4888, 4912, 4910, 4913, 4920, 4901, 5552, 4917, - 4918, 4905, 4921, 4925, 4927, 5552, 4929, 4930, 4931, 5552, - 4933, 4935, 4936, 4937, 4939, 4946, 4948, 4953, 4950, 5552, - 4957, 5552, 5552, 4954, 5552, 4938, 4958, 4959, 4961, 5552, - 4964, 4965, 4966, 4967, 4969, 4970, 4972, 5552, 5552, 4975, - 5552, 4983, 4971, 4984, 4987, 4988, 4991, 4992, 5552, 4993, - 4994, 4995, 4998, 5001, 5552, 5003, 5002, 5004, 5005, 5008, - 5006, 5012, 5015, 5018, 5552, 5552, 5017, 5019, 5552, 5552, - 5028, 5034, 5016, 5552, 5552, 5552, 5039, 5552, 5041, 5045, - - 5049, 5053, 5031, 5552, 5055, 5044, 5052, 5552, 5056, 5058, - 5552, 5552, 5060, 5059, 5064, 5065, 5552, 5068, 5069, 5070, - 5075, 5077, 5072, 5079, 5081, 5089, 5091, 5082, 5094, 5092, - 5095, 5096, 5097, 5099, 5103, 5552, 5552, 5105, 5552, 5552, - 5111, 5115, 5118, 5120, 5122, 5124, 5126, 5552, 5127, 5129, - 5112, 5552, 5131, 5133, 5134, 5137, 5138, 5135, 5141, 5552, - 5552, 5142, 5143, 5144, 5151, 5145, 5552, 5153, 5161, 5154, - 5157, 5158, 5164, 5159, 5552, 5165, 5552, 5552, 5552, 5552, - 5552, 5552, 5552, 5552, 5166, 5552, 5172, 5552, 5167, 5174, - 5102, 5173, 5178, 5552, 5176, 5184, 5181, 5185, 5179, 5188, - - 5191, 5196, 5198, 5197, 5200, 5202, 5201, 5203, 5552, 5205, - 5206, 5208, 5209, 5211, 5220, 5228, 5230, 5212, 5214, 5232, - 5233, 5236, 5224, 5237, 5245, 5240, 5242, 5244, 5246, 5248, - 5552, 5251, 5552, 5250, 5552, 5552, 5256, 5257, 5253, 5259, - 5269, 5270, 5260, 5267, 5271, 5273, 5552, 5275, 5552, 5277, - 5279, 5552, 5276, 5281, 5282, 5284, 5285, 5287, 5288, 5289, - 5552, 5292, 5299, 5303, 5300, 5313, 5308, 5311, 5312, 5314, - 5304, 5321, 5320, 5327, 5552, 5324, 5322, 5329, 5330, 5331, - 5338, 5333, 5334, 5339, 5552, 5343, 5344, 5346, 5335, 5345, - 5348, 5357, 5355, 5359, 5552, 5337, 5365, 5362, 5367, 5369, - - 5371, 5373, 5374, 5378, 5379, 5383, 5387, 5375, 5388, 5389, - 5391, 5390, 5552, 5398, 5392, 5552, 5394, 5400, 5401, 5402, - 5403, 5552, 5407, 5410, 5412, 5413, 5416, 5417, 5552, 5419, - 5423, 5425, 5552, 5428, 5552, 5552, 5430, 5426, 5427, 5437, - 5439, 5552, 5552, 5552, 5460, 5467, 5474, 5481, 5488, 88, - 5495, 5502, 5509, 5516, 5523, 5530, 5537, 5544 + 309, 313, 330, 318, 329, 325, 320, 335, 336, 339, + 340, 343, 345, 342, 346, 350, 349, 355, 357, 907, + 373, 754, 376, 671, 382, 632, 365, 386, 198, 390, + 394, 0, 386, 374, 396, 388, 392, 393, 257, 391, + 395, 397, 398, 400, 402, 415, 404, 413, 421, 423, + 427, 424, 431, 434, 435, 436, 437, 419, 448, 446, + 451, 443, 452, 454, 455, 458, 459, 474, 460, 461, + 410, 468, 476, 478, 485, 470, 488, 489, 486, 493, + + 491, 501, 503, 499, 500, 502, 504, 505, 509, 510, + 512, 514, 517, 515, 516, 520, 522, 521, 529, 523, + 534, 535, 542, 537, 538, 544, 541, 555, 556, 547, + 558, 551, 559, 560, 565, 568, 575, 570, 567, 571, + 579, 574, 577, 578, 582, 580, 594, 601, 592, 599, + 602, 600, 605, 606, 607, 608, 584, 617, 610, 581, + 622, 628, 612, 626, 631, 618, 614, 633, 635, 637, + 644, 640, 647, 643, 648, 649, 650, 652, 661, 656, + 659, 658, 660, 662, 664, 665, 668, 666, 674, 669, + 678, 680, 688, 686, 685, 698, 690, 691, 695, 701, + + 693, 708, 702, 723, 712, 724, 713, 705, 694, 719, + 732, 729, 735, 737, 738, 739, 740, 741, 742, 750, + 745, 748, 755, 758, 762, 766, 746, 772, 747, 776, + 770, 774, 781, 803, 778, 768, 780, 782, 785, 5674, + 808, 786, 828, 792, 787, 815, 810, 812, 801, 817, + 825, 818, 829, 813, 821, 835, 851, 836, 838, 846, + 848, 852, 850, 860, 861, 853, 856, 864, 875, 867, + 870, 871, 882, 874, 872, 877, 881, 883, 887, 896, + 889, 897, 884, 898, 901, 904, 902, 908, 905, 909, + 912, 926, 906, 923, 928, 925, 931, 933, 935, 936, + + 937, 938, 946, 943, 942, 944, 949, 953, 955, 959, + 952, 945, 961, 966, 970, 967, 975, 977, 960, 983, + 5674, 985, 968, 980, 978, 990, 991, 5674, 993, 992, + 994, 1001, 996, 1004, 997, 1000, 1007, 1022, 999, 1006, + 1023, 1020, 1021, 783, 1024, 1025, 1027, 1028, 1030, 1031, + 1033, 1036, 1053, 1037, 1040, 1038, 1039, 1044, 1046, 1065, + 1048, 1051, 1062, 1066, 1077, 1064, 1081, 1068, 1076, 1085, + 1083, 1087, 1089, 1090, 1092, 1093, 1094, 1095, 1097, 1098, + 1099, 1103, 5674, 1101, 1111, 1119, 1118, 1105, 1121, 1122, + 1123, 1124, 1125, 1126, 1131, 1127, 1144, 1134, 1137, 1147, + + 1145, 1148, 1132, 1150, 1153, 1152, 1154, 1156, 1167, 1162, + 1160, 1169, 1177, 1179, 1181, 1182, 1164, 1183, 1184, 1174, + 1187, 1188, 1192, 1190, 1196, 1194, 1205, 1200, 1201, 1202, + 1203, 1212, 1209, 1208, 1217, 1210, 1226, 1216, 1230, 1231, + 1218, 1224, 1243, 1233, 1238, 1240, 1245, 1246, 1247, 1248, + 1251, 1253, 1254, 1256, 1255, 1258, 1259, 1262, 1263, 1265, + 1270, 1277, 1272, 1273, 1280, 1284, 1285, 1286, 1293, 1290, + 1294, 1296, 1292, 1307, 1291, 1298, 1302, 1314, 1305, 1309, + 1310, 1313, 1323, 1320, 1325, 1334, 1326, 1312, 1336, 1329, + 1339, 1335, 1340, 1342, 1343, 1344, 1351, 1346, 1347, 1352, + + 1354, 1355, 1349, 1359, 1357, 1376, 1361, 1365, 1363, 1366, + 1374, 1379, 1380, 1381, 1383, 1384, 1386, 1387, 1389, 1390, + 1394, 1392, 1407, 1395, 1391, 1404, 1408, 1413, 1414, 1419, + 1420, 1398, 1422, 1423, 1426, 1427, 1430, 1428, 1431, 1435, + 1437, 1438, 1441, 1443, 1444, 1446, 1449, 1453, 1454, 5674, + 1448, 1461, 1459, 1460, 1462, 1466, 1468, 1475, 1470, 1473, + 1471, 1472, 1476, 1483, 5674, 1484, 5674, 5674, 1477, 5674, + 5674, 1481, 1487, 1482, 1500, 1506, 1508, 1501, 1485, 1510, + 1511, 1519, 1532, 1515, 1514, 1522, 1516, 1518, 1526, 1523, + 1527, 1537, 1542, 1548, 1546, 1554, 1545, 1517, 1538, 1556, + + 1555, 1558, 1561, 1562, 1564, 1566, 1567, 1565, 1570, 1571, + 1578, 1576, 1574, 1590, 5674, 1586, 1594, 1598, 1595, 1602, + 1601, 1597, 1599, 1605, 1606, 1609, 1608, 1610, 1612, 1616, + 1618, 1623, 1619, 5674, 1621, 1622, 1627, 1628, 1633, 1634, + 1635, 1620, 1640, 1642, 1643, 1644, 1646, 1647, 5674, 1585, + 1652, 1648, 1654, 1655, 1660, 1661, 1656, 1663, 1664, 1665, + 1667, 1666, 1668, 1685, 1677, 1682, 1672, 1675, 1690, 1692, + 1693, 1700, 1695, 1701, 1697, 1703, 1702, 1704, 1705, 1707, + 1714, 1709, 1718, 1713, 1725, 1734, 1716, 1721, 1729, 1730, + 1731, 1736, 1738, 1739, 1743, 1744, 1751, 1746, 1748, 1750, + + 1753, 1755, 1756, 1759, 1764, 1760, 1767, 1769, 1762, 5674, + 1770, 1772, 5674, 1773, 1775, 1797, 1776, 1779, 1780, 1785, + 1778, 1788, 1789, 1791, 1807, 1801, 1817, 1809, 1810, 1819, + 1820, 1821, 1822, 1824, 1827, 1831, 1838, 1839, 1799, 1847, + 1846, 1828, 1829, 1843, 1862, 1844, 1849, 1851, 1852, 1857, + 1855, 1859, 1866, 1853, 1871, 1874, 1875, 5674, 1883, 1884, + 1878, 1885, 1892, 1889, 1891, 1893, 1895, 1896, 1905, 1900, + 1901, 1903, 1906, 1907, 1911, 1913, 1914, 1915, 1916, 1917, + 1933, 5674, 1919, 5674, 1918, 1928, 1930, 1929, 1936, 1937, + 1939, 1940, 1941, 1938, 1950, 1959, 1942, 5674, 1956, 1963, + + 1960, 1965, 1966, 1958, 1967, 1969, 1971, 1976, 1973, 1981, + 1974, 1979, 1983, 1984, 1987, 1990, 1991, 1992, 5674, 1999, + 1994, 2001, 2008, 1998, 2006, 2009, 2011, 2012, 2016, 2017, + 2018, 2019, 2020, 2029, 2030, 2021, 2032, 2035, 2031, 5674, + 2028, 2039, 2047, 2043, 2045, 2042, 2049, 2050, 2052, 2053, + 2054, 2057, 2060, 2061, 2069, 2070, 2062, 2066, 2074, 2067, + 2076, 2079, 2082, 2081, 2083, 2084, 2085, 5674, 2087, 2089, + 124, 2093, 2094, 2096, 2095, 2102, 2098, 2101, 2118, 2119, + 2115, 2114, 2117, 2123, 2124, 2125, 2126, 2127, 2128, 2129, + 2131, 5674, 2105, 2133, 2134, 2136, 2139, 2140, 2143, 5674, + + 2153, 2156, 2142, 2155, 2163, 2158, 2164, 2165, 2167, 2172, + 2168, 2171, 5674, 2175, 2178, 2180, 2181, 2182, 2184, 2189, + 2191, 2192, 2193, 2196, 2194, 2195, 2199, 2197, 2200, 2204, + 2213, 2203, 2205, 2210, 2214, 5674, 2226, 2215, 2224, 2217, + 2228, 2227, 2241, 2231, 2234, 2236, 2242, 2251, 2244, 2238, + 2252, 2253, 2258, 2262, 2261, 2267, 2268, 2265, 2269, 2275, + 2277, 2278, 2279, 2283, 2281, 2284, 2285, 2286, 2293, 2294, + 2291, 2302, 2300, 2307, 2305, 2310, 5674, 2311, 2312, 2295, + 2317, 2325, 2322, 2323, 2329, 2330, 2331, 2332, 2333, 2334, + 2335, 2338, 2336, 2337, 2342, 2349, 2347, 2353, 2357, 2358, + + 5674, 2359, 2361, 2363, 2364, 2370, 2365, 2372, 2374, 2376, + 2377, 2378, 2380, 2383, 2384, 2386, 2388, 2391, 2390, 2389, + 5674, 2394, 2395, 2396, 2404, 2405, 2411, 2412, 2414, 2418, + 2402, 2419, 2421, 2422, 5674, 2430, 2432, 2429, 2433, 2431, + 2436, 2437, 2439, 2441, 5674, 2442, 2443, 2450, 2451, 2446, + 5674, 2453, 2449, 2454, 2456, 2457, 2458, 2459, 2464, 2465, + 2467, 2470, 2473, 2477, 2478, 5674, 2479, 2487, 2488, 2480, + 2491, 2482, 2492, 2493, 2497, 2501, 2495, 2510, 2512, 2513, + 2514, 2494, 2517, 2518, 2519, 2521, 2522, 5674, 2515, 2525, + 2527, 2530, 2528, 2534, 2536, 2544, 2539, 2540, 2546, 2541, + + 2547, 2548, 2549, 2550, 2553, 2561, 2563, 2564, 2566, 2568, + 2569, 2570, 2577, 2582, 2583, 2585, 5674, 2588, 2589, 2591, + 2578, 2580, 2592, 2595, 2597, 2599, 2601, 2603, 2604, 2605, + 2612, 2616, 2613, 2620, 2617, 2622, 2614, 2625, 2626, 2627, + 2628, 2635, 2632, 2631, 2640, 2639, 2638, 2648, 2643, 2649, + 2650, 2651, 2652, 2653, 2656, 2654, 2660, 2661, 2665, 2667, + 2675, 2676, 2677, 2678, 2681, 5674, 2680, 2682, 2684, 2690, + 2693, 2694, 2696, 2698, 2703, 2688, 2695, 2705, 2715, 2711, + 5674, 2712, 5674, 2714, 2716, 2717, 2726, 2719, 5674, 2723, + 5674, 2724, 2729, 2731, 2732, 5674, 2733, 2734, 2737, 2740, + + 2738, 2742, 2743, 2744, 2745, 2750, 2752, 2756, 2755, 2757, + 2760, 2761, 2764, 2766, 2768, 2772, 2765, 2777, 2773, 2775, + 2783, 2782, 2784, 5674, 2791, 2788, 2793, 2792, 2794, 2796, + 2797, 2799, 2800, 2802, 2805, 2810, 2803, 2816, 2819, 2831, + 2809, 2832, 5674, 2813, 2834, 2817, 2835, 5674, 2837, 2828, + 2838, 2843, 2840, 2830, 2845, 2846, 2850, 2847, 2853, 2858, + 2862, 2863, 2857, 2865, 2855, 2869, 2877, 2874, 2881, 2883, + 2891, 2887, 2875, 2878, 2867, 2889, 2890, 2900, 2901, 2897, + 2904, 2899, 2903, 2906, 2907, 2910, 2911, 2913, 2915, 2916, + 2914, 2919, 2923, 2918, 2920, 2921, 2924, 5674, 2937, 2927, + + 2934, 2941, 2943, 2946, 2925, 2944, 2948, 2950, 2952, 2954, + 2951, 5674, 2953, 5674, 2955, 2961, 2970, 2972, 2974, 2975, + 2976, 2978, 2981, 2982, 2983, 2984, 2985, 2987, 2990, 2991, + 2996, 2997, 2998, 3012, 2995, 3000, 3002, 3007, 3009, 3014, + 5674, 3016, 3017, 3018, 3022, 3023, 3024, 3027, 3031, 3030, + 3033, 3034, 3045, 5674, 3036, 3053, 3037, 3057, 3064, 3046, + 3065, 3060, 5674, 3049, 3061, 3068, 3063, 3070, 3077, 5674, + 3072, 5674, 3067, 3074, 3081, 3078, 3082, 3083, 3084, 3085, + 3091, 3094, 3103, 3092, 3100, 3101, 3102, 3104, 3113, 3106, + 3108, 3109, 5674, 3111, 3114, 3118, 3125, 3126, 3132, 3129, + + 3116, 5674, 3133, 3136, 3123, 3140, 3141, 3144, 3145, 3146, + 3149, 3150, 3147, 3151, 3163, 3155, 3154, 3158, 3169, 3170, + 3175, 5674, 3176, 3156, 3183, 3179, 3180, 3182, 3185, 3186, + 3187, 3189, 3190, 3191, 3193, 3198, 3197, 3194, 3195, 3200, + 3201, 3214, 3211, 3203, 3215, 3219, 3218, 3221, 3225, 3226, + 3229, 3231, 3222, 3233, 3236, 3240, 3243, 3245, 3246, 3253, + 3248, 5674, 3255, 3252, 3260, 3256, 3259, 3258, 3265, 3269, + 3271, 3267, 3268, 3278, 3273, 5674, 3280, 3275, 3292, 3286, + 3276, 3301, 3296, 3282, 3277, 3300, 3303, 3306, 3304, 3308, + 3309, 3312, 3313, 5674, 5674, 3315, 3316, 3317, 5674, 3318, + + 3319, 3328, 3321, 3323, 3331, 3325, 3334, 3335, 3336, 3338, + 3339, 5674, 3342, 3351, 3348, 3349, 3358, 3359, 3363, 3360, + 3357, 3350, 3354, 3367, 3369, 3371, 3374, 3375, 3383, 3378, + 3380, 3381, 5674, 3382, 3384, 3390, 5674, 3387, 3388, 3391, + 3399, 3394, 3407, 3404, 3410, 3396, 3412, 3413, 3414, 3416, + 3418, 3427, 3422, 3423, 3425, 3429, 3431, 5674, 3433, 3434, + 3439, 3441, 3444, 3452, 3453, 3454, 3449, 3455, 3456, 3463, + 5674, 3458, 3461, 3462, 3464, 3472, 3469, 3473, 3471, 5674, + 3476, 3477, 3479, 5674, 3478, 3485, 3493, 3495, 3480, 3503, + 3498, 3482, 3499, 3501, 5674, 3502, 5674, 3506, 3508, 3511, + + 5674, 3513, 3514, 3516, 3518, 3515, 3522, 3523, 3530, 3519, + 3531, 3532, 3533, 3534, 3536, 3543, 3535, 5674, 3544, 3542, + 3546, 3547, 3553, 3551, 3554, 3559, 3557, 5674, 5674, 3566, + 5674, 3558, 3567, 3568, 5674, 3571, 3573, 3578, 3574, 3576, + 3579, 3589, 3582, 5674, 3585, 3580, 3593, 3595, 3596, 3597, + 3598, 3599, 3601, 3603, 3602, 5674, 3605, 3607, 3613, 3606, + 3614, 3620, 3626, 3615, 5674, 3628, 3630, 3622, 3636, 3637, + 5674, 3629, 5674, 3639, 3642, 3643, 3645, 3646, 5674, 3648, + 3649, 3653, 3654, 3656, 3658, 3659, 3662, 3666, 3668, 3675, + 3671, 3670, 3673, 5674, 3672, 3678, 3686, 3689, 3679, 3677, + + 3693, 3695, 3696, 3699, 3702, 3704, 3705, 3708, 3703, 3710, + 3711, 3714, 3724, 3717, 3720, 5674, 3721, 3725, 3729, 5674, + 3727, 3728, 3736, 3738, 3731, 3739, 3742, 3741, 3744, 5674, + 3750, 3751, 3746, 3747, 3756, 3760, 5674, 5674, 3764, 5674, + 3765, 3753, 3767, 3754, 3743, 3775, 3774, 3777, 3779, 3780, + 3781, 3787, 3788, 3795, 3796, 3797, 3800, 3674, 3793, 5674, + 5674, 3805, 3806, 3802, 3809, 3814, 3798, 3812, 3822, 3818, + 3819, 3825, 3826, 3833, 5674, 3834, 3817, 3835, 5674, 3828, + 3836, 3829, 3840, 3842, 3843, 3844, 3846, 3850, 3848, 3851, + 3849, 3857, 3858, 3859, 3865, 3862, 3867, 5674, 3868, 3870, + + 3871, 3872, 3873, 3874, 3879, 3882, 3881, 5674, 3883, 3885, + 3888, 3886, 3887, 3892, 3903, 3907, 3909, 3896, 3910, 3912, + 3915, 3917, 3914, 5674, 3920, 3918, 3921, 3922, 3929, 3931, + 3926, 3933, 3935, 3937, 3939, 3942, 3944, 3949, 3946, 3950, + 3951, 3952, 5674, 3956, 3958, 3955, 3963, 3964, 3966, 3967, + 3968, 3976, 3973, 3978, 3977, 3980, 5674, 3981, 3983, 3985, + 3986, 3988, 3989, 3994, 3995, 5674, 3998, 3991, 4005, 3999, + 4002, 4003, 4007, 4015, 4014, 5674, 4018, 4019, 4020, 4021, + 4022, 4023, 4026, 4027, 5674, 4032, 4033, 4036, 4045, 4029, + 4047, 4043, 4049, 4040, 4042, 4056, 4052, 4057, 4058, 4060, + + 4062, 4070, 4074, 4071, 5674, 4063, 5674, 4072, 4077, 4079, + 4084, 4080, 5674, 4082, 4087, 4089, 4086, 4090, 5674, 4092, + 4091, 4094, 4096, 5674, 4110, 4106, 4095, 4105, 4119, 4120, + 5674, 4123, 4124, 4125, 4132, 4134, 4136, 4129, 4137, 4133, + 4139, 4097, 4140, 5674, 4142, 4144, 4149, 4150, 4151, 4152, + 4154, 4157, 4161, 5674, 4159, 4162, 4163, 4165, 4166, 4167, + 4168, 4175, 4171, 4176, 5674, 4180, 4181, 4184, 4185, 4112, + 5674, 5674, 4188, 4189, 4192, 4191, 4197, 5674, 4199, 4206, + 4201, 4205, 4207, 5674, 5674, 4209, 5674, 4210, 5674, 4211, + 4214, 5674, 5674, 4215, 4212, 4218, 4219, 4222, 5674, 4227, + + 5674, 4235, 4231, 4233, 4234, 4236, 5674, 4239, 4240, 4243, + 5674, 4237, 4250, 4245, 4247, 5674, 4254, 4248, 4251, 5674, + 4259, 4265, 4261, 4268, 4255, 4270, 4271, 4272, 4274, 4276, + 4278, 4281, 4283, 4286, 4287, 4288, 4289, 4294, 4291, 4296, + 4297, 4299, 4301, 4302, 4307, 4310, 4311, 4304, 4312, 4313, + 4314, 4318, 4320, 4324, 4327, 4328, 4329, 4330, 4332, 4333, + 4335, 4338, 4342, 4331, 4341, 5674, 4336, 4343, 4347, 4358, + 4348, 4359, 4363, 4353, 4367, 4371, 5674, 4373, 5674, 4375, + 4360, 4369, 4377, 5674, 4379, 4382, 4381, 4384, 4383, 4385, + 4388, 4386, 5674, 4390, 4391, 4393, 4395, 5674, 4398, 4409, + + 4397, 4401, 4410, 4411, 4412, 4414, 4418, 4416, 4421, 4423, + 4431, 4424, 4428, 4427, 4433, 4429, 4436, 4439, 4445, 4441, + 4448, 4452, 5674, 4453, 5674, 4454, 4455, 4457, 4458, 4459, + 4460, 4462, 5674, 5674, 4465, 4467, 4476, 4468, 4461, 4487, + 4473, 5674, 4482, 4484, 4490, 4491, 5674, 4492, 4493, 4495, + 5674, 4496, 4499, 4500, 4502, 4466, 4503, 4506, 5674, 5674, + 5674, 5674, 4509, 4507, 4517, 4511, 4514, 4521, 4522, 4526, + 4518, 5674, 4535, 5674, 5674, 4523, 4532, 4536, 4538, 4539, + 4540, 4542, 4541, 5674, 4545, 4548, 4552, 4546, 4555, 4563, + 4558, 4564, 4556, 4566, 4573, 4570, 4571, 4568, 4576, 4578, + + 4580, 5674, 5674, 4582, 4586, 4587, 4594, 4591, 4592, 4604, + 4599, 4600, 4601, 4602, 4606, 4607, 4608, 5674, 4611, 4615, + 5674, 4609, 5674, 4619, 4622, 4613, 4623, 4625, 4626, 4628, + 4630, 5674, 5674, 4632, 4633, 4637, 4641, 4638, 4643, 4644, + 4646, 4642, 5674, 4647, 5674, 4648, 4650, 4664, 4649, 4666, + 4671, 4673, 4670, 4672, 4676, 5674, 4675, 4677, 5674, 4678, + 4679, 4683, 5674, 4685, 4688, 4692, 5674, 4695, 5674, 4697, + 5674, 4689, 4705, 5674, 4700, 4701, 5674, 4707, 4711, 4655, + 4703, 5674, 4708, 5674, 4712, 4714, 4717, 4722, 4715, 4724, + 4725, 4719, 4727, 4734, 4736, 4729, 5674, 5674, 4745, 4731, + + 4740, 4742, 4743, 4752, 4747, 4751, 4757, 5674, 5674, 4748, + 5674, 4750, 4761, 5674, 4759, 4763, 4765, 4768, 4767, 4769, + 4774, 4771, 4775, 4778, 4793, 4776, 4780, 4790, 4796, 4798, + 4800, 4802, 4803, 4804, 4781, 4805, 4806, 4809, 5674, 4811, + 4812, 4813, 5674, 4817, 4820, 4822, 4823, 5674, 4833, 4825, + 4830, 4835, 5674, 4819, 4841, 4838, 4836, 4843, 4852, 4847, + 4848, 5674, 5674, 5674, 5674, 4850, 4853, 5674, 4854, 4855, + 5674, 5674, 4856, 4859, 4862, 4870, 5674, 4861, 5674, 4865, + 5674, 4869, 4872, 4875, 4878, 5674, 4879, 4888, 5674, 4891, + 4894, 4896, 4897, 4880, 4866, 4898, 5674, 4905, 4902, 4904, + + 4911, 4883, 4908, 4912, 4913, 4920, 4915, 4919, 5674, 4916, + 4921, 4922, 5674, 4924, 5674, 4925, 4926, 4928, 4934, 4930, + 4933, 4937, 4944, 4927, 4948, 4941, 5674, 4951, 4955, 5674, + 4956, 5674, 4958, 5674, 4959, 4962, 4963, 4961, 5674, 4965, + 4967, 4968, 4969, 5674, 4970, 4972, 5674, 4976, 4973, 4983, + 4985, 4974, 4990, 4992, 4993, 4980, 5004, 4996, 4999, 4997, + 5006, 5007, 5012, 5674, 5674, 5674, 5008, 5001, 5022, 5019, + 5023, 5030, 5014, 5674, 5028, 5029, 5025, 5037, 5035, 5039, + 5674, 5041, 5027, 5036, 5674, 5043, 5048, 5049, 5050, 5051, + 5058, 5060, 5062, 5063, 5674, 5066, 5674, 5674, 5055, 5674, + + 5067, 5069, 5070, 5071, 5674, 5076, 5073, 5077, 5079, 5081, + 5082, 5078, 5674, 5674, 5085, 5674, 5094, 5090, 5086, 5102, + 5098, 5099, 5104, 5106, 5674, 5105, 5108, 5109, 5112, 5113, + 5674, 5115, 5116, 5117, 5118, 5121, 5120, 5126, 5127, 5129, + 5674, 5674, 5122, 5132, 5674, 5674, 5131, 5141, 5146, 5674, + 5674, 5674, 5152, 5674, 5154, 5158, 5162, 5166, 5157, 5674, + 5168, 5147, 5169, 5674, 5170, 5172, 5674, 5674, 5149, 5173, + 5177, 5176, 5178, 5674, 5179, 5182, 5186, 5189, 5195, 5184, + 5196, 5198, 5206, 5208, 5190, 5203, 5192, 5204, 5211, 5212, + 5220, 5217, 5674, 5674, 5224, 5674, 5674, 5226, 5228, 5230, + + 5233, 5235, 5237, 5239, 5674, 5240, 5242, 5243, 5674, 5245, + 5247, 5244, 5248, 5250, 5251, 5253, 5255, 5674, 5674, 5256, + 5257, 5258, 5265, 5267, 5674, 5269, 5276, 5273, 5275, 5271, + 5277, 5278, 5674, 5281, 5674, 5674, 5674, 5674, 5674, 5674, + 5674, 5674, 5279, 5674, 5289, 5292, 5674, 5283, 5293, 5297, + 5298, 5286, 5674, 5299, 5303, 5304, 5305, 5308, 5310, 5312, + 5313, 5315, 5319, 5316, 5321, 5317, 5320, 5674, 5674, 5328, + 5324, 5327, 5330, 5346, 5347, 5350, 5352, 5334, 5337, 5355, + 5354, 5356, 5343, 5360, 5369, 5362, 5364, 5366, 5367, 5371, + 5674, 5372, 5674, 5373, 5674, 5674, 5378, 5379, 5374, 5381, + + 5389, 5394, 5385, 5390, 5392, 5396, 5674, 5393, 5674, 5398, + 5397, 5674, 5402, 5404, 5405, 5406, 5407, 5408, 5410, 5416, + 5674, 5414, 5417, 5426, 5418, 5434, 5429, 5433, 5435, 5437, + 5431, 5445, 5441, 5444, 5674, 5447, 5448, 5214, 5449, 5452, + 5459, 5454, 5456, 5457, 5674, 5461, 5463, 5465, 5455, 5462, + 5464, 5478, 5480, 5476, 5674, 5466, 5482, 5484, 5486, 5490, + 5488, 5494, 5495, 5497, 5499, 5329, 5506, 5500, 5502, 5498, + 5508, 5510, 5674, 5512, 5515, 5674, 5516, 5518, 5519, 5520, + 5524, 5674, 5527, 5522, 5528, 5530, 5533, 5535, 5674, 5537, + 5544, 5545, 5674, 5546, 5674, 5674, 5548, 5540, 5549, 5555, + + 5557, 5674, 5674, 5674, 5582, 5589, 5596, 5603, 5610, 88, + 5617, 5624, 5631, 5638, 5645, 5652, 5659, 5666 } ; -static yyconst flex_int16_t yy_def[2859] = +static yyconst flex_int16_t yy_def[2919] = { 0, - 2844, 1, 2845, 2845, 2846, 2846, 2847, 2847, 2848, 2848, - 2849, 2849, 2844, 2850, 2844, 2844, 2844, 2844, 2851, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2852, 2844, 2844, 2844, 2852, 2853, 2844, 2844, - 2844, 2853, 2854, 2844, 2844, 2844, 2844, 2854, 2855, 2844, - 2844, 2844, 2855, 2856, 2844, 2857, 2844, 2856, 2856, 2850, - 2850, 2844, 2858, 2851, 2858, 2851, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2852, - 2852, 2853, 2853, 2854, 2854, 2844, 2855, 2855, 2856, 2856, - 2857, 2857, 2856, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2856, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2856, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2850, - 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, - 2850, 2856, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2856, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2844, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2850, - 2844, 2844, 2850, 2844, 2844, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2844, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2856, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, - - 2850, 2850, 2844, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2844, 2850, 2844, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2844, 2850, 2850, 2856, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2850, - - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2844, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2844, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - - 2850, 2850, 2850, 2844, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, - 2850, 2850, 2844, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2850, - - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2844, 2850, 2844, 2850, 2850, 2850, 2850, 2844, 2850, - 2844, 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - - 2850, 2844, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2844, 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, - 2850, 2844, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2844, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, - 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2844, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, 2850, - - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2844, 2850, - 2850, 2844, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - - 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, 2844, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2850, - 2850, 2850, 2844, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2844, 2850, 2844, 2850, 2850, 2850, 2844, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2844, 2850, 2844, - - 2850, 2850, 2850, 2844, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2844, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2844, 2850, 2850, 2850, 2850, 2850, 2844, - 2850, 2844, 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2844, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2844, 2850, 2850, 2850, 2844, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, - - 2850, 2844, 2844, 2850, 2844, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2844, 2844, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, - 2850, 2850, 2850, 2844, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2844, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2844, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - - 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2844, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2844, 2850, 2850, - 2850, 2850, 2850, 2844, 2850, 2850, 2850, 2850, 2850, 2844, - 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, 2850, 2850, - 2850, 2844, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - - 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, 2850, - 2850, 2844, 2844, 2850, 2850, 2850, 2850, 2850, 2844, 2850, - 2850, 2850, 2850, 2850, 2844, 2844, 2850, 2844, 2850, 2844, - 2850, 2844, 2844, 2850, 2850, 2850, 2850, 2850, 2844, 2850, - 2844, 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, - 2844, 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, 2844, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2844, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2844, 2850, 2844, 2850, 2850, 2850, 2850, - 2844, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, - 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, - 2850, 2844, 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2844, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2850, - - 2850, 2850, 2844, 2850, 2850, 2850, 2844, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2844, 2844, 2844, 2844, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2844, 2844, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2844, 2844, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2844, 2850, 2850, 2844, 2850, 2844, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2844, 2844, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2844, 2850, 2850, - - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2850, - 2844, 2850, 2850, 2850, 2844, 2850, 2850, 2850, 2844, 2850, - 2844, 2850, 2844, 2850, 2850, 2844, 2850, 2850, 2850, 2850, - 2850, 2850, 2844, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2844, 2844, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2844, 2850, 2844, - 2850, 2850, 2844, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2850, - 2850, 2844, 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, - - 2844, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, - 2844, 2844, 2844, 2850, 2850, 2844, 2850, 2850, 2844, 2844, - 2850, 2850, 2850, 2844, 2850, 2844, 2850, 2844, 2850, 2850, - 2850, 2850, 2844, 2850, 2850, 2844, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2844, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, 2844, - 2850, 2844, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2844, 2850, 2850, 2844, 2850, 2844, 2850, - 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, 2850, 2844, - 2850, 2850, 2844, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2844, - 2844, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2850, - 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, 2844, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, - 2850, 2844, 2844, 2850, 2844, 2850, 2850, 2850, 2850, 2844, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2844, 2850, - 2844, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2850, - 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2844, 2844, 2850, 2850, 2844, 2844, - 2850, 2850, 2850, 2844, 2844, 2844, 2850, 2844, 2850, 2850, - - 2850, 2850, 2850, 2844, 2850, 2850, 2850, 2844, 2850, 2850, - 2844, 2844, 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2844, 2844, 2850, 2844, 2844, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2850, - 2850, 2844, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, - 2844, 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2844, 2850, 2844, 2844, 2844, 2844, - 2844, 2844, 2844, 2844, 2850, 2844, 2850, 2844, 2850, 2850, - 2850, 2850, 2850, 2844, 2850, 2850, 2850, 2850, 2850, 2850, - - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2844, 2850, 2844, 2850, 2844, 2844, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2850, 2844, 2850, - 2850, 2844, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2844, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2850, 2850, 2844, 2850, 2850, 2850, 2850, 2850, - - 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2844, 2850, 2850, 2844, 2850, 2850, 2850, 2850, - 2850, 2844, 2850, 2850, 2850, 2850, 2850, 2850, 2844, 2850, - 2850, 2850, 2844, 2850, 2844, 2844, 2850, 2850, 2850, 2850, - 2850, 2844, 2844, 0, 2844, 2844, 2844, 2844, 2844, 2844, - 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844 + 2904, 1, 2905, 2905, 2906, 2906, 2907, 2907, 2908, 2908, + 2909, 2909, 2904, 2910, 2904, 2904, 2904, 2904, 2911, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2912, 2904, 2904, 2904, 2912, 2913, 2904, 2904, + 2904, 2913, 2914, 2904, 2904, 2904, 2904, 2914, 2915, 2904, + 2904, 2904, 2915, 2916, 2904, 2917, 2904, 2916, 2916, 2910, + 2910, 2904, 2918, 2911, 2918, 2911, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2912, + 2912, 2913, 2913, 2914, 2914, 2904, 2915, 2915, 2916, 2916, + 2917, 2917, 2916, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2916, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2904, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2916, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2904, 2910, 2910, 2910, 2910, 2910, 2910, 2904, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2904, 2910, 2916, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2916, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2904, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2904, 2910, 2904, 2904, 2910, 2904, + 2904, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2904, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + + 2910, 2916, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2904, + 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2904, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2904, 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2904, 2910, 2910, + + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2904, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2904, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2904, 2910, 2910, + 2916, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2904, + + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2904, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + + 2904, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2904, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, + 2904, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2904, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2904, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2904, 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2904, 2910, + 2904, 2910, 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, + + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2904, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2904, 2910, 2910, + + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2904, 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2904, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2910, 2904, + 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + + 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2904, 2904, 2910, 2910, 2910, 2904, 2910, + + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2904, 2910, 2910, 2910, 2904, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2904, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2904, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2904, + 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2904, 2910, 2904, 2910, 2910, 2910, + + 2904, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2904, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2904, 2904, 2910, + 2904, 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, + 2904, 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2904, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2910, + + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2904, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2904, + 2910, 2910, 2910, 2910, 2910, 2910, 2904, 2904, 2910, 2904, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2904, + 2904, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2904, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2904, 2910, 2910, + + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2904, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2904, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + + 2910, 2910, 2910, 2910, 2904, 2910, 2904, 2910, 2910, 2910, + 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2904, 2910, + 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2910, + 2904, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, + 2904, 2904, 2910, 2910, 2910, 2910, 2910, 2904, 2910, 2910, + 2910, 2910, 2910, 2904, 2904, 2910, 2904, 2910, 2904, 2910, + 2910, 2904, 2904, 2910, 2910, 2910, 2910, 2910, 2904, 2910, + + 2904, 2910, 2910, 2910, 2910, 2910, 2904, 2910, 2910, 2910, + 2904, 2910, 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2904, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2904, 2910, 2904, 2910, + 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2904, 2910, 2910, + + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2904, 2910, 2904, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2904, 2904, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2904, 2910, 2910, 2910, 2910, 2904, 2910, 2910, 2910, + 2904, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2904, 2904, + 2904, 2904, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2904, 2910, 2904, 2904, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + + 2910, 2904, 2904, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2904, 2910, 2910, + 2904, 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2904, 2904, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2904, 2910, 2904, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2904, 2910, 2910, 2904, 2910, + 2910, 2910, 2904, 2910, 2910, 2910, 2904, 2910, 2904, 2910, + 2904, 2910, 2910, 2904, 2910, 2910, 2904, 2910, 2910, 2910, + 2910, 2904, 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2904, 2904, 2910, 2910, + + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2904, 2904, 2910, + 2904, 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2904, 2910, + 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2904, 2910, 2910, + 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2904, 2904, 2904, 2904, 2910, 2910, 2904, 2910, 2910, + 2904, 2904, 2910, 2910, 2910, 2910, 2904, 2910, 2904, 2910, + 2904, 2910, 2910, 2910, 2910, 2904, 2910, 2910, 2904, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2904, 2910, 2910, 2910, + + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2904, 2910, + 2910, 2910, 2904, 2910, 2904, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2904, 2910, 2910, 2904, + 2910, 2904, 2910, 2904, 2910, 2910, 2910, 2910, 2904, 2910, + 2910, 2910, 2910, 2904, 2910, 2910, 2904, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2904, 2904, 2904, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2910, + 2904, 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2904, 2910, 2904, 2904, 2910, 2904, + + 2910, 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2904, 2904, 2910, 2904, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, + 2904, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2904, 2904, 2910, 2910, 2904, 2904, 2910, 2910, 2910, 2904, + 2904, 2904, 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2904, + 2910, 2910, 2910, 2904, 2910, 2910, 2904, 2904, 2910, 2910, + 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2904, 2904, 2910, 2904, 2904, 2910, 2910, 2910, + + 2910, 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2904, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2904, 2904, 2910, + 2910, 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2904, 2910, 2904, 2904, 2904, 2904, 2904, 2904, + 2904, 2904, 2910, 2904, 2910, 2910, 2904, 2910, 2910, 2910, + 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2904, 2904, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2904, 2910, 2904, 2910, 2904, 2904, 2910, 2910, 2910, 2910, + + 2910, 2910, 2910, 2910, 2910, 2910, 2904, 2910, 2904, 2910, + 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2904, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2904, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, + 2910, 2910, 2904, 2910, 2910, 2904, 2910, 2910, 2910, 2910, + 2910, 2904, 2910, 2910, 2910, 2910, 2910, 2910, 2904, 2910, + 2910, 2910, 2904, 2910, 2904, 2904, 2910, 2910, 2910, 2910, + + 2910, 2904, 2904, 0, 2904, 2904, 2904, 2904, 2904, 2904, + 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904 } ; -static yyconst flex_int16_t yy_nxt[5593] = +static yyconst flex_int16_t yy_nxt[5715] = { 0, 14, 15, 16, 17, 18, 19, 18, 14, 14, 14, 14, 14, 18, 20, 21, 22, 23, 24, 25, 26, @@ -1402,7 +1423,7 @@ static yyconst flex_int16_t yy_nxt[5593] = 160, 71, 71, 172, 71, 71, 71, 71, 165, 71, 71, 182, 164, 161, 166, 71, 167, 168, 169, 174, 71, 71, 173, 170, 175, 179, 176, 177, 180, 71, - 71, 248, 188, 181, 178, 183, 71, 71, 71, 184, + 71, 249, 188, 181, 178, 183, 71, 71, 71, 184, 71, 71, 185, 71, 193, 191, 71, 199, 194, 196, 71, 198, 71, 200, 197, 186, 187, 189, 71, 202, @@ -1410,587 +1431,600 @@ static yyconst flex_int16_t yy_nxt[5593] = 71, 203, 71, 208, 71, 211, 71, 209, 71, 205, 204, 71, 213, 71, 224, 207, 222, 216, 71, 210, 212, 214, 71, 71, 221, 217, 218, 215, 71, 71, - 223, 71, 71, 71, 225, 71, 71, 219, 231, 71, - 235, 220, 71, 71, 71, 227, 226, 232, 148, 230, - 228, 234, 71, 229, 236, 140, 140, 238, 239, 233, - 142, 237, 144, 142, 144, 144, 71, 144, 147, 147, - 149, 241, 149, 149, 75, 149, 75, 75, 150, 75, - - 71, 240, 242, 71, 71, 71, 152, 71, 71, 71, - 71, 249, 71, 246, 71, 252, 71, 243, 244, 245, - 247, 255, 71, 254, 251, 71, 250, 71, 256, 260, - 258, 71, 253, 71, 259, 71, 71, 261, 292, 71, - 264, 257, 262, 71, 269, 265, 71, 71, 71, 71, - 266, 274, 271, 272, 275, 71, 267, 268, 71, 263, - 71, 273, 277, 71, 71, 270, 71, 71, 278, 279, - 71, 71, 71, 71, 293, 284, 285, 290, 281, 280, - 71, 282, 71, 276, 295, 283, 71, 286, 71, 294, - 71, 297, 287, 291, 299, 300, 296, 71, 71, 303, - - 71, 71, 298, 71, 288, 71, 289, 305, 304, 306, - 301, 71, 71, 71, 71, 71, 71, 71, 307, 302, - 309, 71, 71, 311, 71, 308, 71, 71, 71, 71, - 313, 315, 71, 71, 71, 71, 310, 314, 316, 320, - 324, 71, 317, 312, 318, 322, 71, 71, 327, 71, - 146, 321, 319, 71, 71, 329, 71, 323, 331, 71, - 71, 332, 334, 330, 71, 325, 326, 71, 71, 328, - 71, 339, 335, 71, 337, 338, 71, 71, 333, 341, - 71, 71, 342, 71, 336, 71, 150, 71, 345, 71, - 71, 71, 71, 71, 352, 340, 350, 348, 346, 343, - - 71, 353, 71, 71, 344, 356, 347, 71, 354, 71, - 349, 71, 71, 71, 355, 351, 71, 357, 362, 71, - 71, 71, 363, 364, 71, 366, 358, 361, 71, 71, - 360, 359, 71, 367, 365, 71, 71, 71, 369, 368, - 71, 370, 71, 71, 71, 371, 373, 376, 374, 71, - 372, 375, 378, 71, 71, 380, 379, 71, 71, 71, - 71, 71, 384, 377, 381, 71, 383, 385, 71, 71, - 71, 71, 390, 71, 71, 71, 71, 391, 71, 386, - 393, 382, 71, 389, 71, 395, 387, 71, 71, 399, - 388, 397, 71, 392, 71, 71, 394, 400, 71, 398, - - 396, 71, 71, 71, 401, 71, 71, 408, 410, 411, - 71, 412, 145, 414, 402, 415, 71, 403, 71, 409, - 417, 418, 404, 405, 406, 407, 71, 413, 416, 419, - 71, 71, 71, 71, 420, 71, 426, 71, 71, 428, - 71, 71, 424, 421, 425, 427, 422, 423, 71, 71, - 71, 71, 71, 430, 435, 71, 429, 71, 438, 71, - 71, 431, 437, 71, 71, 71, 450, 434, 439, 432, - 440, 433, 71, 444, 71, 436, 441, 442, 71, 443, - 71, 445, 71, 71, 143, 71, 452, 451, 71, 449, - 71, 71, 453, 71, 446, 516, 454, 447, 71, 448, - - 464, 71, 71, 71, 455, 71, 456, 466, 457, 463, - 462, 71, 478, 465, 467, 469, 71, 477, 150, 141, - 71, 458, 481, 71, 459, 71, 460, 71, 461, 71, - 468, 71, 479, 470, 471, 484, 485, 480, 71, 482, - 71, 71, 483, 472, 486, 473, 474, 475, 487, 71, - 476, 491, 71, 71, 71, 488, 71, 71, 71, 71, - 489, 492, 71, 490, 493, 71, 500, 497, 71, 499, - 71, 496, 494, 495, 498, 71, 504, 71, 501, 71, - 502, 71, 71, 71, 503, 71, 507, 508, 509, 71, - 71, 71, 71, 514, 71, 506, 71, 519, 517, 71, - - 71, 511, 505, 510, 71, 512, 513, 71, 71, 71, - 71, 515, 71, 518, 529, 521, 71, 71, 520, 525, - 522, 528, 524, 71, 71, 523, 531, 530, 532, 71, - 526, 71, 527, 71, 71, 534, 71, 533, 536, 71, - 535, 71, 538, 71, 537, 71, 71, 542, 540, 543, - 71, 71, 539, 71, 544, 71, 71, 71, 541, 71, - 71, 547, 548, 71, 71, 71, 545, 71, 549, 71, - 554, 71, 550, 555, 546, 71, 558, 553, 71, 557, - 71, 71, 552, 551, 71, 560, 71, 556, 71, 561, - 71, 71, 71, 71, 563, 71, 71, 571, 71, 564, - - 71, 559, 562, 71, 566, 71, 573, 570, 71, 572, - 574, 565, 71, 567, 578, 568, 569, 71, 579, 71, - 71, 71, 575, 581, 580, 576, 71, 71, 577, 71, - 71, 584, 71, 583, 71, 71, 587, 71, 71, 588, - 71, 71, 590, 71, 71, 71, 71, 582, 603, 585, - 589, 586, 71, 71, 591, 71, 602, 606, 150, 592, - 71, 593, 605, 601, 604, 71, 594, 608, 595, 71, - 607, 610, 71, 71, 596, 71, 597, 609, 611, 598, - 599, 612, 71, 71, 71, 615, 600, 71, 71, 614, - 71, 618, 613, 71, 620, 71, 71, 71, 616, 71, - - 622, 71, 71, 617, 71, 71, 626, 71, 71, 619, - 621, 623, 71, 627, 630, 150, 624, 629, 71, 632, - 633, 625, 71, 71, 628, 71, 71, 631, 71, 71, - 674, 636, 71, 71, 634, 71, 640, 642, 635, 637, - 71, 644, 71, 638, 645, 71, 641, 639, 643, 647, - 71, 71, 71, 71, 71, 71, 649, 646, 71, 71, - 71, 653, 71, 648, 652, 71, 650, 658, 668, 651, - 71, 654, 659, 71, 661, 71, 657, 71, 655, 662, - 71, 656, 663, 660, 664, 71, 665, 71, 71, 666, - 71, 71, 71, 71, 71, 71, 669, 672, 667, 71, - - 671, 71, 677, 71, 673, 676, 71, 678, 71, 670, - 71, 71, 675, 682, 71, 680, 71, 71, 71, 71, - 685, 683, 71, 689, 679, 686, 71, 71, 684, 687, - 71, 681, 691, 71, 71, 692, 688, 695, 71, 71, - 71, 697, 71, 71, 690, 700, 698, 693, 696, 694, - 71, 71, 71, 701, 71, 71, 702, 71, 71, 708, - 71, 71, 706, 71, 148, 705, 71, 71, 699, 71, - 703, 714, 709, 704, 71, 71, 712, 71, 707, 71, - 710, 713, 711, 71, 71, 715, 716, 717, 71, 720, - 721, 723, 719, 718, 71, 71, 71, 71, 724, 722, - - 71, 726, 71, 71, 71, 725, 727, 71, 732, 71, - 71, 146, 71, 71, 71, 728, 729, 735, 71, 734, - 738, 736, 71, 730, 731, 739, 71, 740, 733, 741, - 71, 743, 71, 71, 742, 71, 737, 71, 71, 745, - 747, 71, 71, 71, 71, 71, 71, 71, 71, 71, - 753, 71, 746, 71, 71, 71, 754, 744, 71, 748, - 749, 750, 761, 751, 755, 752, 756, 758, 71, 760, - 759, 757, 71, 71, 764, 71, 71, 71, 71, 71, - 766, 71, 71, 772, 71, 763, 762, 71, 71, 71, - 71, 773, 71, 71, 765, 767, 768, 769, 771, 71, - - 770, 775, 71, 776, 777, 71, 71, 774, 778, 71, - 782, 71, 779, 781, 71, 780, 783, 71, 71, 784, - 71, 71, 785, 71, 71, 787, 150, 71, 71, 786, - 788, 792, 790, 71, 789, 71, 791, 794, 793, 71, - 71, 795, 71, 797, 800, 71, 71, 801, 796, 803, - 71, 71, 71, 806, 798, 802, 71, 71, 71, 71, - 804, 808, 71, 799, 71, 71, 812, 71, 71, 71, - 809, 805, 71, 813, 814, 71, 807, 71, 71, 71, - 71, 71, 811, 71, 818, 849, 815, 810, 819, 826, - 825, 820, 823, 71, 816, 817, 71, 824, 821, 71, - - 828, 822, 71, 829, 71, 830, 71, 71, 71, 827, - 831, 835, 71, 71, 71, 71, 71, 71, 843, 71, - 853, 833, 847, 71, 832, 848, 71, 71, 834, 71, - 836, 837, 888, 838, 845, 844, 839, 846, 71, 850, - 71, 840, 851, 71, 852, 855, 71, 841, 842, 854, - 71, 71, 856, 71, 71, 71, 71, 71, 859, 71, - 863, 71, 71, 857, 862, 71, 71, 866, 71, 71, - 871, 71, 858, 868, 71, 860, 861, 864, 71, 865, - 71, 885, 872, 870, 875, 874, 867, 873, 71, 876, - 71, 869, 71, 878, 71, 71, 71, 877, 71, 71, - - 880, 879, 71, 71, 881, 71, 71, 887, 71, 71, - 882, 884, 890, 71, 71, 71, 71, 889, 71, 71, - 894, 883, 71, 892, 886, 893, 71, 897, 895, 896, - 71, 71, 891, 71, 900, 71, 71, 71, 71, 71, - 71, 907, 71, 905, 898, 71, 903, 908, 71, 71, - 901, 906, 71, 71, 910, 902, 899, 71, 71, 71, - 71, 71, 904, 909, 917, 71, 911, 71, 916, 920, - 71, 71, 912, 913, 71, 71, 921, 71, 915, 914, - 919, 71, 922, 918, 71, 928, 71, 925, 924, 927, - 923, 926, 71, 71, 71, 71, 71, 71, 935, 71, - - 937, 71, 930, 939, 71, 940, 71, 71, 71, 71, - 71, 71, 929, 936, 931, 932, 71, 934, 933, 71, - 941, 938, 943, 71, 945, 948, 942, 71, 947, 946, - 944, 71, 71, 71, 952, 949, 71, 954, 71, 71, - 71, 950, 71, 957, 150, 71, 951, 956, 71, 71, - 960, 71, 959, 71, 71, 71, 953, 955, 963, 71, - 958, 71, 71, 71, 71, 975, 71, 71, 71, 145, - 976, 978, 71, 961, 962, 966, 71, 71, 964, 965, - 980, 71, 967, 977, 968, 71, 983, 71, 969, 71, - 970, 982, 979, 985, 971, 71, 972, 71, 986, 71, - - 71, 973, 981, 984, 988, 71, 974, 71, 71, 987, - 990, 71, 989, 992, 71, 71, 71, 997, 998, 71, - 991, 993, 996, 71, 71, 999, 71, 1001, 995, 1000, - 71, 71, 994, 71, 71, 71, 71, 1002, 1003, 71, - 1013, 1017, 71, 1012, 71, 1016, 71, 71, 1004, 71, - 1005, 71, 71, 1014, 1015, 1006, 143, 1007, 1024, 1018, - 1019, 1022, 71, 1008, 71, 71, 1020, 71, 1009, 1010, - 71, 1021, 1028, 71, 1023, 1011, 1025, 71, 71, 71, - 1027, 71, 1029, 71, 1026, 71, 71, 1034, 71, 71, - 1031, 71, 1032, 71, 1037, 1035, 71, 71, 1030, 71, - - 71, 1033, 71, 71, 71, 71, 71, 1036, 1042, 1044, - 1039, 1038, 1041, 1043, 1045, 71, 71, 1040, 1046, 1047, - 71, 71, 71, 71, 71, 71, 1048, 71, 1053, 1054, - 1050, 71, 1055, 71, 1049, 71, 1057, 1052, 1058, 1051, - 1056, 1060, 1061, 71, 71, 71, 1059, 1062, 71, 71, - 1063, 71, 71, 1064, 1065, 71, 71, 1066, 1071, 71, - 1073, 71, 71, 141, 71, 1067, 71, 1076, 1069, 71, - 1068, 1070, 1074, 71, 71, 71, 71, 71, 1077, 1072, - 1079, 1080, 1075, 71, 71, 71, 71, 1085, 71, 1081, - 1078, 1082, 1084, 71, 1086, 71, 71, 1087, 71, 1083, - - 71, 1089, 1088, 71, 71, 71, 1095, 1093, 71, 1096, - 71, 71, 71, 1097, 1090, 71, 1098, 71, 1094, 1091, - 1100, 71, 1099, 1092, 1103, 71, 71, 71, 1101, 71, - 71, 1104, 71, 71, 1105, 71, 1107, 71, 1108, 71, - 1109, 1102, 71, 1113, 1114, 1106, 71, 71, 71, 71, - 71, 1111, 71, 1116, 71, 1110, 1117, 71, 71, 1121, - 71, 1112, 1115, 71, 71, 1118, 1119, 71, 71, 1123, - 1120, 71, 1122, 1127, 71, 71, 71, 71, 1133, 71, - 71, 71, 1131, 1124, 71, 1128, 1138, 1126, 1130, 1132, - 1129, 1135, 1125, 1136, 71, 71, 71, 71, 71, 71, - - 1137, 1134, 71, 1139, 71, 71, 71, 1142, 1140, 71, - 1141, 71, 71, 1145, 1148, 71, 71, 71, 71, 1143, - 71, 71, 1158, 71, 1144, 1154, 1146, 1151, 1147, 1152, - 1149, 71, 71, 71, 1155, 1150, 1156, 1159, 1153, 1157, - 1160, 71, 71, 71, 1162, 1161, 71, 71, 71, 71, - 71, 1165, 1164, 1167, 1170, 71, 71, 71, 71, 71, - 1163, 1168, 1171, 1172, 1174, 71, 1166, 71, 1169, 1175, - 71, 71, 71, 71, 71, 71, 1173, 71, 71, 1176, - 71, 71, 1177, 71, 1182, 1180, 1178, 1183, 71, 1181, - 71, 1179, 71, 71, 1187, 71, 71, 1184, 1188, 1186, - - 1192, 1185, 1191, 71, 1194, 71, 71, 71, 71, 1193, - 1189, 71, 1190, 1196, 1198, 71, 71, 1197, 71, 1199, - 71, 71, 1203, 1195, 71, 1201, 1200, 71, 1202, 71, - 1212, 1210, 1214, 1211, 1204, 71, 71, 1205, 1206, 71, - 1213, 1216, 1207, 71, 1215, 71, 71, 71, 1208, 71, - 1217, 1218, 1209, 71, 1219, 71, 1220, 71, 71, 71, - 1221, 71, 1222, 1223, 71, 71, 1227, 1224, 1225, 1230, - 1231, 1240, 71, 71, 71, 71, 71, 1232, 1226, 1228, - 71, 71, 1229, 1234, 1233, 71, 1239, 71, 1235, 71, - 1236, 71, 1237, 1242, 1238, 71, 1243, 1246, 1241, 71, - - 71, 71, 1247, 71, 1245, 1249, 71, 71, 71, 1244, - 71, 71, 71, 71, 71, 1250, 1251, 71, 1254, 1256, - 1258, 1248, 71, 71, 71, 1252, 1255, 1253, 1261, 1262, - 71, 1257, 1264, 71, 71, 71, 1265, 71, 1260, 1263, - 1259, 71, 1267, 71, 1266, 1269, 71, 1271, 71, 71, - 1272, 71, 71, 71, 1268, 71, 1273, 1276, 71, 71, - 71, 71, 1278, 1270, 71, 1289, 1280, 71, 71, 71, - 1282, 71, 1283, 1274, 1275, 1277, 1281, 71, 71, 1286, - 1279, 71, 1284, 1285, 71, 71, 1287, 71, 71, 1288, - 1290, 71, 71, 71, 1292, 1295, 1296, 1297, 1293, 71, - - 71, 71, 71, 1298, 71, 1291, 1294, 71, 1299, 71, - 1302, 71, 71, 71, 1306, 1301, 1307, 71, 1309, 1300, - 71, 71, 71, 1308, 71, 71, 71, 1303, 71, 71, - 71, 1316, 1304, 71, 71, 1310, 1305, 71, 1313, 71, - 71, 1311, 1314, 71, 1320, 1312, 71, 1315, 1321, 71, - 71, 1323, 1325, 1317, 2844, 1319, 71, 1326, 71, 1318, - 71, 71, 1324, 1322, 71, 1328, 71, 71, 1327, 1329, - 71, 71, 1334, 1336, 1330, 1335, 71, 1338, 71, 1331, - 71, 1332, 1339, 71, 1333, 71, 71, 71, 71, 1341, - 1337, 1340, 1344, 71, 71, 71, 71, 71, 1346, 71, - - 71, 1351, 71, 71, 1343, 71, 1345, 1352, 1356, 1348, - 1355, 1342, 71, 71, 1347, 1349, 71, 1350, 71, 71, - 1353, 71, 71, 71, 1354, 71, 71, 1358, 1362, 1363, - 1364, 1357, 71, 1359, 1360, 71, 1367, 71, 71, 71, - 1361, 1366, 71, 1372, 1365, 1369, 2844, 1371, 1373, 71, - 71, 1374, 1368, 71, 71, 71, 1375, 1376, 71, 1370, - 71, 71, 1378, 71, 1377, 71, 71, 71, 1383, 71, - 71, 71, 71, 1382, 71, 71, 1386, 1380, 1385, 1379, - 1381, 71, 1389, 71, 1394, 1391, 1387, 1390, 71, 1384, - 1392, 71, 71, 1388, 71, 1393, 71, 71, 71, 1401, - - 1395, 71, 71, 1397, 1404, 71, 1402, 71, 71, 71, - 71, 1396, 1407, 71, 1406, 1398, 1400, 1399, 71, 71, - 71, 71, 71, 1412, 71, 1415, 1405, 71, 1403, 71, - 71, 71, 1408, 1416, 1418, 71, 1419, 71, 1409, 1410, - 1411, 1417, 1414, 1413, 71, 71, 71, 71, 1420, 1424, - 1421, 71, 71, 1425, 1422, 71, 1427, 71, 71, 1423, - 1431, 71, 71, 1432, 71, 71, 1426, 1428, 71, 1433, - 71, 71, 1434, 1430, 1435, 1429, 1440, 71, 1439, 71, - 71, 71, 1436, 1437, 71, 71, 1443, 71, 1444, 1445, - 71, 1438, 1446, 71, 71, 71, 71, 1441, 71, 1447, - - 71, 1442, 1448, 71, 71, 1452, 1449, 1451, 71, 1453, - 1450, 71, 1454, 1455, 71, 71, 1458, 71, 71, 1457, - 71, 71, 1462, 71, 71, 71, 71, 1467, 71, 1456, - 1465, 71, 71, 1460, 71, 1459, 1468, 1463, 71, 1470, - 71, 1466, 1464, 71, 1473, 1461, 71, 71, 1476, 71, - 71, 1469, 1475, 71, 1472, 71, 1471, 71, 71, 71, - 1483, 71, 71, 71, 71, 1474, 1484, 1478, 1477, 71, - 71, 1481, 1487, 71, 1479, 1480, 71, 71, 1488, 1490, - 1492, 1491, 1485, 1482, 1486, 1494, 71, 71, 71, 1489, - 1493, 71, 1496, 71, 71, 71, 71, 71, 71, 1501, - - 1498, 1495, 1499, 71, 1502, 71, 71, 1497, 71, 71, - 1503, 1506, 71, 1507, 71, 71, 71, 2844, 1513, 1500, - 1514, 1505, 71, 1504, 71, 1510, 1508, 71, 1511, 1509, - 71, 71, 1519, 1523, 1518, 1516, 1515, 71, 71, 71, - 1512, 1517, 1520, 71, 1521, 71, 1522, 71, 71, 71, - 71, 71, 1524, 71, 1530, 71, 1529, 1531, 71, 71, - 71, 1525, 1533, 71, 1532, 71, 71, 1526, 71, 1527, - 1535, 1528, 1536, 71, 71, 71, 1538, 71, 1534, 1537, - 71, 71, 1545, 71, 71, 71, 1539, 71, 71, 71, - 71, 1541, 71, 1543, 1542, 1540, 1544, 1550, 71, 71, - - 1553, 1548, 71, 71, 1546, 1547, 71, 1552, 71, 71, - 1549, 71, 1551, 71, 1556, 71, 71, 71, 1554, 71, - 1555, 71, 1558, 1560, 1559, 1642, 1557, 1563, 1561, 71, - 1564, 1562, 1567, 1568, 71, 1565, 1569, 71, 71, 71, - 71, 71, 1566, 1571, 1572, 71, 71, 71, 71, 71, - 1570, 1575, 1573, 1576, 71, 71, 1584, 71, 71, 71, - 1574, 71, 71, 1579, 71, 1578, 1577, 1581, 1583, 71, - 1582, 1585, 71, 71, 1580, 71, 71, 1586, 1589, 1588, - 71, 71, 1587, 71, 1594, 71, 71, 1591, 71, 1590, - 71, 1597, 71, 1598, 1596, 71, 71, 1595, 1593, 1600, - - 2844, 1592, 1601, 1605, 71, 1608, 1602, 1599, 1606, 71, - 71, 71, 1610, 71, 1604, 1611, 1603, 71, 1607, 1613, - 71, 71, 1612, 71, 71, 71, 1614, 1617, 1609, 71, - 71, 71, 71, 71, 1619, 71, 71, 71, 1616, 71, - 1620, 71, 1618, 1615, 1621, 1624, 71, 71, 1625, 1622, - 71, 1623, 1630, 71, 1626, 1632, 71, 71, 71, 1627, - 71, 1628, 1636, 71, 1629, 71, 1631, 71, 71, 71, - 1640, 71, 71, 1635, 1633, 71, 1634, 71, 71, 71, - 1643, 1638, 1644, 1645, 71, 1637, 71, 1639, 1646, 71, - 1647, 71, 1641, 1649, 71, 1653, 71, 71, 71, 1648, - - 71, 1651, 71, 71, 71, 1650, 1660, 1655, 71, 71, - 1652, 1654, 71, 71, 1656, 1657, 71, 1658, 1672, 1663, - 1661, 1664, 71, 71, 1659, 71, 1665, 1662, 1666, 71, - 1667, 71, 1669, 1670, 71, 71, 71, 71, 71, 1673, - 1668, 71, 71, 71, 71, 71, 71, 1671, 71, 1678, - 71, 71, 71, 1682, 1679, 71, 1688, 1674, 1680, 71, - 1676, 1677, 71, 1675, 1683, 1681, 71, 1686, 1687, 71, - 71, 1685, 71, 71, 71, 1693, 71, 1684, 71, 1696, - 1689, 1697, 71, 1698, 71, 1690, 1691, 71, 1694, 71, - 1695, 71, 1692, 1700, 71, 1705, 1699, 71, 1701, 1704, - - 71, 1706, 71, 1708, 71, 1707, 1710, 71, 1702, 71, - 1703, 71, 71, 71, 1713, 71, 1712, 71, 1714, 1715, - 71, 71, 1709, 71, 1722, 71, 71, 71, 71, 1727, - 71, 71, 1716, 1717, 1718, 71, 1711, 1731, 71, 1719, - 71, 1720, 1724, 1721, 71, 1726, 1723, 1725, 71, 1728, - 1729, 1730, 1734, 71, 71, 71, 1736, 71, 71, 71, - 1732, 71, 1739, 1740, 71, 1733, 71, 1742, 71, 71, - 71, 1746, 71, 71, 1747, 71, 71, 71, 1737, 1743, - 1735, 1738, 1744, 71, 71, 71, 1741, 71, 71, 1753, - 1745, 1749, 1750, 1748, 71, 71, 1751, 1757, 71, 1756, - - 71, 71, 1760, 71, 1762, 71, 1761, 1759, 71, 1752, - 1754, 1755, 71, 71, 71, 71, 71, 71, 1758, 1763, - 1768, 1765, 1764, 71, 71, 71, 1771, 1772, 1767, 71, - 71, 71, 71, 71, 1766, 1775, 71, 71, 71, 71, - 71, 1769, 71, 1781, 71, 1774, 1782, 1823, 71, 1773, - 1770, 1776, 1777, 1779, 71, 1778, 1780, 1783, 1784, 71, - 71, 1788, 71, 1789, 1785, 1786, 71, 71, 71, 71, - 1787, 1794, 1791, 71, 71, 71, 71, 71, 1796, 1834, - 1790, 1797, 71, 71, 1798, 71, 2844, 71, 1792, 1793, - 1795, 1799, 1802, 71, 1803, 71, 1800, 1804, 1806, 1807, - - 1808, 1801, 1805, 71, 71, 71, 71, 71, 1811, 71, - 71, 1809, 71, 71, 71, 71, 1813, 1816, 1818, 1810, - 71, 1812, 1814, 71, 71, 71, 71, 71, 71, 1824, - 71, 1822, 1819, 1825, 71, 1826, 71, 1817, 1815, 1820, - 1828, 71, 71, 71, 1821, 71, 71, 1829, 1830, 71, - 1827, 1831, 71, 71, 1835, 71, 1836, 1833, 1832, 71, - 71, 71, 1840, 71, 71, 1837, 1839, 71, 71, 1841, - 71, 1838, 1842, 1843, 1844, 71, 71, 71, 71, 1846, - 71, 1851, 1849, 71, 1845, 1850, 71, 71, 71, 1853, - 71, 71, 1857, 71, 1847, 71, 1848, 1852, 71, 1856, - - 1854, 71, 1858, 71, 1855, 71, 1861, 1859, 1863, 71, - 71, 71, 71, 1864, 71, 71, 1862, 1869, 71, 1860, - 1872, 1865, 71, 71, 71, 1871, 1868, 1866, 71, 1867, - 1873, 71, 1870, 71, 71, 1877, 1874, 71, 71, 71, - 1875, 71, 1876, 71, 71, 71, 1878, 71, 71, 71, - 71, 1880, 71, 1881, 1885, 1882, 1889, 71, 71, 1879, - 1884, 1892, 1888, 71, 71, 1890, 71, 1886, 1893, 1887, - 1883, 1895, 1891, 71, 71, 1896, 71, 71, 71, 71, - 71, 1898, 71, 71, 1894, 1899, 1900, 71, 1901, 1903, - 71, 71, 1897, 1905, 1902, 1907, 71, 1906, 71, 1904, - - 71, 71, 1910, 1909, 71, 71, 1911, 71, 1915, 1912, - 71, 71, 71, 71, 71, 1916, 1908, 71, 1921, 71, - 1918, 71, 1922, 1913, 1917, 71, 71, 1914, 1925, 71, - 71, 1920, 1919, 2844, 71, 1926, 71, 1928, 1927, 71, - 1923, 1930, 71, 71, 1932, 1929, 1924, 71, 1933, 71, - 71, 1931, 71, 71, 1937, 1939, 71, 71, 1934, 1935, - 1940, 71, 1936, 71, 71, 1941, 71, 71, 71, 1942, - 71, 1944, 1945, 71, 1938, 1943, 71, 1946, 1948, 71, - 71, 71, 71, 71, 71, 71, 1951, 71, 1947, 1958, - 1956, 1949, 1954, 71, 1950, 1952, 1955, 1953, 1957, 71, - - 71, 71, 1959, 71, 71, 1960, 1966, 71, 71, 71, - 1961, 1968, 71, 1965, 71, 1962, 71, 1967, 71, 1963, - 1970, 1973, 1972, 1971, 1975, 1976, 1974, 71, 1964, 71, - 71, 71, 1977, 1969, 71, 71, 1980, 71, 71, 1981, - 71, 2844, 1978, 1985, 71, 71, 1986, 71, 71, 1984, - 1989, 71, 71, 1982, 71, 1979, 71, 1990, 1995, 1987, - 71, 1991, 1992, 71, 1983, 71, 1988, 1994, 71, 71, - 1993, 1996, 1997, 71, 71, 71, 71, 71, 71, 1999, - 71, 71, 2002, 2005, 71, 71, 71, 71, 71, 2006, - 71, 2001, 2008, 71, 1998, 2007, 2003, 2004, 2000, 71, - - 2010, 71, 2015, 71, 2012, 71, 2013, 71, 71, 2011, - 71, 71, 2009, 2016, 2844, 71, 71, 71, 71, 2014, - 71, 71, 2026, 71, 71, 71, 2017, 2018, 2027, 2023, - 71, 71, 2044, 2019, 2021, 2020, 2025, 2022, 2029, 2024, - 71, 2031, 71, 2028, 2030, 2032, 71, 2033, 71, 71, - 71, 2036, 71, 2039, 71, 71, 71, 2034, 71, 71, - 2040, 2037, 2035, 2041, 2038, 2045, 71, 2046, 71, 71, - 2048, 71, 71, 2050, 71, 71, 2042, 71, 71, 2043, - 2052, 71, 2053, 71, 71, 71, 71, 2055, 2047, 2054, - 2049, 2058, 2051, 2059, 71, 71, 2061, 71, 2056, 71, - - 71, 71, 71, 71, 2057, 2064, 2063, 71, 2065, 2067, - 71, 71, 2071, 71, 2060, 71, 71, 2062, 2069, 71, - 2068, 71, 71, 2066, 2844, 2075, 2076, 71, 71, 71, - 2070, 2080, 71, 71, 2074, 2072, 71, 71, 71, 2073, - 71, 2077, 71, 2078, 2079, 2082, 71, 2085, 71, 2086, - 2083, 71, 71, 2081, 2087, 71, 2090, 71, 71, 71, - 2089, 71, 2088, 2084, 2091, 2099, 2095, 71, 71, 71, - 2093, 71, 2096, 2097, 71, 2101, 71, 71, 71, 2094, - 2092, 71, 2102, 71, 2098, 71, 71, 71, 71, 71, - 2844, 2104, 2105, 2110, 2106, 2100, 2107, 2108, 2111, 71, - - 2109, 2103, 71, 71, 71, 2116, 2112, 71, 2115, 2113, - 71, 71, 2114, 71, 2117, 71, 71, 71, 2123, 71, - 71, 71, 2118, 71, 71, 2125, 71, 71, 71, 2130, - 2119, 2121, 2120, 2122, 71, 2124, 2126, 2127, 2128, 2129, - 71, 2134, 71, 71, 2135, 2131, 2133, 71, 2132, 2136, - 71, 71, 2138, 2139, 2137, 2140, 2141, 71, 71, 71, - 71, 71, 71, 2143, 71, 71, 71, 2147, 71, 71, - 71, 2149, 2142, 2148, 2145, 2151, 2144, 2150, 71, 71, - 71, 71, 2155, 71, 2146, 2154, 71, 71, 2152, 71, - 71, 71, 2157, 71, 71, 71, 71, 2161, 2164, 2156, - - 2153, 2163, 71, 71, 71, 2160, 71, 71, 2165, 2158, - 2159, 2168, 2169, 2166, 2162, 2170, 71, 71, 71, 2167, - 71, 2844, 2171, 71, 2173, 71, 71, 2176, 2174, 71, - 2172, 2178, 71, 2177, 2180, 71, 71, 71, 2182, 71, - 71, 71, 71, 2175, 2179, 2181, 71, 2185, 71, 71, - 2189, 71, 71, 2187, 2188, 2184, 2190, 71, 2183, 2191, - 71, 2192, 71, 71, 71, 71, 71, 71, 2193, 2195, - 2198, 71, 2186, 2200, 71, 71, 2199, 71, 2197, 71, - 2203, 71, 2196, 71, 2194, 71, 2206, 2207, 71, 71, - 2202, 71, 2201, 71, 2208, 71, 2204, 2210, 2209, 71, - - 71, 2205, 71, 2215, 71, 2211, 71, 2214, 2216, 71, - 2217, 71, 71, 2212, 2218, 71, 71, 2221, 2219, 71, - 2213, 71, 2222, 71, 71, 71, 2227, 71, 2228, 71, - 2220, 2223, 2229, 71, 71, 2224, 71, 71, 71, 71, - 71, 2226, 71, 2231, 2225, 2234, 2230, 2237, 71, 2232, - 71, 71, 71, 71, 71, 71, 71, 2244, 2233, 2235, - 2238, 71, 2236, 71, 71, 71, 2241, 71, 71, 2243, - 2245, 71, 2240, 71, 2251, 2844, 2239, 71, 2242, 2246, - 2247, 2248, 2253, 71, 2255, 71, 71, 2252, 2254, 2249, - 71, 2250, 2256, 71, 71, 2257, 71, 2258, 71, 2259, - - 71, 2261, 71, 71, 2260, 71, 71, 71, 71, 71, - 2270, 71, 2271, 71, 71, 71, 2267, 2274, 71, 2262, - 71, 2264, 2263, 71, 2273, 71, 2266, 2265, 2268, 2269, - 2276, 71, 2275, 71, 71, 71, 2272, 71, 2277, 71, - 2279, 71, 2287, 2278, 2285, 71, 2286, 71, 71, 2280, - 71, 71, 71, 2281, 71, 2282, 71, 2283, 2284, 2291, - 71, 71, 71, 2295, 2296, 71, 2289, 2294, 2288, 71, - 71, 2290, 2297, 2298, 71, 71, 2292, 71, 71, 71, - 2293, 71, 71, 71, 2300, 71, 2303, 71, 2299, 71, - 2307, 2308, 71, 2311, 71, 71, 2301, 71, 2302, 2304, - - 2309, 2305, 71, 2306, 71, 71, 2312, 2310, 2314, 71, - 2313, 2315, 71, 2319, 71, 71, 71, 2317, 2316, 2321, - 71, 2323, 71, 71, 71, 2326, 71, 2320, 2324, 2318, - 71, 2327, 71, 71, 71, 2322, 2325, 2333, 71, 71, - 71, 71, 71, 71, 71, 71, 2329, 2330, 2331, 2332, - 2335, 71, 2338, 71, 2328, 71, 2334, 2336, 2337, 71, - 2340, 2339, 71, 2341, 71, 71, 71, 2343, 71, 2344, - 2346, 71, 2347, 71, 2342, 2348, 71, 71, 71, 2352, - 2345, 2349, 71, 2353, 2350, 71, 71, 2354, 71, 2357, - 71, 2358, 71, 2356, 71, 2351, 2362, 2355, 2360, 71, - - 71, 2363, 71, 2361, 71, 71, 2366, 2359, 71, 2364, - 2365, 71, 71, 2368, 71, 2367, 71, 71, 71, 71, - 71, 71, 71, 2369, 2372, 2371, 2374, 71, 71, 71, - 2373, 2370, 2375, 2377, 2376, 71, 71, 71, 2379, 71, - 2378, 71, 2383, 71, 71, 71, 2381, 2386, 2382, 2380, - 2388, 71, 2384, 71, 71, 71, 71, 2392, 71, 71, - 71, 2844, 71, 2385, 2387, 2390, 2396, 2397, 71, 2391, - 2398, 2399, 2389, 71, 2393, 2394, 71, 71, 2400, 2395, - 2401, 71, 71, 71, 71, 71, 2405, 71, 2403, 71, - 2402, 2406, 71, 71, 2404, 71, 2409, 2410, 71, 2411, - - 71, 2412, 71, 2407, 2413, 71, 2415, 2408, 71, 71, - 2418, 2416, 71, 2414, 2419, 71, 2420, 71, 71, 71, - 71, 2421, 2424, 71, 71, 2425, 2426, 71, 2417, 71, - 2428, 71, 2422, 71, 71, 71, 2432, 71, 2423, 2433, - 71, 2434, 71, 71, 2427, 2435, 2429, 71, 71, 2431, - 2436, 71, 2430, 71, 2441, 71, 71, 71, 71, 2440, - 71, 2443, 2444, 71, 71, 71, 2437, 2438, 2439, 2445, - 71, 71, 71, 2446, 2447, 2449, 2453, 71, 71, 71, - 2442, 2448, 2452, 2456, 71, 71, 71, 2450, 2451, 71, - 2459, 2462, 71, 2455, 2458, 2460, 71, 71, 2454, 71, - - 2463, 71, 2464, 71, 2457, 71, 2465, 71, 2461, 71, - 2466, 71, 2468, 2467, 71, 71, 71, 2474, 71, 71, - 71, 71, 2475, 2469, 2471, 2477, 71, 71, 2478, 2479, - 71, 71, 2480, 71, 2472, 71, 2473, 2470, 2476, 71, - 2481, 71, 2482, 71, 2483, 2485, 71, 2486, 71, 2489, - 2487, 71, 71, 71, 2490, 71, 71, 2484, 2493, 71, - 71, 2492, 71, 2488, 2491, 2495, 71, 71, 71, 71, - 71, 2494, 2496, 71, 2844, 2498, 71, 71, 2502, 2500, - 71, 2503, 71, 2504, 71, 2506, 2505, 2497, 2499, 2514, - 2501, 71, 2507, 2509, 71, 2508, 2510, 71, 2511, 71, - - 71, 71, 2516, 71, 2513, 71, 2515, 71, 71, 2512, - 2517, 71, 2518, 2519, 71, 71, 71, 2524, 71, 71, - 2522, 2520, 71, 71, 2526, 71, 71, 2530, 71, 71, - 71, 71, 2521, 71, 2523, 71, 71, 2528, 2527, 2533, - 71, 71, 2531, 2525, 2532, 2534, 2529, 71, 71, 2535, - 2540, 71, 71, 2538, 71, 2537, 2539, 2542, 71, 2536, - 2541, 2543, 71, 2545, 71, 71, 71, 71, 2550, 71, - 2546, 71, 2549, 2544, 71, 71, 71, 2554, 71, 71, - 71, 2547, 2548, 71, 2556, 2558, 71, 2559, 71, 2561, - 71, 2551, 2555, 71, 2553, 71, 71, 2552, 71, 2565, - - 71, 71, 2557, 2560, 2563, 71, 2569, 71, 71, 2562, - 2567, 2570, 71, 2564, 71, 2566, 71, 2571, 71, 2574, - 2568, 2573, 2575, 71, 2572, 71, 71, 2577, 2582, 2576, - 71, 71, 2578, 71, 71, 2579, 2580, 2581, 71, 2585, - 71, 2586, 71, 71, 71, 2589, 71, 2590, 71, 71, - 71, 71, 71, 2588, 2591, 2583, 2584, 2593, 2594, 71, - 2595, 71, 2587, 71, 2592, 2596, 71, 71, 2597, 2598, - 71, 71, 71, 2600, 71, 2603, 2604, 71, 71, 71, - 71, 2608, 71, 71, 71, 71, 2599, 2611, 71, 2607, - 2610, 2614, 2605, 2601, 2602, 2612, 71, 71, 2613, 2606, - - 71, 71, 2609, 2617, 71, 71, 71, 71, 71, 2616, - 2618, 71, 2615, 2621, 71, 71, 71, 71, 71, 71, - 2623, 71, 2844, 2622, 2624, 71, 2619, 2620, 71, 71, - 71, 71, 71, 2638, 2625, 2629, 2633, 2626, 2627, 2628, - 2636, 71, 2630, 2631, 71, 2635, 2637, 71, 2647, 2632, - 2634, 2639, 71, 2640, 71, 2641, 2642, 71, 71, 2643, - 2644, 2844, 71, 2645, 2646, 71, 71, 2648, 71, 71, - 2652, 71, 71, 71, 2651, 2649, 2654, 71, 71, 2650, - 2653, 71, 71, 71, 2659, 71, 2655, 2660, 71, 2661, - 71, 2658, 71, 2656, 71, 71, 2666, 2663, 2668, 2657, - - 2662, 2667, 71, 2664, 71, 71, 2665, 71, 71, 71, - 71, 2675, 71, 2672, 2673, 71, 71, 2677, 71, 2712, - 2669, 2676, 2670, 2678, 71, 71, 2671, 2679, 71, 2674, - 2680, 71, 2681, 71, 2682, 71, 2683, 71, 2684, 71, - 71, 2686, 71, 2688, 71, 2687, 71, 71, 71, 2685, - 71, 71, 2692, 2694, 71, 71, 71, 71, 71, 2696, - 2690, 2689, 2691, 2693, 71, 2698, 71, 71, 2701, 2700, - 71, 71, 71, 2695, 71, 2703, 2699, 71, 71, 71, - 71, 2702, 2708, 2697, 2709, 71, 71, 71, 2706, 71, - 2704, 71, 71, 2707, 71, 2705, 2711, 71, 71, 2717, - - 2718, 71, 2720, 2710, 71, 2714, 2713, 2719, 2716, 71, - 71, 71, 2715, 71, 71, 71, 71, 2721, 71, 71, - 2731, 71, 71, 2733, 71, 71, 2724, 71, 2722, 2723, - 2726, 2732, 2729, 71, 2734, 2727, 2728, 71, 2725, 2730, - 2735, 71, 2736, 71, 2737, 71, 71, 2738, 2739, 71, - 71, 2740, 2744, 71, 2741, 71, 2747, 71, 71, 71, - 2749, 71, 2742, 71, 71, 2743, 71, 2745, 2752, 71, - 71, 2753, 71, 71, 2754, 2746, 2756, 2757, 2748, 2750, - 71, 2751, 71, 71, 71, 2761, 71, 2758, 71, 71, - 71, 2755, 71, 2759, 71, 71, 2764, 71, 71, 2766, - - 71, 71, 71, 2760, 2763, 71, 2771, 2772, 2762, 2765, - 2768, 2769, 71, 71, 2767, 2775, 71, 71, 2776, 2770, - 2777, 71, 2778, 2773, 71, 71, 71, 71, 2783, 2779, - 2780, 2774, 2781, 71, 71, 71, 2782, 71, 2784, 2785, - 71, 2786, 71, 71, 71, 2791, 71, 71, 71, 2788, - 71, 71, 71, 2794, 2787, 2795, 71, 71, 71, 71, - 2793, 71, 2789, 2790, 2798, 2792, 2796, 2799, 71, 2797, - 71, 2802, 71, 2803, 2801, 71, 2805, 2800, 71, 2806, - 71, 2808, 71, 2809, 71, 2804, 71, 71, 71, 2810, - 2813, 71, 71, 2811, 2807, 2817, 71, 2814, 2815, 2816, - - 71, 71, 71, 71, 71, 71, 2812, 71, 2818, 2820, - 2822, 71, 2824, 71, 71, 71, 71, 2828, 2825, 2829, - 71, 2819, 2821, 71, 2823, 71, 71, 2832, 2833, 71, - 71, 2835, 71, 2826, 2827, 2836, 71, 2834, 71, 71, - 71, 71, 2830, 71, 2831, 2837, 2838, 2844, 2839, 2842, - 71, 2843, 71, 2844, 2844, 2844, 2844, 2844, 2840, 2841, - 43, 43, 43, 43, 43, 43, 43, 48, 48, 48, - 48, 48, 48, 48, 53, 53, 53, 53, 53, 53, - 53, 59, 59, 59, 59, 59, 59, 59, 64, 64, - 64, 64, 64, 64, 64, 74, 74, 2844, 74, 74, - - 74, 74, 140, 140, 2844, 2844, 2844, 140, 140, 142, - 142, 2844, 2844, 142, 2844, 142, 144, 2844, 2844, 2844, - 2844, 2844, 144, 147, 147, 2844, 2844, 2844, 147, 147, - 149, 2844, 2844, 2844, 2844, 2844, 149, 151, 151, 2844, - 151, 151, 151, 151, 75, 75, 2844, 75, 75, 75, - 75, 13, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, - 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, - 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, - 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, - 2844, 2844 - + 223, 225, 71, 71, 226, 71, 71, 219, 71, 71, + 232, 220, 71, 71, 236, 228, 227, 235, 71, 233, + 71, 229, 231, 239, 230, 237, 140, 140, 148, 142, + 238, 234, 142, 144, 240, 144, 144, 71, 144, 147, + 147, 149, 242, 149, 149, 75, 149, 75, 75, 150, + + 75, 71, 241, 243, 71, 71, 71, 152, 71, 71, + 71, 71, 250, 71, 247, 71, 253, 71, 244, 245, + 246, 248, 256, 71, 255, 252, 71, 251, 71, 257, + 261, 259, 71, 254, 71, 260, 71, 71, 262, 293, + 71, 265, 258, 263, 71, 270, 266, 71, 71, 71, + 71, 267, 275, 272, 273, 276, 71, 268, 269, 71, + 264, 71, 274, 278, 71, 71, 271, 71, 71, 279, + 280, 71, 71, 71, 71, 294, 285, 286, 291, 282, + 281, 71, 283, 71, 277, 296, 284, 71, 287, 71, + 295, 71, 298, 288, 292, 300, 301, 297, 71, 71, + + 304, 71, 71, 299, 71, 289, 71, 290, 306, 305, + 307, 302, 71, 71, 71, 71, 71, 71, 71, 308, + 303, 310, 71, 71, 312, 71, 309, 71, 71, 71, + 71, 314, 316, 71, 71, 71, 71, 311, 315, 317, + 321, 325, 71, 318, 313, 319, 323, 71, 71, 328, + 71, 71, 322, 320, 71, 71, 330, 71, 324, 331, + 71, 332, 333, 334, 71, 336, 326, 327, 71, 71, + 329, 71, 71, 71, 339, 341, 337, 340, 71, 335, + 71, 71, 343, 71, 71, 344, 338, 71, 71, 347, + 71, 71, 150, 71, 71, 71, 367, 71, 350, 342, + + 352, 354, 345, 346, 348, 71, 349, 71, 355, 358, + 356, 351, 71, 71, 71, 71, 353, 357, 71, 71, + 71, 71, 364, 71, 365, 71, 366, 71, 359, 363, + 71, 71, 360, 146, 362, 71, 368, 361, 369, 71, + 371, 71, 374, 370, 71, 372, 71, 373, 71, 375, + 71, 378, 376, 71, 380, 382, 71, 71, 381, 377, + 71, 71, 71, 71, 385, 71, 383, 379, 387, 71, + 386, 71, 71, 71, 71, 71, 392, 71, 71, 71, + 393, 71, 71, 384, 145, 395, 391, 71, 397, 388, + 389, 71, 390, 71, 399, 401, 394, 396, 71, 71, + + 398, 71, 402, 71, 71, 400, 71, 71, 71, 416, + 403, 71, 410, 412, 71, 71, 426, 413, 71, 414, + 404, 71, 411, 405, 421, 71, 71, 418, 406, 407, + 408, 409, 71, 425, 417, 415, 71, 71, 419, 420, + 422, 427, 71, 423, 428, 71, 424, 429, 71, 430, + 71, 71, 71, 71, 71, 71, 432, 437, 71, 71, + 71, 71, 440, 71, 433, 431, 439, 143, 71, 451, + 436, 71, 434, 446, 435, 71, 441, 453, 438, 71, + 442, 71, 444, 71, 445, 71, 443, 71, 447, 71, + 452, 71, 454, 71, 71, 71, 71, 455, 71, 71, + + 71, 448, 466, 456, 449, 71, 450, 457, 467, 481, + 468, 465, 469, 472, 71, 458, 71, 459, 589, 460, + 480, 71, 482, 71, 470, 150, 71, 483, 71, 484, + 71, 71, 461, 486, 71, 462, 490, 463, 71, 464, + 471, 71, 71, 473, 474, 487, 485, 488, 71, 71, + 489, 71, 491, 475, 492, 476, 477, 478, 494, 71, + 479, 71, 493, 71, 71, 71, 71, 502, 495, 71, + 500, 497, 496, 71, 71, 503, 499, 71, 501, 498, + 71, 505, 507, 71, 71, 71, 504, 71, 71, 510, + 71, 506, 511, 512, 71, 71, 71, 71, 517, 509, + + 71, 514, 71, 522, 519, 508, 515, 513, 516, 71, + 71, 71, 524, 520, 71, 71, 518, 71, 71, 71, + 141, 71, 71, 532, 528, 71, 533, 525, 521, 523, + 531, 527, 526, 535, 534, 529, 71, 530, 71, 71, + 536, 71, 537, 539, 71, 538, 71, 541, 71, 71, + 71, 71, 545, 546, 543, 71, 71, 71, 71, 71, + 547, 542, 71, 544, 540, 71, 71, 550, 71, 552, + 548, 551, 71, 71, 71, 71, 556, 553, 549, 71, + 71, 71, 558, 71, 554, 555, 557, 559, 71, 561, + 71, 71, 560, 71, 563, 562, 71, 564, 71, 565, + + 568, 567, 566, 71, 71, 71, 71, 71, 575, 71, + 71, 577, 71, 71, 71, 578, 570, 71, 576, 71, + 71, 574, 584, 569, 571, 573, 572, 579, 580, 582, + 585, 581, 583, 71, 71, 71, 71, 71, 71, 588, + 71, 71, 591, 71, 71, 592, 71, 587, 594, 71, + 71, 71, 71, 71, 586, 608, 593, 71, 590, 71, + 595, 71, 597, 611, 71, 596, 71, 598, 607, 615, + 606, 609, 599, 610, 600, 71, 614, 71, 71, 71, + 601, 71, 602, 612, 618, 603, 604, 613, 617, 71, + 71, 616, 605, 620, 71, 619, 71, 621, 71, 624, + + 71, 626, 71, 71, 622, 71, 71, 71, 71, 623, + 71, 71, 71, 632, 71, 628, 71, 627, 71, 633, + 629, 625, 636, 637, 150, 630, 639, 635, 638, 631, + 634, 71, 71, 641, 71, 71, 71, 71, 71, 71, + 71, 651, 646, 640, 71, 71, 648, 71, 649, 643, + 71, 644, 647, 642, 653, 645, 650, 71, 71, 656, + 71, 71, 652, 71, 655, 71, 71, 71, 659, 71, + 654, 658, 667, 71, 664, 71, 660, 71, 657, 665, + 71, 668, 71, 661, 669, 663, 662, 71, 666, 672, + 71, 670, 71, 671, 71, 71, 71, 71, 673, 674, + + 71, 71, 675, 71, 678, 71, 676, 71, 677, 71, + 679, 682, 683, 71, 71, 71, 71, 684, 71, 688, + 686, 71, 71, 71, 150, 71, 680, 689, 681, 71, + 71, 71, 685, 691, 148, 690, 687, 71, 692, 71, + 695, 694, 693, 71, 71, 699, 71, 696, 697, 698, + 701, 71, 700, 71, 703, 702, 71, 704, 71, 71, + 71, 71, 707, 706, 71, 708, 71, 71, 71, 71, + 715, 71, 71, 711, 713, 71, 71, 709, 71, 705, + 712, 716, 710, 71, 721, 71, 71, 719, 714, 723, + 71, 722, 718, 71, 717, 720, 724, 71, 71, 71, + + 728, 730, 725, 71, 71, 71, 71, 71, 729, 71, + 732, 71, 731, 727, 733, 71, 726, 735, 71, 734, + 71, 739, 71, 71, 736, 71, 71, 71, 742, 743, + 745, 741, 146, 71, 737, 738, 71, 740, 71, 71, + 750, 748, 71, 747, 744, 746, 749, 71, 71, 71, + 751, 752, 71, 71, 754, 71, 71, 71, 760, 71, + 71, 753, 71, 761, 71, 71, 755, 71, 71, 762, + 71, 756, 71, 757, 71, 758, 71, 759, 71, 71, + 763, 766, 764, 769, 767, 768, 765, 71, 770, 71, + 771, 774, 71, 71, 71, 772, 71, 71, 773, 71, + + 71, 782, 71, 71, 71, 71, 783, 71, 71, 776, + 775, 71, 777, 781, 778, 779, 780, 71, 785, 786, + 71, 71, 784, 789, 788, 787, 71, 71, 791, 796, + 790, 792, 71, 71, 793, 71, 71, 794, 795, 71, + 71, 150, 797, 71, 71, 798, 802, 803, 71, 800, + 71, 71, 804, 799, 71, 801, 71, 71, 810, 71, + 806, 71, 71, 811, 805, 813, 71, 71, 816, 807, + 808, 812, 71, 71, 71, 71, 814, 818, 809, 71, + 815, 71, 822, 71, 71, 71, 71, 819, 71, 71, + 71, 823, 817, 824, 71, 71, 71, 71, 71, 821, + + 71, 828, 825, 835, 820, 829, 836, 834, 830, 827, + 826, 837, 833, 71, 71, 831, 842, 838, 832, 71, + 839, 71, 840, 71, 71, 841, 845, 71, 71, 71, + 71, 71, 71, 853, 857, 71, 71, 843, 858, 71, + 71, 860, 867, 859, 844, 71, 846, 847, 854, 848, + 71, 71, 849, 855, 856, 71, 862, 850, 71, 71, + 866, 71, 864, 851, 852, 861, 863, 71, 71, 71, + 868, 71, 865, 869, 71, 71, 873, 71, 71, 71, + 71, 876, 872, 71, 71, 880, 882, 71, 870, 71, + 871, 71, 874, 875, 881, 878, 877, 883, 71, 71, + + 918, 886, 884, 71, 885, 887, 879, 71, 71, 889, + 71, 71, 71, 888, 71, 71, 891, 890, 71, 71, + 892, 71, 71, 71, 898, 71, 893, 895, 896, 71, + 901, 71, 71, 71, 71, 71, 71, 894, 899, 900, + 71, 71, 897, 903, 904, 905, 71, 71, 71, 907, + 906, 902, 908, 71, 911, 71, 71, 71, 910, 71, + 71, 71, 909, 916, 919, 71, 914, 71, 71, 71, + 912, 917, 921, 71, 71, 913, 71, 71, 71, 71, + 71, 71, 920, 915, 929, 71, 927, 145, 71, 922, + 71, 925, 932, 923, 924, 71, 926, 930, 71, 933, + + 931, 928, 936, 71, 935, 71, 71, 934, 71, 937, + 71, 939, 940, 71, 71, 71, 71, 71, 71, 938, + 71, 949, 71, 942, 944, 951, 71, 71, 941, 71, + 943, 71, 953, 955, 71, 945, 950, 947, 71, 946, + 948, 954, 71, 71, 71, 962, 952, 71, 959, 71, + 961, 71, 71, 956, 957, 963, 71, 71, 966, 71, + 968, 71, 958, 71, 71, 960, 71, 971, 150, 71, + 965, 970, 71, 71, 964, 71, 973, 71, 974, 967, + 71, 969, 71, 71, 972, 71, 71, 977, 71, 71, + 989, 71, 71, 71, 978, 975, 990, 992, 71, 980, + + 976, 71, 71, 143, 71, 994, 981, 979, 991, 982, + 71, 1013, 71, 983, 71, 984, 993, 995, 996, 985, + 71, 986, 71, 71, 999, 997, 987, 1002, 998, 1000, + 71, 988, 71, 71, 71, 71, 1001, 71, 1004, 1006, + 71, 71, 71, 141, 71, 1011, 1012, 1003, 1005, 1007, + 1010, 71, 71, 1015, 1009, 1014, 71, 71, 1008, 71, + 71, 1017, 71, 1016, 71, 71, 71, 1027, 71, 1026, + 71, 1030, 71, 1031, 1018, 71, 1019, 1029, 1028, 71, + 1032, 1020, 71, 1021, 71, 1034, 1036, 71, 71, 1022, + 1038, 71, 1037, 1033, 1023, 1024, 71, 71, 71, 1042, + + 1039, 1025, 71, 1035, 71, 71, 71, 1043, 71, 71, + 1040, 1041, 1048, 71, 71, 1045, 71, 1046, 71, 71, + 71, 1051, 1049, 1044, 71, 1047, 71, 71, 71, 71, + 71, 71, 71, 1050, 1053, 1058, 1056, 1057, 1055, 1052, + 1060, 71, 71, 71, 1054, 1062, 71, 1059, 1061, 71, + 71, 71, 71, 71, 71, 71, 1065, 1068, 1069, 1070, + 1071, 1063, 1064, 71, 1072, 1067, 1073, 1066, 1074, 71, + 1076, 71, 71, 71, 1078, 1077, 71, 1079, 71, 71, + 71, 1080, 71, 1086, 71, 1075, 71, 71, 1088, 71, + 1089, 1082, 71, 1081, 71, 1084, 71, 71, 1083, 1085, + + 71, 1091, 1092, 71, 71, 71, 1087, 71, 1094, 1095, + 1101, 71, 71, 1090, 71, 1100, 1093, 1096, 1097, 71, + 1099, 71, 71, 1098, 71, 71, 1105, 1104, 1102, 71, + 71, 71, 71, 71, 71, 1109, 1111, 1112, 1116, 1113, + 1103, 71, 71, 71, 71, 71, 1110, 1106, 71, 1107, + 1114, 1108, 71, 1115, 1119, 71, 71, 1121, 71, 1117, + 71, 1120, 71, 71, 1122, 71, 71, 71, 1125, 1126, + 71, 1123, 1118, 71, 71, 71, 1131, 1132, 1127, 71, + 71, 1124, 71, 71, 1134, 1129, 1135, 71, 1128, 71, + 1133, 1139, 71, 1130, 71, 71, 71, 71, 71, 1136, + + 71, 1145, 71, 1137, 1138, 1141, 71, 71, 71, 71, + 1151, 71, 1140, 1149, 71, 71, 1142, 1166, 71, 1144, + 1146, 1148, 1147, 1143, 1150, 1153, 1154, 71, 71, 1156, + 71, 71, 71, 1155, 1152, 1157, 71, 71, 71, 71, + 71, 71, 71, 1160, 71, 2904, 71, 71, 1163, 71, + 1158, 1159, 71, 71, 1161, 71, 71, 1164, 1170, 1162, + 1167, 1172, 1178, 1165, 1169, 1168, 71, 1176, 71, 71, + 1173, 71, 1174, 1171, 1177, 1175, 71, 71, 71, 1180, + 71, 71, 1179, 1183, 71, 71, 1182, 1188, 71, 1181, + 1185, 71, 1186, 71, 71, 71, 1189, 71, 1190, 1184, + + 1192, 1193, 71, 1187, 71, 71, 71, 71, 71, 71, + 71, 1194, 71, 71, 1191, 1200, 71, 71, 71, 1195, + 1196, 1198, 1199, 71, 1201, 1197, 71, 71, 71, 1202, + 71, 1206, 1205, 1210, 1203, 1204, 1209, 71, 1207, 71, + 71, 71, 1211, 1208, 71, 1212, 1214, 71, 1216, 71, + 1213, 71, 1215, 1217, 71, 71, 1221, 71, 2904, 1230, + 1229, 1219, 1220, 1218, 71, 71, 71, 1231, 1234, 1222, + 1228, 71, 1223, 1224, 71, 71, 1232, 1225, 71, 1237, + 71, 71, 71, 1226, 1233, 1235, 1236, 1227, 71, 1239, + 71, 71, 71, 1240, 71, 1241, 71, 71, 71, 71, + + 1249, 1250, 1246, 1238, 71, 1244, 71, 71, 71, 1251, + 1243, 1242, 1247, 71, 1245, 71, 1259, 1248, 71, 1252, + 71, 1258, 1253, 71, 71, 71, 1263, 1254, 1261, 1255, + 71, 1256, 1265, 1257, 1260, 71, 71, 1266, 71, 1264, + 1262, 1268, 71, 71, 71, 71, 71, 71, 71, 71, + 71, 71, 1270, 1275, 1273, 71, 1269, 1267, 1277, 1281, + 71, 1274, 71, 1271, 1272, 1276, 71, 1280, 1278, 1283, + 71, 71, 71, 1284, 71, 1285, 71, 71, 71, 1286, + 1279, 1282, 1289, 71, 1291, 71, 1288, 71, 1292, 71, + 71, 71, 1296, 71, 1293, 1287, 71, 71, 1290, 71, + + 1298, 71, 71, 71, 71, 1302, 1300, 71, 71, 71, + 1304, 1294, 1295, 1301, 1306, 71, 1297, 71, 71, 1299, + 1303, 2904, 1307, 1305, 71, 71, 1308, 71, 1311, 1309, + 1310, 71, 71, 1313, 71, 71, 1312, 1317, 1314, 1318, + 1320, 1315, 71, 71, 71, 71, 71, 1319, 1316, 71, + 71, 1324, 71, 1321, 71, 71, 71, 1328, 1329, 71, + 1331, 1323, 71, 71, 71, 1330, 71, 71, 1322, 71, + 71, 71, 71, 1338, 1325, 1326, 1332, 71, 71, 1327, + 71, 1335, 1333, 71, 1336, 1343, 71, 1334, 1342, 1337, + 71, 71, 71, 71, 1347, 71, 1345, 1339, 1341, 1348, + + 71, 71, 1350, 1340, 71, 71, 71, 71, 71, 1352, + 71, 1346, 1351, 1344, 71, 1356, 1358, 1360, 1357, 1349, + 1353, 1354, 1359, 71, 1355, 71, 71, 71, 71, 1361, + 71, 71, 71, 1364, 71, 71, 1366, 1362, 71, 1368, + 71, 71, 1370, 71, 1373, 1374, 1363, 71, 1365, 71, + 1367, 1377, 71, 71, 71, 1369, 1371, 71, 1372, 71, + 71, 71, 71, 71, 1378, 1375, 71, 1384, 1376, 1381, + 1385, 1386, 1379, 1380, 71, 1382, 71, 71, 1389, 71, + 1383, 71, 71, 71, 1394, 1388, 2904, 1391, 1393, 1395, + 71, 71, 1387, 71, 1390, 71, 71, 1396, 71, 1397, + + 1398, 71, 71, 1392, 71, 71, 1399, 1402, 71, 1401, + 71, 1405, 71, 1400, 71, 1404, 71, 71, 71, 1411, + 1403, 1408, 1407, 1413, 1412, 71, 71, 71, 1414, 71, + 71, 1409, 1406, 71, 1416, 71, 1419, 1410, 71, 71, + 71, 71, 1424, 1420, 71, 71, 1415, 1427, 71, 1417, + 1425, 71, 71, 71, 1418, 1430, 71, 1429, 1421, 1423, + 1422, 71, 71, 71, 71, 71, 71, 71, 1438, 71, + 1426, 1428, 2904, 71, 71, 1431, 1439, 1441, 71, 1435, + 71, 1432, 1433, 1434, 1437, 1442, 1440, 1436, 71, 71, + 71, 71, 1443, 71, 71, 71, 1447, 71, 1450, 1445, + + 1448, 71, 1444, 71, 1446, 1454, 71, 71, 71, 71, + 1451, 71, 1455, 1449, 1456, 1457, 71, 1452, 71, 1453, + 1458, 1459, 1462, 1463, 71, 71, 1460, 71, 71, 71, + 71, 1467, 71, 1468, 1466, 1470, 71, 71, 1461, 71, + 1471, 1472, 71, 1464, 71, 71, 71, 71, 1465, 1475, + 71, 71, 1469, 71, 1478, 71, 71, 71, 71, 1477, + 1473, 1474, 1482, 71, 1484, 71, 1479, 1476, 71, 71, + 71, 1488, 1483, 71, 71, 1481, 1480, 71, 71, 71, + 1493, 71, 1491, 1485, 1486, 71, 71, 1489, 71, 1494, + 71, 1496, 1490, 1487, 1492, 71, 71, 71, 1495, 1498, + + 1499, 71, 1501, 1502, 71, 71, 71, 71, 1497, 71, + 71, 1509, 71, 71, 1500, 71, 71, 1510, 71, 1503, + 1504, 1507, 71, 71, 1505, 1506, 71, 1513, 1514, 71, + 71, 1516, 71, 1511, 1508, 1512, 1515, 1517, 1518, 1520, + 1521, 71, 1519, 71, 71, 71, 1522, 71, 71, 1523, + 71, 71, 1527, 71, 1524, 1525, 71, 1528, 71, 71, + 71, 1530, 1532, 71, 1533, 1526, 71, 1529, 71, 1539, + 71, 71, 1534, 1531, 1536, 71, 71, 1537, 71, 1541, + 71, 1540, 71, 1542, 1545, 1544, 1535, 71, 71, 1538, + 71, 71, 1546, 1543, 71, 1547, 71, 1548, 1549, 1553, + + 71, 1551, 71, 71, 71, 1550, 1555, 1556, 1557, 1552, + 71, 1559, 71, 71, 71, 1558, 71, 71, 1562, 71, + 71, 1561, 1554, 71, 71, 1563, 71, 71, 71, 71, + 1571, 71, 71, 71, 71, 1560, 71, 71, 71, 1569, + 71, 1564, 1567, 1568, 1565, 1570, 1566, 71, 1574, 1576, + 71, 1572, 1578, 1573, 71, 1579, 71, 71, 1575, 71, + 1577, 71, 1582, 71, 71, 71, 71, 71, 71, 2904, + 1584, 1580, 1586, 1581, 71, 1583, 1587, 1593, 1585, 1588, + 1589, 1590, 1594, 71, 1595, 71, 1591, 71, 71, 71, + 1599, 71, 1598, 1592, 71, 71, 71, 71, 71, 1596, + + 71, 1602, 1603, 71, 71, 1611, 1597, 1600, 71, 71, + 71, 71, 1606, 71, 1601, 71, 1605, 1604, 1608, 1610, + 71, 1609, 71, 1607, 1612, 71, 1614, 71, 1613, 71, + 71, 71, 1621, 1615, 1616, 71, 71, 71, 1617, 1618, + 71, 1625, 1624, 71, 71, 1623, 71, 71, 1620, 71, + 71, 1622, 1632, 1627, 1619, 1626, 1628, 1633, 71, 71, + 1635, 1629, 71, 1634, 1639, 1631, 71, 1630, 1636, 1637, + 71, 1638, 1640, 71, 71, 1644, 71, 71, 71, 1641, + 71, 71, 1642, 71, 1648, 71, 1646, 71, 1643, 1645, + 71, 71, 1647, 1649, 71, 71, 71, 71, 71, 1650, + + 1653, 1660, 1652, 1658, 71, 71, 1651, 71, 1654, 1655, + 1661, 1656, 1657, 71, 71, 71, 71, 71, 1662, 71, + 1667, 71, 71, 1671, 71, 1659, 71, 71, 2904, 71, + 1666, 71, 1664, 1663, 1665, 1673, 71, 1669, 71, 71, + 1670, 1668, 71, 1674, 1675, 71, 71, 1672, 1680, 71, + 1676, 1677, 1678, 71, 71, 1681, 1684, 71, 71, 71, + 71, 1679, 71, 71, 71, 1682, 1686, 71, 71, 71, + 1691, 71, 1685, 1683, 1687, 1688, 71, 1694, 1699, 1689, + 1692, 1695, 71, 71, 1690, 1693, 1696, 1697, 71, 71, + 1700, 1701, 71, 71, 1698, 71, 71, 1703, 71, 71, + + 71, 1704, 71, 71, 71, 1702, 71, 71, 71, 1709, + 71, 71, 1713, 71, 71, 1710, 71, 1714, 1719, 1705, + 1707, 1708, 1706, 1711, 71, 1712, 1718, 71, 71, 1717, + 1715, 71, 71, 1716, 71, 71, 1724, 1720, 71, 71, + 1727, 1728, 71, 1729, 71, 1731, 71, 1721, 1722, 71, + 1732, 1723, 1725, 71, 1726, 1730, 71, 1735, 71, 71, + 1737, 71, 1739, 1736, 1738, 71, 71, 1741, 71, 71, + 1744, 71, 71, 71, 1733, 1743, 1746, 1734, 71, 1745, + 71, 71, 71, 1740, 71, 1753, 71, 1755, 71, 71, + 71, 71, 1756, 71, 1742, 71, 1747, 1748, 1749, 71, + + 1751, 1752, 1757, 1750, 1760, 71, 1754, 1758, 1761, 71, + 1759, 1764, 1765, 71, 71, 1763, 71, 71, 1762, 71, + 1767, 71, 71, 1770, 1771, 71, 71, 1773, 71, 71, + 71, 71, 71, 1779, 71, 1778, 71, 1768, 71, 1775, + 1776, 71, 1766, 1769, 71, 1782, 1772, 71, 71, 71, + 1785, 71, 71, 1777, 1774, 71, 1783, 1780, 1789, 1781, + 1788, 71, 71, 71, 71, 1792, 1793, 71, 1787, 1791, + 71, 71, 71, 71, 1784, 1794, 71, 1786, 1795, 1796, + 71, 1790, 71, 1797, 71, 1800, 1798, 71, 71, 1803, + 1804, 71, 1799, 71, 71, 71, 71, 71, 1807, 2904, + + 71, 71, 1801, 71, 71, 1813, 1816, 71, 1806, 71, + 1814, 1805, 71, 1802, 1808, 1809, 1810, 71, 1811, 1812, + 71, 1815, 1820, 71, 1817, 71, 71, 71, 1818, 71, + 1821, 71, 1824, 1819, 1827, 71, 71, 1830, 71, 1822, + 71, 1829, 71, 1831, 71, 1823, 71, 71, 1832, 1825, + 1828, 1826, 71, 1837, 71, 1833, 1838, 71, 1834, 1839, + 1841, 1842, 71, 1835, 1840, 71, 71, 71, 71, 71, + 1846, 71, 1836, 1844, 71, 71, 71, 71, 1848, 1851, + 1853, 1845, 71, 1847, 71, 71, 71, 1849, 1843, 71, + 71, 71, 71, 71, 1858, 71, 1854, 1857, 71, 1859, + + 1865, 1855, 1850, 2904, 1852, 1860, 71, 1861, 71, 1856, + 1863, 71, 71, 1862, 71, 71, 71, 1864, 1866, 71, + 1868, 71, 1869, 1867, 71, 1871, 71, 71, 71, 71, + 1875, 71, 71, 1870, 1874, 71, 71, 1876, 1872, 1873, + 1877, 1878, 1879, 71, 71, 71, 71, 71, 71, 71, + 1886, 1884, 1880, 1881, 1885, 71, 71, 71, 1888, 71, + 71, 1892, 1887, 1882, 71, 1883, 71, 71, 1891, 1889, + 71, 71, 71, 1890, 1899, 1893, 1894, 1896, 1898, 71, + 71, 71, 2904, 1897, 71, 1904, 71, 71, 1895, 71, + 1906, 71, 71, 71, 1907, 71, 1900, 1901, 71, 1902, + + 1903, 1908, 71, 1909, 1905, 1910, 71, 1912, 71, 71, + 71, 71, 71, 1911, 71, 71, 71, 1913, 71, 71, + 71, 1920, 1915, 1916, 1917, 1924, 71, 71, 71, 2904, + 1914, 1919, 1923, 71, 1921, 71, 1927, 1925, 1922, 71, + 1918, 71, 71, 71, 1928, 1931, 1930, 1926, 1929, 71, + 71, 1935, 71, 1932, 1933, 71, 71, 1934, 71, 71, + 1939, 71, 71, 1941, 1937, 1943, 71, 71, 1938, 71, + 1936, 71, 71, 1946, 1945, 71, 1942, 1947, 1940, 71, + 1948, 71, 1951, 71, 71, 71, 71, 71, 71, 1952, + 71, 71, 71, 1944, 1954, 2017, 1953, 1949, 1957, 71, + + 1961, 1950, 71, 1958, 1955, 1956, 71, 1959, 71, 71, + 1960, 1963, 71, 1962, 1966, 71, 71, 71, 71, 1968, + 1964, 71, 1969, 71, 71, 1970, 1973, 71, 1965, 1967, + 71, 1975, 1971, 71, 71, 1972, 1976, 71, 71, 1977, + 71, 71, 71, 1980, 71, 1978, 1979, 1981, 1974, 71, + 1985, 71, 71, 1982, 71, 71, 71, 71, 1984, 71, + 71, 1983, 1986, 71, 71, 1994, 71, 71, 1989, 71, + 1987, 1988, 1990, 71, 1995, 1991, 1992, 71, 71, 1993, + 71, 2003, 1996, 1997, 1999, 2002, 2005, 71, 71, 2000, + 71, 2007, 71, 71, 71, 2001, 1998, 2004, 2009, 2006, + + 71, 71, 2012, 2014, 2015, 2010, 71, 2013, 71, 71, + 71, 71, 2008, 71, 2011, 71, 2016, 2019, 71, 71, + 2020, 2024, 71, 2026, 2023, 71, 2018, 71, 2025, 2028, + 71, 71, 71, 2030, 2021, 71, 2029, 2031, 71, 71, + 2033, 71, 71, 2027, 2032, 2022, 71, 71, 71, 71, + 2035, 2034, 2036, 71, 2038, 71, 71, 71, 2044, 71, + 2041, 71, 71, 71, 71, 2039, 2037, 2045, 2040, 2047, + 71, 71, 71, 2043, 2042, 71, 2046, 2051, 71, 2054, + 71, 71, 2049, 71, 71, 71, 71, 71, 2048, 2055, + 2050, 2052, 71, 2053, 71, 71, 71, 2065, 71, 71, + + 71, 71, 2056, 2057, 2066, 71, 2060, 2062, 2058, 71, + 2059, 2064, 2067, 2061, 2068, 2063, 71, 2070, 2069, 2071, + 71, 2072, 71, 71, 2073, 71, 2075, 71, 71, 2078, + 71, 71, 2079, 71, 71, 71, 2074, 2076, 2080, 71, + 2077, 2084, 71, 2085, 71, 2087, 71, 2083, 71, 2089, + 71, 2081, 71, 2904, 2082, 71, 2092, 71, 2086, 71, + 2091, 2093, 71, 71, 71, 71, 2088, 2090, 71, 71, + 2099, 71, 2095, 2094, 2098, 2101, 71, 71, 2096, 71, + 71, 71, 2105, 2104, 2097, 2103, 71, 2100, 2107, 71, + 71, 71, 2111, 71, 71, 2102, 71, 2106, 71, 71, + + 2116, 71, 71, 2115, 71, 2108, 2109, 71, 71, 2110, + 2120, 71, 71, 2114, 2112, 71, 71, 2125, 71, 2113, + 71, 2117, 2118, 2119, 2121, 2122, 2123, 71, 71, 2126, + 2127, 71, 71, 71, 71, 71, 71, 2130, 2131, 71, + 71, 2124, 71, 2129, 2135, 71, 71, 2128, 2133, 71, + 2137, 2138, 2140, 71, 2142, 71, 71, 2134, 71, 2132, + 71, 2143, 71, 2141, 2139, 71, 2136, 2144, 2146, 71, + 71, 71, 2147, 71, 2148, 71, 71, 2153, 2145, 2149, + 2150, 2154, 2151, 71, 71, 71, 2159, 71, 2155, 2152, + 71, 2158, 71, 71, 2157, 71, 2156, 71, 2160, 71, + + 71, 2166, 71, 71, 71, 71, 2161, 71, 71, 71, + 71, 2164, 2168, 2162, 2167, 2163, 2165, 2169, 71, 71, + 2170, 2172, 2171, 71, 2174, 71, 2173, 2214, 2175, 2189, + 2176, 2177, 71, 71, 2178, 2179, 71, 71, 71, 2182, + 2180, 2183, 71, 2181, 2904, 71, 71, 71, 2184, 71, + 71, 2186, 71, 71, 2190, 71, 2185, 71, 2187, 2191, + 2192, 2193, 71, 71, 71, 71, 2188, 71, 2194, 2198, + 71, 2197, 71, 2195, 71, 71, 71, 2200, 71, 71, + 71, 71, 2207, 2204, 71, 2196, 2206, 2199, 71, 71, + 2208, 2212, 2203, 71, 71, 2201, 2202, 71, 71, 2211, + + 2205, 71, 71, 2216, 71, 71, 2213, 2209, 2217, 2210, + 71, 2219, 71, 2221, 71, 2215, 2220, 2223, 71, 71, + 71, 2225, 71, 71, 71, 71, 2222, 71, 71, 2224, + 2218, 71, 71, 2229, 2233, 71, 2231, 2232, 2227, 2234, + 71, 2226, 2235, 2228, 71, 2236, 71, 71, 71, 71, + 71, 2230, 71, 71, 2239, 2242, 71, 2244, 71, 2243, + 71, 71, 2237, 71, 71, 2241, 2247, 71, 71, 2238, + 2254, 2240, 71, 2250, 71, 2246, 2245, 2251, 71, 2252, + 2248, 71, 2249, 71, 71, 71, 2253, 71, 2259, 71, + 2260, 71, 2258, 2261, 71, 2262, 71, 2255, 2256, 71, + + 71, 71, 71, 2266, 71, 2257, 2265, 71, 2267, 71, + 71, 2263, 71, 2272, 71, 71, 2268, 71, 2264, 2274, + 71, 2269, 2275, 71, 71, 71, 71, 71, 2271, 2277, + 2270, 71, 2278, 71, 2273, 2276, 2281, 71, 2279, 2284, + 71, 71, 71, 71, 71, 71, 71, 2280, 71, 71, + 2285, 71, 2291, 2282, 71, 71, 71, 2283, 2288, 2293, + 71, 71, 2290, 2287, 2292, 2302, 71, 2295, 2286, 2294, + 2289, 71, 71, 71, 2298, 2299, 71, 2300, 2296, 2303, + 71, 2301, 71, 2297, 71, 2304, 71, 2305, 71, 2306, + 71, 2307, 71, 2308, 71, 71, 71, 71, 71, 71, + + 2317, 71, 2318, 71, 71, 2314, 71, 2321, 71, 2309, + 71, 71, 2310, 2311, 71, 2320, 2312, 2313, 2315, 2316, + 2322, 2323, 71, 71, 71, 71, 2319, 71, 2324, 71, + 2326, 71, 2325, 2332, 71, 2333, 71, 71, 2334, 2327, + 71, 71, 71, 2328, 71, 2329, 71, 2330, 2331, 71, + 2904, 2338, 71, 2343, 71, 2335, 2336, 2341, 71, 2337, + 2342, 71, 2339, 2344, 2345, 71, 71, 71, 71, 2340, + 71, 71, 71, 71, 71, 71, 2347, 2351, 71, 71, + 71, 71, 2349, 2355, 2372, 2346, 71, 2348, 2356, 71, + 2360, 2350, 2358, 2352, 2353, 71, 2357, 71, 2354, 2359, + + 71, 2362, 2363, 71, 71, 71, 71, 2367, 71, 71, + 2361, 2369, 71, 71, 2371, 71, 71, 2364, 2374, 71, + 71, 2368, 71, 2375, 71, 2365, 2366, 71, 2373, 2377, + 71, 71, 2370, 2904, 71, 71, 71, 2378, 2382, 71, + 2379, 2385, 2376, 2380, 2381, 71, 2383, 2384, 71, 71, + 2386, 71, 71, 71, 71, 71, 2388, 2904, 71, 71, + 2389, 71, 2392, 2387, 2391, 71, 2394, 2397, 71, 71, + 2395, 71, 2390, 2393, 2396, 2398, 71, 71, 2399, 71, + 2403, 71, 2400, 71, 71, 2405, 71, 2401, 2404, 71, + 2408, 71, 2409, 71, 2407, 71, 2406, 2402, 2411, 71, + + 71, 2413, 2904, 2412, 71, 71, 2414, 71, 2410, 2415, + 2416, 2417, 71, 71, 71, 71, 2418, 71, 2419, 71, + 71, 71, 71, 2420, 71, 2423, 71, 2422, 71, 2425, + 2421, 2426, 71, 2424, 2427, 71, 71, 2428, 71, 71, + 2429, 71, 2434, 71, 2430, 71, 71, 2432, 2433, 2431, + 71, 71, 2435, 2439, 71, 71, 71, 71, 2443, 71, + 71, 71, 71, 71, 2436, 2441, 2437, 2447, 71, 2438, + 2440, 2473, 2442, 2450, 2444, 2445, 2448, 71, 2451, 71, + 2452, 2446, 2453, 71, 71, 71, 71, 2449, 71, 71, + 71, 71, 71, 2454, 2455, 2458, 71, 2456, 71, 2461, + + 2462, 71, 71, 2457, 2463, 71, 2459, 2464, 71, 2465, + 71, 2460, 2467, 71, 71, 2470, 71, 2468, 71, 2471, + 71, 71, 2466, 2472, 71, 71, 2477, 71, 71, 2474, + 71, 2478, 71, 2469, 2479, 71, 2481, 71, 71, 2475, + 71, 2485, 71, 2480, 71, 2476, 2487, 71, 2486, 71, + 2483, 2482, 2488, 71, 2484, 71, 71, 2489, 71, 2494, + 71, 71, 2493, 71, 71, 71, 2498, 2490, 2496, 2497, + 71, 2499, 71, 2491, 71, 2492, 71, 2500, 71, 2502, + 71, 71, 71, 2509, 71, 2495, 2505, 71, 71, 71, + 2904, 71, 2515, 71, 71, 2503, 2504, 2501, 2506, 2511, + + 2512, 2508, 2507, 71, 2516, 2513, 71, 2510, 2514, 71, + 2517, 71, 2518, 71, 2519, 71, 71, 71, 71, 71, + 2523, 2521, 71, 2527, 71, 71, 71, 2524, 2528, 2530, + 71, 2520, 71, 71, 2532, 71, 71, 2522, 71, 2525, + 2531, 2533, 2526, 71, 2529, 2534, 71, 2535, 71, 71, + 2538, 71, 2536, 2539, 71, 2540, 71, 2537, 2541, 2543, + 71, 71, 2547, 71, 2544, 71, 71, 71, 71, 71, + 2546, 2542, 71, 2545, 71, 71, 2549, 2554, 71, 71, + 2550, 2552, 71, 71, 2548, 71, 2555, 2557, 71, 2559, + 2558, 71, 71, 71, 2551, 2553, 71, 2561, 2569, 2556, + + 2560, 71, 2562, 2564, 71, 2563, 2565, 71, 2566, 71, + 71, 71, 2571, 2568, 2575, 71, 2570, 71, 71, 2567, + 2572, 71, 2573, 2574, 71, 71, 71, 2579, 71, 71, + 2577, 2581, 71, 71, 71, 71, 2585, 71, 71, 71, + 71, 71, 2576, 71, 2578, 2588, 71, 71, 2582, 2583, + 71, 2586, 2587, 2580, 71, 2584, 2589, 71, 2592, 2590, + 2595, 71, 2593, 2597, 71, 2591, 2594, 2598, 71, 71, + 2600, 71, 71, 2596, 71, 71, 71, 2605, 71, 2604, + 71, 71, 71, 71, 2609, 71, 71, 71, 2601, 71, + 2599, 2602, 2603, 71, 2611, 2613, 71, 2614, 71, 2610, + + 2606, 2608, 2616, 71, 2607, 71, 71, 2615, 2612, 71, + 71, 2621, 71, 2620, 71, 2619, 2618, 71, 2625, 71, + 71, 71, 2617, 2626, 2623, 71, 2627, 71, 2622, 2630, + 2624, 2631, 71, 2628, 2629, 71, 71, 2633, 71, 2632, + 71, 71, 71, 71, 2638, 2634, 2635, 2636, 71, 71, + 71, 2641, 71, 2642, 71, 2645, 71, 2637, 2644, 2643, + 2646, 71, 71, 71, 71, 2639, 2640, 2647, 71, 2649, + 2650, 71, 2651, 71, 2652, 71, 71, 2648, 2654, 71, + 71, 2653, 71, 71, 71, 2659, 71, 2655, 2660, 71, + 71, 71, 71, 2664, 71, 71, 2666, 2667, 71, 71, + + 2661, 2663, 2656, 71, 2657, 2658, 2668, 71, 2669, 2671, + 2662, 71, 71, 2670, 2665, 71, 2674, 71, 71, 71, + 2673, 71, 71, 2672, 2675, 71, 71, 2678, 71, 71, + 71, 71, 2680, 71, 71, 71, 2681, 2679, 2676, 71, + 71, 2677, 71, 2693, 71, 71, 2904, 2690, 2682, 2686, + 2683, 2684, 2685, 2694, 71, 2691, 2687, 2688, 2692, 71, + 71, 2689, 71, 2695, 2696, 71, 2697, 71, 2698, 2699, + 71, 71, 2700, 2701, 2704, 71, 2702, 2703, 2706, 71, + 2705, 71, 71, 71, 2709, 71, 71, 2710, 2708, 71, + 71, 71, 71, 2711, 2712, 71, 2707, 71, 2713, 71, + + 2717, 2718, 71, 71, 2716, 71, 2714, 2719, 71, 71, + 2715, 71, 2720, 2724, 2721, 2726, 71, 71, 2725, 71, + 2722, 71, 2730, 2723, 71, 71, 2729, 71, 2727, 2731, + 71, 2728, 2733, 71, 2848, 2734, 2735, 71, 2736, 71, + 2737, 71, 2738, 71, 2732, 2739, 71, 2740, 71, 2741, + 71, 2742, 71, 71, 2744, 71, 71, 71, 71, 2747, + 71, 71, 2743, 71, 71, 2751, 71, 2753, 71, 71, + 71, 71, 2748, 2755, 2749, 2750, 2745, 2746, 71, 2757, + 71, 2752, 71, 2760, 71, 2759, 71, 2754, 71, 71, + 71, 71, 71, 2762, 71, 2767, 71, 2756, 2758, 71, + + 2761, 2768, 71, 2763, 2769, 71, 71, 2765, 2764, 2766, + 71, 71, 71, 2774, 2772, 2771, 71, 71, 71, 2770, + 2778, 71, 2777, 71, 2780, 71, 71, 2776, 71, 71, + 71, 2773, 71, 71, 71, 2775, 2779, 71, 2781, 2791, + 71, 71, 71, 71, 2875, 2782, 2783, 71, 2784, 2786, + 71, 2787, 2792, 2788, 2785, 2789, 71, 2790, 2793, 71, + 71, 2794, 2795, 71, 2796, 71, 2797, 71, 71, 71, + 2798, 2799, 2800, 71, 2801, 71, 2804, 71, 2807, 71, + 71, 2802, 71, 2809, 71, 71, 71, 71, 2803, 2805, + 2812, 71, 71, 2813, 71, 2814, 2816, 2806, 71, 2808, + + 2810, 2817, 71, 71, 2811, 71, 71, 71, 2821, 71, + 71, 71, 2818, 2815, 2824, 71, 2819, 71, 71, 71, + 71, 71, 2826, 71, 2820, 2823, 2822, 71, 2831, 71, + 71, 71, 2828, 2829, 2832, 2825, 2836, 2827, 2835, 71, + 2830, 2837, 71, 2838, 71, 2833, 71, 71, 71, 2834, + 71, 2839, 2843, 2840, 71, 2841, 2845, 71, 71, 2844, + 71, 71, 71, 2842, 2846, 71, 2851, 71, 71, 71, + 71, 2854, 71, 2855, 71, 71, 71, 71, 71, 71, + 2847, 2849, 2853, 2858, 2850, 2856, 2852, 2859, 2857, 71, + 2861, 71, 2862, 71, 2860, 71, 2866, 71, 2863, 71, + + 2868, 71, 2864, 71, 2869, 2865, 2870, 71, 71, 2873, + 71, 71, 71, 71, 2871, 71, 2867, 2874, 2876, 71, + 2877, 71, 2878, 71, 2882, 71, 2880, 2872, 71, 71, + 2879, 71, 71, 71, 2884, 71, 2885, 71, 2888, 2889, + 71, 71, 2881, 71, 2892, 2893, 71, 2883, 71, 2895, + 71, 2886, 2887, 71, 2890, 2894, 2896, 71, 71, 71, + 2891, 71, 71, 2904, 2898, 2897, 2899, 2902, 71, 2903, + 71, 2904, 2900, 2904, 2904, 2904, 2904, 2904, 2904, 2904, + 2904, 2901, 43, 43, 43, 43, 43, 43, 43, 48, + 48, 48, 48, 48, 48, 48, 53, 53, 53, 53, + + 53, 53, 53, 59, 59, 59, 59, 59, 59, 59, + 64, 64, 64, 64, 64, 64, 64, 74, 74, 2904, + 74, 74, 74, 74, 140, 140, 2904, 2904, 2904, 140, + 140, 142, 142, 2904, 2904, 142, 2904, 142, 144, 2904, + 2904, 2904, 2904, 2904, 144, 147, 147, 2904, 2904, 2904, + 147, 147, 149, 2904, 2904, 2904, 2904, 2904, 149, 151, + 151, 2904, 151, 151, 151, 151, 75, 75, 2904, 75, + 75, 75, 75, 13, 2904, 2904, 2904, 2904, 2904, 2904, + 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, + 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, + + 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, + 2904, 2904, 2904, 2904 } ; -static yyconst flex_int16_t yy_chk[5593] = +static yyconst flex_int16_t yy_chk[5715] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, @@ -2000,13 +2034,13 @@ static yyconst flex_int16_t yy_chk[5593] = 5, 3, 6, 20, 4, 20, 20, 5, 20, 6, 7, 7, 7, 7, 20, 7, 8, 8, 8, 8, 29, 8, 7, 9, 9, 9, 22, 22, 8, 10, - 10, 10, 15, 25, 9, 29, 15, 25, 2850, 31, + 10, 10, 15, 25, 9, 29, 15, 25, 2910, 31, 10, 11, 11, 11, 11, 11, 11, 19, 79, 19, 19, 30, 19, 11, 31, 79, 30, 25, 19, 19, 47, 47, 11, 12, 12, 12, 12, 12, 12, 21, 23, 23, 21, 21, 24, 12, 21, 81, 23, 24, - 34, 21, 23, 24, 12, 23, 24, 957, 24, 24, + 34, 21, 23, 24, 12, 23, 24, 971, 24, 24, 21, 26, 26, 27, 27, 90, 28, 81, 32, 32, 28, 34, 27, 28, 33, 33, 26, 32, 36, 33, 28, 35, 28, 32, 90, 42, 35, 32, 52, 84, @@ -2030,584 +2064,597 @@ static yyconst flex_int16_t yy_chk[5593] = 119, 111, 121, 116, 118, 118, 122, 116, 120, 113, 112, 124, 120, 127, 127, 115, 125, 121, 126, 117, 119, 120, 125, 123, 124, 122, 123, 120, 128, 129, - 126, 130, 131, 132, 127, 135, 133, 123, 133, 134, - 135, 123, 136, 137, 139, 129, 128, 133, 147, 132, - 130, 134, 138, 131, 136, 141, 141, 138, 139, 133, - 143, 137, 145, 143, 145, 145, 154, 145, 148, 148, - 150, 154, 150, 150, 151, 150, 151, 151, 153, 151, - - 156, 153, 155, 160, 157, 158, 151, 161, 155, 162, - 163, 160, 164, 158, 165, 163, 167, 155, 156, 157, - 158, 166, 191, 165, 162, 168, 161, 166, 166, 170, - 168, 178, 164, 169, 169, 170, 172, 171, 191, 171, - 172, 167, 171, 173, 173, 172, 174, 175, 176, 177, - 172, 178, 175, 176, 179, 182, 172, 172, 180, 171, - 179, 177, 180, 181, 183, 174, 184, 185, 181, 182, - 186, 187, 189, 190, 192, 186, 187, 189, 184, 183, - 192, 184, 196, 179, 194, 185, 188, 188, 193, 193, - 194, 195, 188, 190, 197, 198, 194, 195, 199, 200, - - 197, 198, 196, 201, 188, 200, 188, 202, 201, 203, - 198, 204, 205, 202, 206, 203, 207, 208, 204, 199, - 206, 209, 210, 208, 211, 205, 212, 214, 215, 213, - 210, 212, 216, 218, 217, 220, 207, 211, 213, 217, - 221, 219, 214, 209, 215, 219, 221, 222, 223, 224, - 146, 218, 216, 225, 223, 225, 226, 220, 227, 229, - 231, 228, 230, 226, 227, 222, 222, 228, 230, 224, - 232, 235, 231, 233, 233, 234, 234, 235, 229, 236, - 237, 238, 237, 239, 232, 236, 240, 241, 239, 242, - 243, 244, 245, 256, 246, 235, 244, 242, 240, 237, - - 246, 247, 251, 248, 238, 250, 241, 247, 248, 249, - 243, 250, 252, 253, 249, 245, 254, 251, 256, 255, - 258, 262, 257, 258, 260, 260, 252, 255, 257, 265, - 254, 253, 259, 261, 259, 266, 261, 263, 263, 262, - 264, 264, 269, 267, 268, 265, 267, 270, 268, 271, - 266, 269, 272, 270, 273, 274, 273, 277, 272, 279, - 275, 274, 277, 271, 275, 276, 276, 278, 280, 281, - 282, 283, 283, 278, 284, 285, 286, 284, 287, 279, - 286, 275, 289, 282, 288, 288, 280, 291, 290, 292, - 281, 290, 294, 285, 293, 292, 287, 293, 296, 291, - - 289, 297, 301, 298, 294, 295, 299, 296, 298, 299, - 300, 299, 144, 300, 295, 301, 302, 295, 303, 297, - 303, 303, 295, 295, 295, 295, 306, 299, 302, 304, - 304, 305, 307, 308, 305, 309, 310, 310, 312, 312, - 311, 313, 308, 306, 309, 311, 306, 307, 314, 315, - 316, 317, 318, 314, 319, 320, 313, 321, 322, 326, - 319, 315, 321, 323, 322, 324, 329, 318, 323, 316, - 324, 317, 329, 326, 325, 320, 324, 325, 327, 325, - 328, 327, 330, 331, 142, 335, 331, 330, 334, 328, - 333, 377, 331, 337, 327, 377, 331, 327, 336, 327, - - 335, 340, 342, 343, 331, 332, 332, 337, 332, 334, - 333, 339, 343, 336, 339, 340, 345, 342, 346, 140, - 348, 332, 345, 347, 332, 350, 332, 349, 332, 352, - 339, 341, 344, 341, 341, 348, 349, 344, 344, 346, - 353, 356, 347, 341, 350, 341, 341, 341, 351, 354, - 341, 355, 357, 358, 351, 352, 359, 355, 364, 361, - 353, 355, 360, 354, 356, 363, 363, 360, 365, 362, - 366, 359, 357, 358, 361, 362, 367, 368, 364, 369, - 365, 370, 367, 372, 366, 373, 370, 371, 371, 374, - 371, 376, 375, 376, 378, 369, 379, 379, 378, 380, - - 381, 373, 368, 372, 382, 374, 375, 383, 384, 387, - 385, 376, 386, 378, 387, 381, 391, 389, 380, 385, - 382, 386, 384, 388, 395, 383, 389, 388, 390, 392, - 385, 70, 385, 394, 390, 392, 393, 391, 394, 397, - 393, 396, 396, 398, 395, 399, 400, 400, 398, 401, - 402, 403, 397, 404, 402, 401, 405, 406, 399, 407, - 408, 405, 406, 409, 410, 411, 403, 412, 407, 413, - 412, 416, 408, 413, 404, 414, 416, 411, 415, 415, - 417, 421, 410, 409, 418, 418, 422, 414, 420, 420, - 423, 424, 425, 429, 422, 427, 428, 430, 437, 423, - - 431, 417, 421, 430, 425, 433, 432, 429, 434, 431, - 433, 424, 432, 427, 436, 427, 428, 435, 437, 440, - 436, 438, 434, 439, 438, 435, 441, 442, 435, 439, - 443, 441, 444, 440, 445, 446, 444, 447, 448, 445, - 449, 452, 447, 451, 453, 454, 455, 439, 453, 442, - 446, 443, 458, 456, 448, 460, 452, 456, 64, 449, - 450, 450, 455, 451, 454, 457, 450, 458, 450, 461, - 457, 460, 459, 463, 450, 465, 450, 459, 461, 450, - 450, 462, 464, 466, 468, 464, 450, 462, 471, 463, - 467, 467, 462, 469, 469, 470, 472, 473, 465, 474, - - 471, 475, 478, 466, 476, 477, 475, 521, 479, 468, - 470, 472, 486, 476, 479, 482, 473, 478, 481, 482, - 483, 474, 484, 485, 477, 487, 483, 481, 488, 489, - 521, 486, 490, 491, 484, 492, 490, 492, 485, 487, - 493, 494, 494, 488, 495, 496, 491, 489, 493, 497, - 495, 498, 500, 499, 501, 497, 499, 496, 503, 502, - 505, 503, 504, 498, 502, 515, 500, 506, 515, 501, - 507, 504, 506, 506, 508, 508, 505, 514, 504, 509, - 509, 504, 510, 507, 511, 511, 512, 512, 510, 513, - 517, 516, 518, 522, 519, 513, 516, 519, 514, 520, - - 518, 523, 524, 525, 520, 523, 526, 525, 524, 517, - 527, 528, 522, 529, 531, 527, 530, 532, 533, 529, - 532, 530, 534, 534, 526, 532, 535, 536, 531, 532, - 537, 528, 536, 538, 539, 537, 533, 540, 542, 541, - 544, 542, 543, 540, 535, 544, 543, 538, 541, 539, - 545, 546, 549, 545, 547, 548, 546, 550, 551, 552, - 552, 554, 550, 553, 59, 549, 555, 556, 543, 557, - 547, 558, 553, 548, 563, 564, 556, 558, 551, 559, - 554, 557, 555, 560, 561, 559, 560, 561, 562, 564, - 565, 567, 563, 562, 566, 568, 565, 567, 568, 566, - - 569, 570, 571, 572, 573, 569, 570, 570, 574, 575, - 576, 54, 577, 580, 574, 571, 572, 577, 578, 576, - 579, 578, 581, 573, 573, 580, 579, 581, 575, 582, - 583, 583, 584, 586, 582, 582, 578, 585, 587, 585, - 587, 588, 589, 590, 591, 592, 593, 594, 598, 595, - 593, 596, 586, 597, 600, 604, 594, 584, 599, 588, - 589, 590, 601, 591, 595, 592, 596, 598, 601, 600, - 599, 597, 602, 603, 604, 605, 606, 607, 608, 609, - 606, 610, 612, 612, 611, 603, 602, 613, 614, 616, - 615, 613, 618, 619, 605, 607, 608, 609, 611, 617, - - 610, 615, 620, 616, 617, 622, 621, 614, 618, 623, - 622, 626, 619, 621, 624, 620, 623, 625, 627, 624, - 629, 628, 625, 630, 631, 627, 632, 635, 637, 626, - 628, 632, 630, 634, 629, 633, 631, 634, 633, 636, - 638, 635, 639, 637, 640, 640, 641, 641, 636, 642, - 642, 643, 645, 646, 638, 641, 647, 648, 649, 646, - 643, 648, 650, 639, 651, 653, 652, 654, 655, 656, - 649, 645, 652, 653, 654, 657, 647, 660, 684, 658, - 663, 666, 651, 667, 658, 684, 655, 650, 658, 667, - 666, 658, 660, 668, 656, 657, 669, 663, 658, 672, - - 669, 658, 670, 670, 671, 671, 673, 674, 675, 668, - 672, 676, 681, 678, 679, 688, 680, 676, 678, 682, - 688, 674, 682, 723, 673, 683, 683, 686, 675, 677, - 677, 677, 723, 677, 680, 679, 677, 681, 685, 685, - 690, 677, 686, 687, 687, 690, 689, 677, 677, 689, - 691, 692, 691, 693, 694, 695, 697, 696, 694, 698, - 698, 703, 699, 692, 697, 700, 701, 701, 702, 704, - 706, 706, 693, 703, 720, 695, 696, 699, 705, 700, - 709, 720, 707, 705, 710, 709, 702, 707, 707, 711, - 710, 704, 712, 713, 715, 711, 716, 712, 714, 713, - - 715, 714, 717, 718, 716, 721, 719, 722, 722, 724, - 717, 719, 725, 726, 728, 730, 729, 724, 725, 731, - 730, 718, 733, 728, 721, 729, 732, 733, 731, 732, - 734, 735, 726, 736, 736, 737, 738, 739, 740, 743, - 741, 743, 745, 741, 734, 747, 739, 744, 744, 746, - 737, 741, 748, 749, 746, 738, 735, 750, 751, 752, - 753, 755, 740, 745, 753, 754, 747, 757, 752, 756, - 758, 759, 748, 749, 760, 756, 757, 762, 751, 750, - 755, 761, 758, 754, 763, 764, 764, 761, 760, 763, - 759, 762, 765, 766, 767, 768, 769, 770, 771, 772, - - 773, 774, 766, 775, 771, 776, 773, 778, 781, 775, - 779, 776, 765, 772, 767, 768, 777, 770, 769, 780, - 777, 774, 779, 785, 780, 783, 778, 782, 782, 781, - 779, 783, 784, 786, 787, 784, 788, 789, 789, 790, - 787, 785, 791, 792, 792, 793, 786, 791, 794, 795, - 795, 796, 794, 798, 797, 801, 788, 790, 798, 799, - 793, 802, 804, 805, 807, 807, 808, 811, 809, 53, - 808, 810, 810, 796, 797, 802, 812, 814, 799, 801, - 812, 815, 804, 809, 805, 806, 815, 813, 806, 816, - 806, 814, 811, 817, 806, 818, 806, 820, 817, 817, - - 819, 806, 813, 816, 819, 821, 806, 823, 822, 818, - 821, 824, 820, 822, 825, 832, 826, 827, 828, 833, - 821, 823, 826, 827, 828, 829, 829, 831, 825, 830, - 834, 836, 824, 831, 830, 837, 841, 832, 833, 838, - 837, 841, 839, 836, 840, 840, 843, 844, 834, 835, - 835, 842, 845, 838, 839, 835, 48, 835, 849, 842, - 843, 846, 846, 835, 849, 851, 844, 852, 835, 835, - 847, 845, 853, 850, 847, 835, 850, 854, 853, 855, - 852, 856, 854, 857, 851, 858, 860, 859, 861, 862, - 856, 863, 857, 859, 862, 860, 864, 865, 855, 867, - - 866, 858, 872, 869, 868, 874, 875, 861, 867, 869, - 864, 863, 866, 868, 870, 876, 877, 865, 872, 874, - 870, 878, 879, 880, 881, 888, 875, 882, 880, 881, - 877, 883, 882, 886, 876, 884, 884, 879, 885, 878, - 883, 888, 889, 892, 885, 893, 886, 889, 889, 890, - 890, 891, 894, 890, 891, 895, 896, 892, 897, 898, - 899, 901, 902, 43, 897, 893, 899, 902, 895, 900, - 894, 896, 900, 903, 904, 905, 906, 907, 903, 898, - 905, 906, 901, 910, 915, 909, 911, 912, 914, 907, - 904, 909, 911, 912, 913, 913, 917, 914, 916, 910, - - 918, 916, 915, 919, 920, 921, 922, 920, 924, 923, - 929, 925, 922, 924, 917, 923, 925, 926, 921, 918, - 927, 930, 926, 919, 931, 933, 927, 934, 929, 937, - 931, 932, 932, 935, 933, 936, 935, 938, 936, 939, - 937, 930, 940, 941, 942, 934, 946, 943, 944, 941, - 942, 939, 947, 944, 950, 938, 945, 945, 948, 949, - 951, 940, 943, 949, 952, 946, 947, 953, 955, 951, - 948, 958, 950, 956, 956, 959, 960, 961, 963, 963, - 962, 964, 961, 952, 968, 958, 968, 955, 960, 962, - 959, 965, 953, 966, 970, 967, 971, 965, 969, 966, - - 967, 964, 972, 969, 973, 974, 975, 972, 970, 977, - 971, 976, 982, 975, 979, 979, 980, 981, 984, 973, - 985, 987, 987, 983, 974, 985, 976, 982, 977, 983, - 980, 990, 988, 989, 985, 981, 985, 988, 984, 985, - 989, 991, 992, 993, 991, 990, 994, 995, 996, 998, - 997, 994, 993, 996, 1000, 1000, 1003, 1001, 1002, 1004, - 992, 997, 1001, 1002, 1004, 1005, 995, 1007, 998, 1005, - 1006, 1008, 1009, 1010, 1011, 1013, 1003, 1012, 1014, 1006, - 1015, 1016, 1007, 1018, 1012, 1010, 1008, 1013, 1017, 1011, - 1019, 1009, 1020, 1021, 1017, 1024, 1025, 1014, 1018, 1016, - - 1023, 1015, 1021, 1026, 1025, 1028, 1023, 1030, 1027, 1024, - 1019, 1031, 1020, 1027, 1029, 1032, 14, 1028, 1035, 1029, - 1029, 1033, 1033, 1026, 1036, 1031, 1030, 1039, 1032, 1034, - 1037, 1035, 1039, 1036, 1034, 1040, 1037, 1034, 1034, 1038, - 1038, 1041, 1034, 1047, 1040, 1042, 1043, 1041, 1034, 1048, - 1042, 1043, 1034, 1044, 1044, 1045, 1045, 1046, 1050, 1049, - 1046, 1051, 1046, 1047, 1053, 1052, 1051, 1048, 1049, 1054, - 1055, 1060, 1056, 1060, 1058, 1054, 1055, 1056, 1050, 1052, - 1057, 1064, 1053, 1058, 1057, 1059, 1059, 1061, 1058, 1063, - 1058, 1065, 1058, 1063, 1058, 1066, 1064, 1067, 1061, 1068, - - 1069, 1070, 1067, 1067, 1066, 1069, 1072, 1071, 1073, 1065, - 1074, 1078, 1075, 1080, 1076, 1070, 1071, 1077, 1074, 1076, - 1078, 1068, 1079, 1081, 1083, 1072, 1075, 1073, 1081, 1082, - 1082, 1077, 1084, 1084, 1085, 1089, 1085, 1088, 1080, 1083, - 1079, 1087, 1088, 1091, 1087, 1090, 1090, 1092, 1092, 1093, - 1093, 1094, 1095, 1096, 1089, 1098, 1094, 1097, 1097, 1099, - 1100, 1101, 1099, 1091, 1111, 1111, 1101, 1102, 1103, 1105, - 1103, 1108, 1105, 1095, 1096, 1098, 1102, 1106, 1107, 1108, - 1100, 1109, 1106, 1107, 1110, 1112, 1109, 1113, 1114, 1110, - 1112, 1115, 1120, 1116, 1114, 1118, 1119, 1120, 1115, 1122, - - 1123, 1118, 1119, 1121, 1124, 1113, 1116, 1126, 1122, 1121, - 1125, 1125, 1128, 1129, 1130, 1124, 1131, 1132, 1134, 1123, - 1130, 1135, 1131, 1132, 1134, 1136, 1137, 1126, 1138, 1139, - 1140, 1140, 1128, 1141, 1142, 1135, 1129, 1143, 1137, 1144, - 1146, 1135, 1138, 1149, 1144, 1136, 1147, 1139, 1145, 1145, - 1151, 1147, 1150, 1141, 13, 1143, 1152, 1150, 1150, 1142, - 1154, 1153, 1149, 1146, 1155, 1152, 1156, 1157, 1151, 1153, - 1163, 1158, 1157, 1158, 1154, 1157, 1159, 1160, 1161, 1155, - 1162, 1156, 1161, 1160, 1156, 1164, 1165, 1166, 1167, 1163, - 1159, 1162, 1166, 1168, 1169, 1171, 1179, 1172, 1168, 1173, - - 1174, 1174, 1176, 1175, 1165, 1177, 1167, 1175, 1179, 1171, - 1178, 1164, 1180, 1181, 1169, 1172, 1178, 1173, 1182, 1183, - 1176, 1184, 1186, 1185, 1177, 1187, 1188, 1181, 1185, 1186, - 1187, 1180, 1189, 1182, 1183, 1190, 1190, 1191, 1193, 1192, - 1184, 1189, 1194, 1195, 1188, 1192, 0, 1194, 1196, 1195, - 1197, 1197, 1191, 1202, 1196, 1198, 1198, 1200, 1200, 1193, - 1201, 1203, 1202, 1204, 1201, 1205, 1206, 1207, 1207, 1208, - 1209, 1210, 1211, 1206, 1212, 1215, 1210, 1204, 1209, 1203, - 1205, 1217, 1213, 1216, 1216, 1214, 1211, 1213, 1213, 1208, - 1214, 1214, 1218, 1212, 1219, 1215, 1220, 1221, 1222, 1223, - - 1217, 1224, 1225, 1219, 1226, 1223, 1224, 1227, 1228, 1234, - 1226, 1218, 1229, 1230, 1228, 1220, 1222, 1221, 1229, 1231, - 1232, 1233, 1235, 1234, 1237, 1237, 1227, 1236, 1225, 1239, - 1238, 1241, 1230, 1238, 1240, 1240, 1241, 1243, 1231, 1232, - 1233, 1239, 1236, 1235, 1242, 1244, 1245, 1246, 1242, 1246, - 1243, 1248, 1249, 1246, 1244, 1250, 1248, 1251, 1253, 1245, - 1252, 1252, 1257, 1253, 1254, 1258, 1246, 1249, 1255, 1254, - 1256, 1259, 1255, 1251, 1256, 1250, 1261, 1261, 1260, 1263, - 1265, 1266, 1257, 1258, 1260, 1278, 1266, 1267, 1267, 1268, - 1274, 1259, 1270, 1270, 1275, 1268, 1272, 1263, 1281, 1272, - - 1279, 1265, 1273, 1273, 1277, 1278, 1274, 1277, 1282, 1279, - 1275, 1280, 1280, 1281, 1283, 1284, 1284, 1285, 1286, 1283, - 1287, 1288, 1288, 1289, 1290, 1291, 1292, 1293, 1293, 1282, - 1291, 1295, 1294, 1286, 1297, 1285, 1294, 1289, 1296, 1296, - 1299, 1292, 1290, 1298, 1299, 1287, 1300, 1301, 1303, 1303, - 1304, 1295, 1301, 1305, 1298, 1306, 1297, 1307, 1308, 1309, - 1309, 1310, 1311, 1313, 1312, 1300, 1310, 1305, 1304, 1315, - 1319, 1307, 1313, 1314, 1306, 1306, 1317, 1316, 1314, 1316, - 1318, 1317, 1311, 1308, 1312, 1320, 1318, 1322, 1324, 1315, - 1319, 1320, 1323, 1323, 1325, 1328, 1331, 1327, 1329, 1329, - - 1325, 1322, 1327, 1330, 1330, 1332, 1333, 1324, 1334, 1337, - 1331, 1334, 1335, 1335, 1336, 1340, 1343, 0, 1339, 1328, - 1340, 1333, 1338, 1332, 1339, 1338, 1336, 1341, 1338, 1337, - 1342, 1344, 1345, 1349, 1344, 1342, 1341, 1346, 1345, 1349, - 1338, 1343, 1346, 1347, 1347, 1348, 1348, 1350, 1351, 1352, - 1353, 1354, 1350, 1355, 1356, 1360, 1355, 1357, 1364, 1358, - 1356, 1351, 1359, 1357, 1358, 1361, 1365, 1352, 1359, 1353, - 1361, 1354, 1362, 1362, 1363, 1366, 1364, 1367, 1360, 1363, - 1368, 1369, 1371, 1370, 1372, 1373, 1365, 1374, 1371, 1375, - 1383, 1367, 1378, 1369, 1368, 1366, 1370, 1377, 1377, 1380, - - 1380, 1374, 1379, 1381, 1372, 1373, 1382, 1379, 1384, 1386, - 1375, 1389, 1378, 1385, 1383, 1391, 1387, 1393, 1381, 1388, - 1382, 1470, 1385, 1387, 1386, 1470, 1384, 1389, 1388, 1394, - 1391, 1388, 1394, 1395, 1395, 1391, 1396, 1396, 1397, 1400, - 1398, 1401, 1393, 1398, 1399, 1399, 1402, 1404, 1403, 1405, - 1397, 1402, 1400, 1403, 1406, 1407, 1410, 1412, 1408, 1409, - 1401, 1414, 1410, 1406, 1415, 1405, 1404, 1408, 1409, 1413, - 1408, 1411, 1411, 1416, 1407, 1417, 1419, 1412, 1415, 1414, - 1420, 1422, 1413, 1421, 1421, 1423, 1424, 1417, 1427, 1416, - 1426, 1424, 1425, 1425, 1423, 1428, 1429, 1422, 1420, 1426, - - 0, 1419, 1426, 1430, 1432, 1433, 1427, 1425, 1430, 1430, - 1434, 1433, 1435, 1435, 1429, 1436, 1428, 1437, 1432, 1438, - 1439, 1436, 1437, 1441, 1442, 1438, 1439, 1443, 1434, 1444, - 1449, 1445, 1450, 1443, 1445, 1459, 1447, 1451, 1442, 1452, - 1445, 1453, 1444, 1441, 1447, 1451, 1454, 1455, 1452, 1449, - 1456, 1450, 1457, 1458, 1453, 1459, 1460, 1461, 1457, 1454, - 1462, 1455, 1463, 1464, 1456, 1465, 1458, 1475, 1463, 1466, - 1468, 1468, 1469, 1462, 1460, 1471, 1461, 1472, 1473, 1474, - 1471, 1465, 1472, 1473, 1477, 1464, 1479, 1466, 1474, 1480, - 1475, 1481, 1469, 1478, 1478, 1482, 1482, 1483, 1487, 1477, - - 1484, 1480, 1485, 1486, 1488, 1479, 1489, 1484, 1490, 1491, - 1481, 1483, 1489, 1492, 1485, 1486, 1502, 1487, 1502, 1492, - 1490, 1493, 1493, 1494, 1488, 1497, 1494, 1491, 1495, 1495, - 1497, 1498, 1499, 1500, 1500, 1501, 1503, 1504, 1499, 1503, - 1498, 1505, 1506, 1507, 1508, 1509, 1510, 1501, 1512, 1508, - 1511, 1514, 1515, 1512, 1509, 1513, 1517, 1504, 1510, 1518, - 1506, 1507, 1517, 1505, 1513, 1511, 1519, 1515, 1516, 1516, - 1520, 1514, 1521, 1522, 1523, 1522, 1527, 1513, 1524, 1524, - 1518, 1525, 1525, 1526, 1526, 1519, 1520, 1530, 1523, 1531, - 1523, 1533, 1521, 1528, 1528, 1533, 1527, 1529, 1529, 1532, - - 1532, 1534, 1535, 1537, 1538, 1535, 1539, 1534, 1530, 1537, - 1531, 1540, 1539, 1541, 1542, 1542, 1541, 1543, 1543, 1544, - 1545, 1546, 1538, 1547, 1548, 1544, 1549, 1553, 1557, 1553, - 1548, 1552, 1545, 1545, 1545, 1555, 1540, 1557, 1554, 1545, - 1558, 1546, 1551, 1547, 1559, 1552, 1549, 1551, 1551, 1554, - 1555, 1556, 1560, 1560, 1561, 1562, 1562, 1556, 1563, 1564, - 1558, 1565, 1565, 1566, 1566, 1559, 1567, 1570, 1570, 1574, - 1571, 1575, 1577, 1573, 1576, 1576, 1578, 1575, 1563, 1571, - 1561, 1564, 1573, 1581, 1583, 1579, 1567, 1580, 1582, 1582, - 1574, 1578, 1579, 1577, 1586, 1584, 1580, 1587, 1588, 1586, - - 1589, 1595, 1590, 1587, 1592, 1592, 1591, 1589, 1590, 1581, - 1583, 1584, 1591, 1594, 1593, 1596, 1597, 1598, 1588, 1593, - 1598, 1595, 1594, 1599, 1600, 1601, 1601, 1602, 1597, 1603, - 1604, 1605, 1607, 1602, 1596, 1605, 1608, 1611, 1609, 1612, - 1613, 1599, 1619, 1612, 1654, 1604, 1613, 1654, 1614, 1603, - 1600, 1605, 1607, 1609, 1617, 1608, 1611, 1614, 1615, 1615, - 1616, 1618, 1618, 1619, 1616, 1617, 1620, 1621, 1622, 1623, - 1617, 1624, 1621, 1626, 1636, 1625, 1667, 1624, 1626, 1667, - 1620, 1627, 1627, 1628, 1628, 1630, 0, 1629, 1622, 1623, - 1625, 1629, 1631, 1631, 1632, 1632, 1630, 1633, 1634, 1635, - - 1636, 1630, 1633, 1633, 1634, 1635, 1637, 1638, 1639, 1641, - 1643, 1637, 1642, 1644, 1639, 1646, 1642, 1645, 1647, 1638, - 1648, 1641, 1643, 1645, 1647, 1651, 1652, 1650, 1655, 1655, - 1658, 1652, 1648, 1656, 1656, 1657, 1657, 1646, 1644, 1650, - 1659, 1660, 1668, 1661, 1651, 1662, 1659, 1660, 1661, 1663, - 1658, 1662, 1665, 1671, 1668, 1669, 1669, 1665, 1663, 1672, - 1675, 1673, 1674, 1674, 1679, 1671, 1673, 1676, 1677, 1675, - 1680, 1672, 1676, 1677, 1678, 1678, 1681, 1682, 1683, 1680, - 1684, 1685, 1683, 1686, 1679, 1684, 1689, 1685, 1688, 1688, - 1690, 1691, 1691, 1692, 1681, 1693, 1682, 1686, 1694, 1690, - - 1688, 1695, 1692, 1696, 1689, 1702, 1695, 1693, 1699, 1699, - 1701, 1703, 1706, 1701, 1705, 1708, 1696, 1707, 1710, 1694, - 1710, 1702, 1715, 1707, 1709, 1709, 1706, 1703, 1712, 1705, - 1711, 1711, 1708, 1714, 1716, 1716, 1712, 1717, 1718, 1719, - 1714, 1720, 1715, 1721, 1722, 1723, 1717, 1729, 1724, 1726, - 1727, 1719, 1730, 1720, 1724, 1721, 1728, 1728, 1731, 1718, - 1723, 1731, 1727, 1732, 1733, 1729, 1735, 1724, 1732, 1726, - 1722, 1735, 1730, 1736, 1737, 1736, 1738, 1741, 1739, 1743, - 1746, 1738, 1744, 1749, 1733, 1739, 1741, 1745, 1743, 1745, - 1751, 1748, 1737, 1748, 1744, 1750, 1750, 1749, 1752, 1746, - - 1753, 1754, 1753, 1752, 1755, 1756, 1754, 1757, 1758, 1755, - 1759, 1760, 1761, 1763, 1758, 1759, 1751, 1764, 1765, 1765, - 1761, 1766, 1766, 1756, 1760, 1767, 1768, 1757, 1769, 1772, - 1770, 1764, 1763, 0, 1769, 1770, 1771, 1772, 1771, 1774, - 1767, 1773, 1773, 1775, 1775, 1772, 1768, 1776, 1776, 1777, - 1778, 1774, 1779, 1780, 1779, 1781, 1782, 1783, 1777, 1778, - 1781, 1781, 1778, 1785, 1789, 1782, 1786, 1787, 1790, 1783, - 1794, 1786, 1787, 1792, 1780, 1785, 1793, 1789, 1791, 1791, - 1798, 1795, 1796, 1804, 1799, 1800, 1794, 1807, 1790, 1804, - 1800, 1792, 1798, 1801, 1793, 1795, 1799, 1796, 1801, 1806, - - 1808, 1809, 1804, 1810, 1811, 1806, 1812, 1812, 1813, 1818, - 1807, 1814, 1814, 1811, 1815, 1808, 1816, 1813, 1817, 1809, - 1816, 1819, 1818, 1817, 1820, 1821, 1819, 1819, 1810, 1822, - 1820, 1821, 1822, 1815, 1823, 1824, 1827, 1827, 1828, 1828, - 1829, 0, 1823, 1830, 1830, 1831, 1831, 1832, 1833, 1829, - 1834, 1842, 1835, 1828, 1841, 1824, 1834, 1835, 1841, 1832, - 1836, 1836, 1837, 1837, 1828, 1838, 1833, 1839, 1843, 1845, - 1838, 1842, 1843, 1839, 1846, 1847, 1848, 1849, 1850, 1846, - 1854, 1851, 1849, 1852, 1852, 1853, 1856, 1855, 1857, 1853, - 1858, 1848, 1855, 1860, 1845, 1854, 1850, 1851, 1847, 1859, - - 1857, 1861, 1862, 1862, 1859, 1864, 1860, 1865, 1866, 1858, - 1867, 1868, 1856, 1864, 0, 1869, 1870, 1871, 1872, 1861, - 1893, 1874, 1875, 1875, 1878, 1876, 1865, 1866, 1876, 1871, - 1877, 1879, 1893, 1867, 1869, 1868, 1874, 1870, 1878, 1872, - 1880, 1880, 1883, 1877, 1879, 1881, 1881, 1882, 1882, 1884, - 1885, 1885, 1886, 1887, 1887, 1888, 1891, 1883, 1890, 1892, - 1888, 1886, 1884, 1890, 1886, 1894, 1894, 1895, 1895, 1896, - 1897, 1897, 1898, 1899, 1899, 1903, 1891, 1900, 1904, 1892, - 1901, 1901, 1902, 1902, 1905, 1906, 1908, 1904, 1896, 1903, - 1898, 1908, 1900, 1909, 1909, 1910, 1911, 1911, 1905, 1912, - - 1913, 1917, 1914, 1918, 1906, 1914, 1913, 1915, 1915, 1916, - 1916, 1919, 1920, 1920, 1910, 1922, 1923, 1912, 1918, 1924, - 1917, 1925, 1927, 1915, 0, 1925, 1926, 1926, 1928, 1929, - 1919, 1931, 1931, 1932, 1924, 1922, 1934, 1935, 1933, 1923, - 1937, 1927, 1939, 1928, 1929, 1933, 1936, 1936, 1941, 1937, - 1934, 1942, 1938, 1932, 1938, 1944, 1942, 1945, 1946, 1943, - 1941, 1947, 1939, 1935, 1943, 1952, 1947, 1949, 1950, 1951, - 1945, 1952, 1949, 1950, 1953, 1954, 1956, 1955, 1957, 1946, - 1944, 1954, 1955, 1958, 1951, 1959, 1962, 1960, 1961, 1967, - 0, 1957, 1958, 1963, 1959, 1953, 1960, 1961, 1964, 1963, - - 1962, 1956, 1965, 1969, 1964, 1971, 1965, 1970, 1970, 1967, - 1973, 1971, 1969, 1972, 1972, 1975, 1979, 1976, 1977, 1977, - 1978, 1982, 1972, 1983, 1981, 1979, 1986, 1984, 1988, 1986, - 1973, 1975, 1973, 1976, 1989, 1978, 1981, 1982, 1983, 1984, - 1987, 1990, 1990, 1991, 1991, 1987, 1989, 1995, 1988, 1993, - 1993, 1994, 1995, 1996, 1994, 1997, 1998, 1998, 1999, 1996, - 2002, 1997, 2000, 2000, 2001, 2003, 2004, 2004, 2007, 2006, - 2009, 2007, 1999, 2006, 2002, 2009, 2001, 2008, 2008, 2010, - 2011, 2012, 2013, 2013, 2003, 2012, 2014, 2016, 2010, 2017, - 2018, 2019, 2016, 2020, 2021, 2025, 2022, 2020, 2023, 2014, - - 2011, 2022, 2024, 2027, 2023, 2019, 2028, 2030, 2024, 2017, - 2018, 2028, 2029, 2025, 2021, 2030, 2034, 2037, 2029, 2027, - 2031, 0, 2031, 2035, 2035, 2036, 2038, 2038, 2036, 2040, - 2034, 2041, 2042, 2040, 2043, 2043, 2044, 2041, 2047, 2047, - 2049, 2051, 2054, 2037, 2042, 2044, 2055, 2054, 2056, 2057, - 2058, 2058, 2064, 2056, 2057, 2051, 2060, 2060, 2049, 2062, - 2063, 2063, 2065, 2068, 2066, 2062, 2069, 2072, 2064, 2066, - 2070, 2070, 2055, 2073, 2074, 2075, 2072, 2078, 2069, 2073, - 2077, 2077, 2068, 2079, 2065, 2081, 2081, 2082, 2082, 2083, - 2075, 2086, 2074, 2084, 2083, 2085, 2078, 2085, 2084, 2087, - - 2088, 2079, 2089, 2090, 2090, 2086, 2094, 2089, 2091, 2091, - 2092, 2092, 2095, 2087, 2093, 2093, 2096, 2096, 2094, 2098, - 2088, 2097, 2097, 2099, 2100, 2101, 2102, 2102, 2103, 2103, - 2095, 2098, 2104, 2104, 2105, 2099, 2106, 2107, 2108, 2110, - 2109, 2101, 2111, 2106, 2100, 2109, 2105, 2112, 2112, 2107, - 2114, 2113, 2115, 2116, 2117, 2118, 2119, 2119, 2108, 2110, - 2113, 2120, 2111, 2124, 2121, 2122, 2116, 2125, 2126, 2118, - 2120, 2127, 2115, 2128, 2127, 0, 2114, 2129, 2117, 2121, - 2122, 2124, 2129, 2130, 2131, 2131, 2138, 2128, 2130, 2125, - 2139, 2126, 2132, 2132, 2133, 2133, 2135, 2135, 2137, 2137, - - 2140, 2139, 2142, 2143, 2138, 2144, 2145, 2146, 2147, 2149, - 2149, 2148, 2151, 2151, 2152, 2153, 2146, 2154, 2154, 2140, - 2158, 2143, 2142, 2156, 2153, 2159, 2145, 2144, 2147, 2148, - 2157, 2157, 2156, 2160, 2161, 2162, 2152, 2163, 2158, 2165, - 2160, 2164, 2168, 2159, 2166, 2166, 2167, 2167, 2168, 2161, - 2169, 2170, 2171, 2162, 2172, 2163, 2173, 2164, 2165, 2172, - 2174, 2176, 2175, 2176, 2177, 2177, 2170, 2175, 2169, 2181, - 2178, 2171, 2178, 2179, 2179, 2183, 2173, 2184, 2185, 2187, - 2174, 2186, 2188, 2191, 2183, 2194, 2186, 2192, 2181, 2195, - 2192, 2193, 2193, 2196, 2196, 2199, 2184, 2204, 2185, 2187, - - 2194, 2188, 2197, 2191, 2200, 2202, 2197, 2195, 2200, 2205, - 2199, 2201, 2201, 2206, 2206, 2208, 2210, 2204, 2202, 2209, - 2209, 2211, 2211, 2212, 2213, 2214, 2214, 2208, 2212, 2205, - 2219, 2219, 2220, 2221, 2222, 2210, 2213, 2225, 2225, 2223, - 2224, 2226, 2234, 2231, 2233, 2230, 2221, 2222, 2223, 2224, - 2230, 2235, 2233, 2232, 2220, 2236, 2226, 2231, 2232, 2238, - 2235, 2234, 2239, 2236, 2240, 2241, 2246, 2239, 2244, 2240, - 2242, 2242, 2243, 2243, 2238, 2244, 2245, 2247, 2249, 2248, - 2241, 2245, 2251, 2249, 2246, 2248, 2250, 2250, 2252, 2253, - 2253, 2254, 2254, 2252, 2257, 2247, 2260, 2251, 2258, 2258, - - 2259, 2260, 2260, 2259, 2261, 2262, 2263, 2257, 2265, 2261, - 2262, 2264, 2263, 2265, 2266, 2264, 2267, 2268, 2270, 2269, - 2279, 2272, 2275, 2266, 2269, 2268, 2272, 2288, 2277, 2273, - 2270, 2267, 2273, 2277, 2275, 2278, 2280, 2281, 2279, 2282, - 2278, 2283, 2283, 2284, 2287, 2289, 2281, 2288, 2282, 2280, - 2290, 2290, 2284, 2291, 2293, 2295, 2292, 2294, 2294, 2299, - 2297, 0, 2300, 2287, 2289, 2292, 2300, 2301, 2301, 2293, - 2302, 2303, 2291, 2310, 2295, 2297, 2302, 2303, 2304, 2299, - 2305, 2305, 2306, 2307, 2304, 2309, 2310, 2312, 2307, 2313, - 2306, 2312, 2314, 2324, 2309, 2316, 2316, 2317, 2317, 2318, - - 2318, 2320, 2320, 2313, 2322, 2322, 2325, 2314, 2327, 2328, - 2328, 2325, 2325, 2324, 2329, 2329, 2330, 2330, 2331, 2332, - 2334, 2331, 2335, 2335, 2336, 2336, 2337, 2337, 2327, 2338, - 2339, 2339, 2332, 2340, 2341, 2342, 2343, 2345, 2334, 2344, - 2344, 2345, 2343, 2349, 2338, 2348, 2340, 2350, 2351, 2342, - 2348, 2348, 2341, 2352, 2353, 2354, 2364, 2355, 2368, 2352, - 2353, 2355, 2356, 2356, 2359, 2361, 2349, 2350, 2351, 2359, - 2366, 2362, 2365, 2361, 2362, 2365, 2368, 2367, 2369, 2370, - 2354, 2364, 2367, 2371, 2371, 2372, 2373, 2366, 2366, 2375, - 2374, 2376, 2376, 2370, 2373, 2374, 2374, 2381, 2369, 2377, - - 2377, 2378, 2378, 2383, 2372, 2379, 2379, 2382, 2375, 2380, - 2380, 2384, 2382, 2381, 2386, 2385, 2387, 2389, 2389, 2390, - 2391, 2394, 2390, 2383, 2385, 2393, 2393, 2396, 2394, 2395, - 2395, 2398, 2396, 2399, 2386, 2400, 2387, 2384, 2391, 2402, - 2398, 2405, 2399, 2404, 2400, 2403, 2403, 2404, 2406, 2407, - 2405, 2408, 2409, 2415, 2407, 2407, 2417, 2402, 2414, 2414, - 2418, 2409, 2421, 2406, 2408, 2417, 2422, 2425, 2423, 2427, - 2442, 2415, 2418, 2429, 0, 2422, 2430, 2432, 2429, 2425, - 2434, 2430, 2431, 2431, 2441, 2434, 2432, 2421, 2423, 2442, - 2427, 2435, 2435, 2437, 2437, 2435, 2438, 2438, 2439, 2439, - - 2440, 2443, 2445, 2449, 2441, 2446, 2443, 2447, 2445, 2440, - 2446, 2450, 2447, 2448, 2448, 2451, 2452, 2453, 2454, 2457, - 2451, 2449, 2458, 2453, 2455, 2455, 2459, 2461, 2461, 2463, - 2471, 2464, 2450, 2467, 2452, 2465, 2466, 2458, 2457, 2465, - 2468, 2473, 2463, 2454, 2464, 2466, 2459, 2469, 2470, 2467, - 2472, 2472, 2478, 2470, 2481, 2469, 2471, 2475, 2475, 2468, - 2473, 2476, 2476, 2480, 2480, 2482, 2483, 2484, 2486, 2486, - 2481, 2487, 2484, 2478, 2488, 2489, 2491, 2491, 2492, 2494, - 2495, 2482, 2483, 2498, 2494, 2496, 2496, 2497, 2497, 2499, - 2499, 2487, 2492, 2501, 2489, 2500, 2503, 2488, 2504, 2502, - - 2505, 2513, 2495, 2498, 2500, 2502, 2506, 2506, 2507, 2499, - 2504, 2507, 2512, 2501, 2518, 2503, 2508, 2508, 2522, 2514, - 2505, 2513, 2515, 2515, 2512, 2514, 2516, 2517, 2523, 2516, - 2520, 2521, 2518, 2517, 2523, 2520, 2521, 2522, 2524, 2525, - 2525, 2527, 2527, 2528, 2529, 2531, 2531, 2532, 2532, 2533, - 2534, 2546, 2535, 2529, 2533, 2524, 2524, 2535, 2536, 2536, - 2537, 2537, 2528, 2539, 2534, 2538, 2538, 2544, 2539, 2541, - 2541, 2547, 2548, 2546, 2549, 2549, 2551, 2551, 2552, 2553, - 2554, 2555, 2555, 2556, 2563, 2557, 2544, 2560, 2560, 2554, - 2557, 2564, 2552, 2547, 2548, 2562, 2562, 2564, 2563, 2553, - - 2565, 2566, 2556, 2567, 2567, 2568, 2570, 2571, 2572, 2566, - 2568, 2573, 2565, 2572, 2574, 2577, 2576, 2578, 2579, 2581, - 2574, 2580, 0, 2573, 2576, 2582, 2570, 2571, 2583, 2593, - 2587, 2584, 2588, 2593, 2577, 2581, 2584, 2578, 2579, 2580, - 2591, 2591, 2582, 2582, 2603, 2588, 2592, 2592, 2603, 2583, - 2587, 2597, 2597, 2599, 2599, 2600, 2600, 2606, 2600, 2601, - 2601, 0, 2601, 2602, 2602, 2607, 2602, 2605, 2605, 2609, - 2610, 2610, 2614, 2613, 2609, 2606, 2614, 2615, 2616, 2607, - 2613, 2618, 2619, 2620, 2620, 2623, 2615, 2621, 2621, 2622, - 2622, 2619, 2624, 2616, 2625, 2628, 2626, 2624, 2627, 2618, - - 2623, 2626, 2626, 2625, 2627, 2630, 2625, 2629, 2631, 2632, - 2633, 2634, 2634, 2631, 2632, 2691, 2635, 2638, 2638, 2691, - 2628, 2635, 2629, 2641, 2641, 2651, 2630, 2642, 2642, 2633, - 2643, 2643, 2644, 2644, 2645, 2645, 2646, 2646, 2647, 2647, - 2649, 2650, 2650, 2653, 2653, 2651, 2654, 2655, 2658, 2649, - 2656, 2657, 2657, 2659, 2659, 2662, 2663, 2664, 2666, 2663, - 2655, 2654, 2656, 2658, 2665, 2665, 2668, 2670, 2669, 2668, - 2671, 2672, 2674, 2662, 2669, 2671, 2666, 2673, 2676, 2685, - 2689, 2670, 2685, 2664, 2687, 2687, 2692, 2690, 2674, 2695, - 2672, 2693, 2699, 2676, 2697, 2673, 2690, 2696, 2698, 2697, - - 2698, 2700, 2700, 2689, 2701, 2693, 2692, 2699, 2696, 2702, - 2704, 2703, 2695, 2705, 2707, 2706, 2708, 2701, 2710, 2711, - 2712, 2712, 2713, 2714, 2714, 2718, 2704, 2719, 2702, 2703, - 2706, 2713, 2710, 2715, 2715, 2707, 2708, 2723, 2705, 2711, - 2716, 2716, 2717, 2717, 2718, 2720, 2721, 2719, 2720, 2722, - 2724, 2721, 2725, 2726, 2722, 2727, 2728, 2728, 2725, 2729, - 2730, 2730, 2723, 2734, 2732, 2724, 2739, 2726, 2737, 2737, - 2738, 2738, 2740, 2743, 2739, 2727, 2741, 2742, 2729, 2732, - 2744, 2734, 2741, 2742, 2745, 2746, 2746, 2743, 2748, 2753, - 2750, 2740, 2751, 2744, 2754, 2755, 2751, 2756, 2757, 2754, - - 2758, 2759, 2760, 2745, 2750, 2762, 2759, 2760, 2748, 2753, - 2756, 2757, 2763, 2765, 2755, 2764, 2764, 2771, 2765, 2758, - 2766, 2767, 2767, 2762, 2768, 2769, 2766, 2770, 2772, 2768, - 2769, 2763, 2770, 2773, 2772, 2777, 2771, 2776, 2773, 2774, - 2774, 2776, 2778, 2779, 2780, 2781, 2782, 2783, 2789, 2778, - 2796, 2781, 2784, 2784, 2777, 2786, 2786, 2787, 2790, 2788, - 2783, 2791, 2779, 2780, 2788, 2782, 2787, 2789, 2793, 2787, - 2792, 2792, 2794, 2793, 2791, 2798, 2796, 2790, 2797, 2797, - 2799, 2799, 2800, 2800, 2801, 2794, 2802, 2803, 2808, 2801, - 2804, 2804, 2805, 2802, 2798, 2808, 2806, 2805, 2806, 2807, - - 2807, 2809, 2810, 2812, 2811, 2815, 2803, 2817, 2809, 2811, - 2814, 2814, 2817, 2818, 2819, 2820, 2821, 2821, 2818, 2823, - 2823, 2810, 2812, 2824, 2815, 2825, 2826, 2826, 2827, 2827, - 2828, 2830, 2830, 2819, 2820, 2831, 2831, 2828, 2832, 2838, - 2839, 2834, 2824, 2837, 2825, 2832, 2834, 0, 2837, 2840, - 2840, 2841, 2841, 0, 0, 0, 0, 0, 2838, 2839, - 2845, 2845, 2845, 2845, 2845, 2845, 2845, 2846, 2846, 2846, - 2846, 2846, 2846, 2846, 2847, 2847, 2847, 2847, 2847, 2847, - 2847, 2848, 2848, 2848, 2848, 2848, 2848, 2848, 2849, 2849, - 2849, 2849, 2849, 2849, 2849, 2851, 2851, 0, 2851, 2851, - - 2851, 2851, 2852, 2852, 0, 0, 0, 2852, 2852, 2853, - 2853, 0, 0, 2853, 0, 2853, 2854, 0, 0, 0, - 0, 0, 2854, 2855, 2855, 0, 0, 0, 2855, 2855, - 2856, 0, 0, 0, 0, 0, 2856, 2857, 2857, 0, - 2857, 2857, 2857, 2857, 2858, 2858, 0, 2858, 2858, 2858, - 2858, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, - 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, - 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, - 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, - 2844, 2844 - + 126, 127, 130, 131, 127, 134, 132, 123, 133, 135, + 133, 123, 137, 136, 135, 129, 128, 134, 138, 133, + 139, 130, 132, 138, 131, 136, 141, 141, 147, 143, + 137, 133, 143, 145, 139, 145, 145, 154, 145, 148, + 148, 150, 154, 150, 150, 151, 150, 151, 151, 153, + + 151, 156, 153, 155, 160, 157, 158, 151, 161, 155, + 162, 163, 160, 164, 158, 165, 163, 167, 155, 156, + 157, 158, 166, 191, 165, 162, 168, 161, 166, 166, + 170, 168, 178, 164, 169, 169, 170, 172, 171, 191, + 171, 172, 167, 171, 173, 173, 172, 174, 175, 176, + 177, 172, 178, 175, 176, 179, 182, 172, 172, 180, + 171, 179, 177, 180, 181, 183, 174, 184, 185, 181, + 182, 186, 187, 189, 190, 192, 186, 187, 189, 184, + 183, 192, 184, 196, 179, 194, 185, 188, 188, 193, + 193, 194, 195, 188, 190, 197, 198, 194, 195, 199, + + 200, 197, 198, 196, 201, 188, 200, 188, 202, 201, + 203, 198, 204, 205, 202, 206, 203, 207, 208, 204, + 199, 206, 209, 210, 208, 211, 205, 212, 214, 215, + 213, 210, 212, 216, 218, 217, 220, 207, 211, 213, + 217, 221, 219, 214, 209, 215, 219, 221, 222, 223, + 224, 225, 218, 216, 227, 223, 225, 226, 220, 226, + 230, 227, 228, 229, 232, 231, 222, 222, 228, 229, + 224, 231, 233, 234, 234, 236, 232, 235, 235, 230, + 239, 236, 237, 238, 240, 238, 233, 242, 237, 240, + 243, 244, 241, 246, 260, 245, 260, 257, 243, 236, + + 245, 247, 238, 239, 241, 249, 242, 247, 248, 251, + 249, 244, 250, 252, 248, 251, 246, 250, 253, 254, + 255, 256, 257, 259, 258, 263, 259, 267, 252, 256, + 258, 266, 253, 146, 255, 261, 261, 254, 262, 264, + 264, 262, 267, 263, 265, 265, 268, 266, 269, 268, + 270, 271, 269, 272, 273, 275, 274, 271, 274, 270, + 273, 275, 276, 277, 277, 278, 276, 272, 279, 280, + 278, 282, 281, 283, 279, 284, 284, 285, 286, 288, + 285, 287, 290, 276, 144, 287, 283, 289, 289, 280, + 281, 291, 282, 292, 291, 293, 286, 288, 295, 294, + + 290, 293, 294, 297, 298, 292, 301, 309, 299, 301, + 295, 296, 297, 299, 300, 303, 309, 300, 308, 300, + 296, 302, 298, 296, 305, 305, 307, 303, 296, 296, + 296, 296, 310, 308, 302, 300, 304, 306, 304, 304, + 306, 310, 312, 307, 311, 311, 307, 312, 313, 313, + 314, 315, 316, 317, 318, 319, 315, 320, 321, 327, + 329, 322, 323, 320, 316, 314, 322, 142, 323, 329, + 319, 324, 317, 327, 318, 325, 324, 331, 321, 326, + 325, 336, 326, 331, 326, 328, 325, 332, 328, 330, + 330, 335, 332, 337, 333, 338, 444, 333, 339, 342, + + 345, 328, 336, 333, 328, 344, 328, 333, 337, 345, + 338, 335, 339, 342, 349, 333, 334, 334, 444, 334, + 344, 341, 346, 347, 341, 348, 354, 346, 346, 347, + 350, 352, 334, 349, 355, 334, 353, 334, 351, 334, + 341, 343, 353, 343, 343, 350, 348, 351, 356, 358, + 352, 359, 354, 343, 355, 343, 343, 343, 357, 360, + 343, 361, 356, 363, 357, 362, 366, 364, 357, 367, + 362, 359, 358, 364, 365, 365, 361, 368, 363, 360, + 370, 367, 369, 371, 372, 375, 366, 374, 369, 372, + 376, 368, 373, 373, 377, 373, 378, 383, 378, 371, + + 379, 375, 381, 381, 379, 370, 376, 374, 377, 380, + 382, 384, 383, 380, 385, 387, 378, 386, 389, 393, + 140, 388, 390, 389, 387, 391, 390, 384, 380, 382, + 388, 386, 385, 392, 391, 387, 394, 387, 396, 392, + 393, 395, 394, 396, 397, 395, 398, 398, 399, 400, + 401, 402, 402, 403, 400, 405, 404, 406, 412, 403, + 404, 399, 407, 401, 397, 411, 408, 407, 409, 409, + 405, 408, 410, 419, 413, 70, 412, 409, 406, 414, + 416, 423, 414, 415, 410, 411, 413, 415, 417, 417, + 418, 425, 416, 424, 419, 418, 420, 420, 422, 422, + + 425, 424, 423, 426, 427, 430, 429, 431, 432, 433, + 435, 434, 439, 436, 432, 435, 427, 434, 433, 440, + 437, 431, 440, 426, 429, 430, 429, 436, 437, 438, + 441, 437, 439, 442, 443, 438, 441, 445, 446, 443, + 447, 448, 446, 449, 450, 447, 451, 442, 449, 452, + 454, 456, 457, 455, 441, 456, 448, 458, 445, 459, + 450, 461, 452, 459, 462, 451, 453, 453, 455, 462, + 454, 457, 453, 458, 453, 463, 461, 466, 460, 464, + 453, 468, 453, 460, 465, 453, 453, 460, 464, 469, + 465, 463, 453, 466, 467, 465, 471, 467, 470, 470, + + 472, 472, 473, 474, 468, 475, 476, 477, 478, 469, + 479, 480, 481, 478, 484, 474, 482, 473, 488, 479, + 475, 471, 482, 484, 485, 476, 486, 481, 485, 477, + 480, 487, 486, 488, 489, 490, 491, 492, 493, 494, + 496, 498, 493, 487, 495, 503, 495, 498, 496, 490, + 499, 491, 494, 489, 500, 492, 497, 497, 501, 503, + 500, 502, 499, 504, 502, 506, 505, 507, 506, 508, + 501, 505, 511, 511, 509, 510, 507, 517, 504, 509, + 509, 512, 512, 507, 513, 508, 507, 520, 510, 516, + 513, 514, 514, 515, 515, 516, 518, 519, 517, 518, + + 521, 522, 519, 524, 522, 523, 520, 526, 521, 525, + 523, 526, 527, 528, 529, 530, 531, 528, 527, 532, + 530, 534, 533, 536, 64, 532, 524, 533, 525, 538, + 535, 541, 529, 535, 59, 534, 531, 542, 535, 537, + 537, 536, 535, 539, 540, 541, 544, 538, 539, 540, + 543, 545, 542, 546, 545, 544, 543, 546, 547, 548, + 549, 550, 548, 547, 551, 549, 552, 553, 555, 554, + 556, 556, 557, 552, 554, 558, 559, 550, 560, 546, + 553, 557, 551, 561, 562, 563, 564, 560, 555, 564, + 562, 563, 559, 565, 558, 561, 565, 566, 567, 568, + + 569, 571, 566, 570, 575, 573, 569, 571, 570, 572, + 573, 576, 572, 568, 574, 577, 567, 575, 579, 574, + 574, 578, 580, 581, 576, 588, 582, 578, 581, 582, + 583, 580, 54, 584, 577, 577, 583, 579, 585, 587, + 587, 586, 590, 585, 582, 584, 586, 586, 592, 589, + 588, 589, 591, 593, 591, 594, 595, 596, 597, 598, + 599, 590, 603, 598, 597, 600, 592, 601, 602, 599, + 605, 593, 604, 594, 607, 595, 609, 596, 608, 610, + 600, 603, 601, 606, 604, 605, 602, 611, 607, 606, + 608, 611, 612, 613, 614, 609, 615, 616, 610, 617, + + 618, 618, 619, 620, 625, 622, 619, 621, 624, 613, + 612, 632, 614, 617, 615, 615, 616, 626, 621, 622, + 623, 627, 620, 625, 624, 623, 628, 629, 627, 632, + 626, 628, 630, 631, 629, 633, 634, 630, 631, 635, + 636, 638, 633, 637, 639, 634, 638, 639, 640, 636, + 641, 642, 640, 635, 643, 637, 644, 645, 646, 646, + 642, 651, 647, 647, 641, 648, 648, 649, 652, 643, + 644, 647, 653, 654, 652, 655, 649, 654, 645, 656, + 651, 657, 658, 659, 661, 662, 660, 655, 658, 663, + 669, 659, 653, 660, 672, 674, 664, 666, 679, 657, + + 673, 664, 661, 672, 656, 664, 673, 669, 664, 663, + 662, 674, 666, 675, 678, 664, 679, 675, 664, 676, + 676, 677, 677, 680, 681, 678, 682, 685, 684, 687, + 698, 688, 682, 684, 688, 686, 690, 680, 689, 689, + 691, 691, 698, 690, 681, 683, 683, 683, 685, 683, + 692, 699, 683, 686, 687, 693, 693, 683, 697, 695, + 697, 694, 695, 683, 683, 692, 694, 696, 701, 700, + 699, 702, 696, 700, 703, 704, 704, 705, 708, 706, + 707, 707, 703, 709, 710, 711, 713, 713, 701, 712, + 702, 711, 705, 706, 712, 709, 708, 714, 750, 716, + + 750, 717, 714, 714, 716, 718, 710, 717, 719, 720, + 722, 718, 723, 719, 721, 720, 722, 721, 724, 725, + 723, 727, 726, 728, 729, 729, 724, 726, 727, 730, + 732, 731, 733, 742, 735, 736, 732, 725, 730, 731, + 737, 738, 728, 735, 736, 737, 739, 740, 741, 739, + 738, 733, 740, 743, 743, 744, 745, 746, 742, 747, + 748, 752, 741, 748, 751, 751, 746, 753, 754, 757, + 744, 748, 753, 755, 756, 745, 758, 759, 760, 762, + 761, 763, 752, 747, 761, 767, 759, 53, 768, 754, + 765, 757, 764, 755, 756, 766, 758, 762, 764, 765, + + 763, 760, 768, 769, 767, 770, 771, 766, 773, 769, + 775, 771, 772, 772, 774, 777, 776, 778, 779, 770, + 780, 781, 782, 774, 776, 783, 784, 781, 773, 787, + 775, 783, 785, 787, 788, 777, 782, 779, 785, 778, + 780, 786, 789, 790, 791, 793, 784, 786, 790, 792, + 792, 793, 794, 788, 789, 794, 795, 796, 797, 798, + 799, 799, 789, 800, 797, 791, 801, 802, 802, 803, + 796, 801, 804, 806, 795, 809, 804, 805, 805, 798, + 807, 800, 808, 811, 803, 812, 814, 808, 815, 817, + 817, 821, 818, 819, 809, 806, 818, 820, 820, 812, + + 807, 822, 823, 48, 824, 822, 814, 811, 819, 815, + 816, 839, 839, 816, 826, 816, 821, 823, 824, 816, + 825, 816, 828, 829, 827, 825, 816, 829, 826, 827, + 827, 816, 830, 831, 832, 833, 828, 834, 831, 832, + 835, 842, 843, 43, 836, 837, 838, 830, 831, 833, + 836, 837, 838, 841, 835, 840, 844, 846, 834, 841, + 840, 843, 847, 842, 848, 849, 854, 847, 851, 846, + 850, 850, 852, 851, 844, 845, 845, 849, 848, 853, + 852, 845, 14, 845, 855, 854, 856, 856, 857, 845, + 859, 861, 857, 853, 845, 845, 859, 860, 862, 863, + + 860, 845, 864, 855, 865, 863, 866, 864, 867, 868, + 861, 862, 869, 870, 871, 866, 872, 867, 869, 873, + 874, 872, 870, 865, 875, 868, 876, 877, 878, 879, + 880, 885, 883, 871, 874, 879, 877, 878, 876, 873, + 881, 886, 888, 887, 875, 885, 881, 880, 883, 889, + 890, 894, 891, 892, 893, 897, 888, 891, 892, 893, + 894, 886, 887, 895, 895, 890, 896, 889, 897, 899, + 900, 904, 896, 901, 901, 900, 900, 901, 902, 903, + 905, 902, 906, 908, 907, 899, 909, 911, 910, 908, + 911, 904, 912, 903, 910, 906, 913, 914, 905, 907, + + 915, 913, 914, 916, 917, 918, 909, 921, 916, 917, + 924, 924, 920, 912, 922, 923, 915, 918, 920, 925, + 922, 923, 926, 921, 927, 928, 928, 927, 925, 929, + 930, 931, 932, 933, 936, 932, 934, 935, 939, 936, + 926, 941, 934, 935, 939, 937, 933, 929, 938, 930, + 937, 931, 942, 938, 943, 946, 944, 945, 945, 941, + 943, 944, 947, 948, 946, 949, 950, 951, 949, 950, + 952, 947, 942, 953, 954, 957, 955, 956, 951, 958, + 960, 948, 955, 956, 958, 953, 959, 959, 952, 961, + 957, 963, 962, 954, 964, 963, 965, 966, 967, 960, + + 969, 970, 970, 961, 962, 965, 972, 973, 975, 974, + 977, 977, 964, 975, 978, 976, 966, 993, 993, 969, + 972, 974, 973, 967, 976, 979, 980, 982, 981, 982, + 983, 979, 980, 981, 978, 983, 984, 985, 986, 987, + 988, 989, 990, 986, 991, 13, 994, 995, 989, 996, + 984, 985, 997, 998, 987, 1003, 999, 990, 997, 988, + 994, 999, 1003, 991, 996, 995, 1001, 1001, 1004, 1002, + 999, 1006, 999, 998, 1002, 999, 1005, 1007, 1008, 1005, + 1009, 1011, 1004, 1008, 1012, 1010, 1007, 1014, 1014, 1006, + 1010, 1015, 1011, 1016, 1017, 1018, 1015, 1019, 1016, 1009, + + 1018, 1019, 1020, 1012, 1021, 1022, 1023, 1025, 1026, 1024, + 1028, 1020, 1027, 1029, 1017, 1026, 1032, 1030, 1033, 1021, + 1022, 1024, 1025, 1034, 1027, 1023, 1031, 1035, 1038, 1028, + 1040, 1032, 1031, 1037, 1029, 1030, 1035, 1039, 1033, 1037, + 1042, 1041, 1038, 1034, 1044, 1039, 1041, 1045, 1043, 1046, + 1040, 1050, 1042, 1043, 1043, 1047, 1047, 1049, 0, 1051, + 1050, 1045, 1046, 1044, 1048, 1051, 1052, 1052, 1055, 1048, + 1049, 1053, 1048, 1048, 1055, 1054, 1053, 1048, 1058, 1058, + 1056, 1057, 1059, 1048, 1054, 1056, 1057, 1048, 1060, 1060, + 1061, 1062, 1063, 1061, 1065, 1061, 1064, 1066, 1067, 1068, + + 1069, 1070, 1066, 1059, 1071, 1064, 1069, 1070, 1080, 1071, + 1063, 1062, 1067, 1073, 1065, 1072, 1075, 1068, 1075, 1072, + 1074, 1074, 1073, 1076, 1078, 1079, 1080, 1073, 1078, 1073, + 1081, 1073, 1082, 1073, 1076, 1083, 1084, 1082, 1082, 1081, + 1079, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1093, + 1094, 1092, 1086, 1091, 1089, 1095, 1085, 1083, 1093, 1097, + 1097, 1090, 1096, 1087, 1088, 1092, 1098, 1096, 1094, 1099, + 1099, 1100, 1102, 1100, 1103, 1102, 1104, 1105, 1107, 1103, + 1095, 1098, 1106, 1106, 1108, 1108, 1105, 1109, 1109, 1110, + 1111, 1112, 1113, 1113, 1110, 1104, 1114, 1115, 1107, 1116, + + 1115, 1117, 1120, 1119, 1118, 1119, 1117, 1122, 1123, 1124, + 1122, 1111, 1112, 1118, 1124, 1131, 1114, 1125, 1126, 1116, + 1120, 0, 1125, 1123, 1127, 1128, 1126, 1129, 1129, 1127, + 1128, 1130, 1132, 1131, 1133, 1134, 1130, 1136, 1132, 1137, + 1139, 1133, 1138, 1136, 1140, 1137, 1139, 1138, 1134, 1141, + 1142, 1143, 1143, 1140, 1144, 1146, 1147, 1148, 1149, 1150, + 1152, 1142, 1153, 1148, 1149, 1150, 1152, 1154, 1141, 1155, + 1156, 1157, 1158, 1158, 1144, 1146, 1153, 1159, 1160, 1147, + 1161, 1155, 1153, 1162, 1156, 1163, 1163, 1154, 1162, 1157, + 1164, 1165, 1167, 1170, 1168, 1172, 1165, 1159, 1161, 1168, + + 1168, 1169, 1170, 1160, 1171, 1173, 1174, 1182, 1177, 1172, + 1175, 1167, 1171, 1164, 1176, 1175, 1176, 1178, 1175, 1169, + 1173, 1174, 1177, 1178, 1174, 1179, 1180, 1181, 1189, 1179, + 1183, 1184, 1185, 1182, 1186, 1187, 1184, 1180, 1190, 1186, + 1191, 1193, 1189, 1192, 1192, 1193, 1181, 1194, 1183, 1195, + 1185, 1196, 1197, 1198, 1200, 1187, 1190, 1196, 1191, 1199, + 1201, 1202, 1203, 1204, 1197, 1194, 1205, 1203, 1195, 1200, + 1204, 1205, 1198, 1199, 1206, 1201, 1207, 1208, 1208, 1209, + 1202, 1210, 1211, 1212, 1213, 1207, 0, 1210, 1212, 1214, + 1213, 1221, 1206, 1222, 1209, 1214, 1215, 1215, 1216, 1216, + + 1218, 1218, 1219, 1211, 1220, 1223, 1219, 1222, 1224, 1221, + 1225, 1225, 1226, 1220, 1227, 1224, 1228, 1229, 1230, 1231, + 1223, 1228, 1227, 1232, 1231, 1231, 1233, 1237, 1232, 1232, + 1235, 1229, 1226, 1234, 1234, 1236, 1237, 1230, 1238, 1239, + 1240, 1241, 1242, 1238, 1244, 1243, 1233, 1245, 1242, 1235, + 1243, 1247, 1246, 1245, 1236, 1248, 1249, 1247, 1239, 1241, + 1240, 1248, 1250, 1251, 1252, 1253, 1254, 1256, 1256, 1255, + 1244, 1246, 0, 1257, 1258, 1249, 1257, 1259, 1259, 1253, + 1260, 1250, 1251, 1252, 1255, 1260, 1258, 1254, 1261, 1262, + 1263, 1264, 1261, 1267, 1265, 1268, 1265, 1269, 1267, 1263, + + 1265, 1276, 1262, 1270, 1264, 1271, 1271, 1272, 1277, 1273, + 1268, 1274, 1272, 1265, 1273, 1274, 1275, 1269, 1278, 1270, + 1275, 1276, 1279, 1280, 1280, 1282, 1277, 1284, 1279, 1285, + 1286, 1286, 1288, 1287, 1285, 1290, 1290, 1292, 1278, 1287, + 1292, 1293, 1293, 1282, 1294, 1295, 1297, 1298, 1284, 1297, + 1299, 1301, 1288, 1300, 1300, 1302, 1303, 1304, 1305, 1299, + 1294, 1295, 1304, 1306, 1306, 1307, 1301, 1298, 1309, 1308, + 1310, 1310, 1305, 1311, 1312, 1303, 1302, 1313, 1317, 1314, + 1315, 1315, 1313, 1307, 1308, 1316, 1319, 1311, 1320, 1316, + 1318, 1318, 1312, 1309, 1314, 1322, 1321, 1323, 1317, 1320, + + 1321, 1326, 1323, 1325, 1325, 1328, 1327, 1329, 1319, 1330, + 1331, 1331, 1332, 1333, 1322, 1334, 1337, 1332, 1335, 1326, + 1327, 1329, 1341, 1336, 1328, 1328, 1344, 1335, 1336, 1338, + 1346, 1338, 1339, 1333, 1330, 1334, 1337, 1339, 1340, 1342, + 1344, 1350, 1341, 1354, 1340, 1342, 1345, 1345, 1347, 1346, + 1349, 1351, 1351, 1353, 1347, 1349, 1352, 1352, 1355, 1356, + 1358, 1354, 1356, 1357, 1357, 1350, 1359, 1353, 1365, 1361, + 1363, 1360, 1358, 1355, 1360, 1361, 1362, 1360, 1364, 1363, + 1375, 1362, 1366, 1364, 1367, 1366, 1359, 1368, 1373, 1360, + 1367, 1374, 1368, 1365, 1369, 1369, 1370, 1370, 1371, 1375, + + 1372, 1373, 1376, 1377, 1371, 1372, 1377, 1378, 1379, 1374, + 1380, 1381, 1382, 1378, 1379, 1380, 1383, 1381, 1384, 1384, + 1385, 1383, 1376, 1386, 1387, 1385, 1388, 1391, 1389, 1390, + 1393, 1394, 1392, 1395, 1396, 1382, 1393, 1397, 1405, 1391, + 1400, 1386, 1389, 1390, 1387, 1392, 1388, 1401, 1396, 1399, + 1399, 1394, 1401, 1395, 1402, 1402, 1403, 1406, 1397, 1404, + 1400, 1407, 1405, 1408, 1411, 1409, 1413, 1410, 1415, 0, + 1407, 1403, 1409, 1404, 1416, 1406, 1410, 1416, 1408, 1410, + 1411, 1413, 1417, 1417, 1418, 1418, 1413, 1419, 1420, 1421, + 1422, 1422, 1421, 1415, 1423, 1424, 1425, 1426, 1427, 1419, + + 1428, 1425, 1426, 1429, 1430, 1433, 1420, 1423, 1435, 1431, + 1432, 1433, 1429, 1436, 1424, 1437, 1428, 1427, 1431, 1432, + 1438, 1431, 1439, 1430, 1434, 1434, 1436, 1440, 1435, 1442, + 1443, 1444, 1444, 1437, 1438, 1445, 1446, 1447, 1439, 1440, + 1448, 1448, 1447, 1450, 1449, 1446, 1451, 1452, 1443, 1455, + 1457, 1445, 1453, 1449, 1442, 1448, 1449, 1453, 1453, 1460, + 1456, 1450, 1464, 1455, 1460, 1452, 1456, 1451, 1457, 1458, + 1458, 1459, 1461, 1462, 1465, 1466, 1467, 1459, 1461, 1462, + 1473, 1466, 1464, 1468, 1469, 1471, 1468, 1474, 1465, 1467, + 1469, 1476, 1468, 1471, 1475, 1477, 1478, 1479, 1480, 1473, + + 1476, 1482, 1475, 1481, 1481, 1484, 1474, 1482, 1477, 1478, + 1483, 1479, 1480, 1485, 1486, 1487, 1483, 1488, 1484, 1490, + 1489, 1491, 1492, 1494, 1494, 1481, 1489, 1495, 0, 1501, + 1488, 1496, 1486, 1485, 1487, 1496, 1505, 1491, 1497, 1498, + 1492, 1490, 1500, 1497, 1498, 1499, 1503, 1495, 1504, 1504, + 1499, 1500, 1501, 1506, 1507, 1505, 1508, 1508, 1509, 1510, + 1513, 1503, 1511, 1512, 1514, 1506, 1510, 1517, 1516, 1524, + 1515, 1518, 1509, 1507, 1511, 1512, 1515, 1518, 1524, 1513, + 1516, 1519, 1519, 1520, 1514, 1517, 1520, 1521, 1521, 1523, + 1525, 1526, 1526, 1527, 1523, 1528, 1525, 1528, 1529, 1530, + + 1531, 1529, 1532, 1533, 1534, 1527, 1535, 1538, 1539, 1534, + 1537, 1536, 1538, 1540, 1541, 1535, 1544, 1539, 1543, 1530, + 1532, 1533, 1531, 1536, 1543, 1537, 1542, 1542, 1545, 1541, + 1539, 1547, 1546, 1540, 1548, 1553, 1548, 1544, 1549, 1550, + 1550, 1551, 1551, 1552, 1552, 1554, 1554, 1545, 1546, 1555, + 1555, 1547, 1549, 1556, 1549, 1553, 1557, 1558, 1558, 1559, + 1560, 1561, 1563, 1559, 1561, 1564, 1560, 1565, 1563, 1566, + 1568, 1568, 1567, 1565, 1556, 1567, 1570, 1557, 1569, 1569, + 1572, 1573, 1570, 1564, 1571, 1574, 1575, 1577, 1578, 1581, + 1585, 1574, 1577, 1577, 1566, 1584, 1571, 1571, 1571, 1580, + + 1572, 1573, 1578, 1571, 1581, 1579, 1575, 1579, 1582, 1583, + 1580, 1585, 1586, 1586, 1582, 1584, 1587, 1589, 1583, 1588, + 1588, 1590, 1591, 1591, 1592, 1592, 1593, 1596, 1596, 1597, + 1598, 1600, 1601, 1603, 1603, 1602, 1604, 1589, 1606, 1598, + 1600, 1602, 1587, 1590, 1605, 1606, 1593, 1607, 1608, 1609, + 1609, 1610, 1611, 1601, 1597, 1613, 1607, 1604, 1614, 1605, + 1613, 1615, 1616, 1622, 1614, 1617, 1618, 1623, 1611, 1616, + 1621, 1617, 1618, 1620, 1608, 1619, 1619, 1610, 1620, 1621, + 1624, 1615, 1625, 1622, 1626, 1625, 1623, 1627, 1628, 1628, + 1629, 1630, 1624, 1631, 1632, 1634, 1629, 1635, 1632, 0, + + 1638, 1639, 1626, 1636, 1640, 1639, 1642, 1642, 1631, 1646, + 1640, 1630, 1641, 1627, 1632, 1634, 1635, 1644, 1636, 1638, + 1643, 1641, 1645, 1645, 1643, 1647, 1648, 1649, 1644, 1650, + 1646, 1651, 1649, 1644, 1652, 1653, 1654, 1655, 1655, 1647, + 1652, 1654, 1656, 1656, 1657, 1648, 1659, 1660, 1657, 1650, + 1653, 1651, 1661, 1662, 1662, 1659, 1663, 1663, 1660, 1664, + 1665, 1666, 1667, 1660, 1664, 1664, 1665, 1666, 1668, 1669, + 1670, 1672, 1661, 1668, 1673, 1674, 1670, 1675, 1673, 1676, + 1678, 1669, 1677, 1672, 1679, 1676, 1678, 1674, 1667, 1681, + 1682, 1685, 1683, 1689, 1685, 1692, 1679, 1683, 1686, 1686, + + 1692, 1681, 1675, 0, 1677, 1687, 1687, 1688, 1688, 1682, + 1690, 1691, 1693, 1689, 1694, 1696, 1690, 1691, 1693, 1698, + 1696, 1699, 1698, 1694, 1700, 1700, 1702, 1703, 1706, 1704, + 1705, 1705, 1710, 1699, 1704, 1707, 1708, 1706, 1702, 1703, + 1707, 1708, 1709, 1709, 1711, 1712, 1713, 1714, 1717, 1715, + 1716, 1714, 1710, 1711, 1715, 1720, 1716, 1719, 1719, 1721, + 1722, 1722, 1717, 1712, 1724, 1713, 1723, 1725, 1721, 1719, + 1727, 1732, 1726, 1720, 1732, 1723, 1724, 1726, 1730, 1730, + 1733, 1734, 0, 1727, 1736, 1738, 1737, 1739, 1725, 1740, + 1740, 1738, 1741, 1746, 1741, 1743, 1733, 1734, 1745, 1736, + + 1737, 1742, 1742, 1743, 1739, 1745, 1747, 1747, 1748, 1749, + 1750, 1751, 1752, 1746, 1753, 1755, 1754, 1748, 1757, 1760, + 1758, 1755, 1750, 1751, 1752, 1759, 1759, 1761, 1764, 0, + 1749, 1754, 1758, 1762, 1755, 1768, 1762, 1760, 1757, 1763, + 1753, 1766, 1772, 1767, 1763, 1767, 1766, 1761, 1764, 1769, + 1770, 1772, 1774, 1768, 1769, 1775, 1776, 1770, 1777, 1778, + 1777, 1780, 1781, 1780, 1775, 1782, 1782, 1783, 1776, 1784, + 1774, 1785, 1786, 1785, 1784, 1787, 1781, 1786, 1778, 1788, + 1787, 1789, 1790, 1792, 1791, 1795, 1793, 1858, 1790, 1791, + 1800, 1796, 1799, 1783, 1793, 1858, 1792, 1788, 1797, 1797, + + 1801, 1789, 1798, 1798, 1795, 1796, 1801, 1799, 1802, 1803, + 1800, 1803, 1804, 1802, 1805, 1805, 1809, 1806, 1807, 1807, + 1804, 1808, 1808, 1810, 1811, 1809, 1811, 1812, 1804, 1806, + 1814, 1813, 1810, 1815, 1817, 1810, 1813, 1813, 1818, 1814, + 1821, 1822, 1819, 1818, 1825, 1815, 1817, 1819, 1812, 1823, + 1824, 1824, 1826, 1821, 1828, 1827, 1845, 1829, 1823, 1833, + 1834, 1822, 1825, 1831, 1832, 1834, 1842, 1844, 1828, 1835, + 1826, 1827, 1829, 1836, 1835, 1831, 1832, 1839, 1841, 1833, + 1843, 1845, 1836, 1839, 1841, 1844, 1847, 1847, 1846, 1842, + 1848, 1849, 1849, 1850, 1851, 1843, 1839, 1846, 1851, 1848, + + 1852, 1853, 1854, 1855, 1856, 1852, 1859, 1854, 1854, 1855, + 1856, 1867, 1850, 1857, 1853, 1864, 1857, 1862, 1862, 1863, + 1863, 1865, 1865, 1867, 1864, 1868, 1859, 1866, 1866, 1869, + 1877, 1870, 1871, 1871, 1863, 1869, 1870, 1872, 1872, 1873, + 1874, 1880, 1882, 1868, 1873, 1863, 1874, 1876, 1878, 1881, + 1877, 1876, 1878, 1883, 1881, 1884, 1885, 1886, 1887, 1887, + 1884, 1889, 1891, 1888, 1890, 1882, 1880, 1888, 1883, 1890, + 1892, 1893, 1894, 1886, 1885, 1896, 1889, 1894, 1895, 1897, + 1897, 1899, 1892, 1900, 1901, 1902, 1903, 1904, 1891, 1899, + 1893, 1895, 1905, 1896, 1907, 1906, 1909, 1910, 1910, 1912, + + 1913, 1911, 1900, 1901, 1911, 1914, 1904, 1906, 1902, 1918, + 1903, 1909, 1912, 1905, 1913, 1907, 1915, 1915, 1914, 1916, + 1916, 1917, 1917, 1919, 1918, 1920, 1920, 1923, 1921, 1922, + 1922, 1926, 1923, 1925, 1927, 1928, 1919, 1921, 1925, 1931, + 1921, 1929, 1929, 1930, 1930, 1932, 1932, 1928, 1933, 1934, + 1934, 1926, 1935, 0, 1927, 1936, 1937, 1937, 1931, 1939, + 1936, 1938, 1938, 1940, 1941, 1942, 1933, 1935, 1946, 1944, + 1945, 1945, 1940, 1939, 1944, 1947, 1947, 1948, 1941, 1949, + 1950, 1951, 1951, 1950, 1942, 1949, 1953, 1946, 1952, 1952, + 1955, 1954, 1956, 1956, 1958, 1948, 1959, 1951, 1960, 1961, + + 1962, 1962, 1963, 1961, 1968, 1953, 1954, 1964, 1965, 1955, + 1967, 1967, 1970, 1960, 1958, 1971, 1972, 1972, 1969, 1959, + 1973, 1963, 1964, 1965, 1968, 1969, 1970, 1975, 1974, 1973, + 1974, 1977, 1978, 1979, 1980, 1981, 1982, 1978, 1979, 1983, + 1984, 1971, 1990, 1977, 1983, 1986, 1987, 1975, 1981, 1988, + 1986, 1987, 1989, 1994, 1991, 1995, 1992, 1982, 1989, 1980, + 1991, 1992, 1993, 1990, 1988, 1997, 1984, 1993, 1995, 1996, + 1998, 1999, 1996, 2000, 1997, 2001, 2006, 2002, 1994, 1998, + 1999, 2003, 2000, 2002, 2004, 2008, 2010, 2003, 2004, 2001, + 2009, 2009, 2010, 2012, 2008, 2014, 2006, 2011, 2011, 2017, + + 2015, 2016, 2016, 2018, 2021, 2020, 2011, 2022, 2027, 2023, + 2042, 2014, 2018, 2012, 2017, 2012, 2015, 2020, 2028, 2026, + 2021, 2023, 2022, 2025, 2026, 2070, 2025, 2070, 2027, 2042, + 2028, 2029, 2029, 2030, 2030, 2032, 2032, 2033, 2034, 2035, + 2033, 2036, 2038, 2034, 0, 2035, 2040, 2036, 2037, 2037, + 2039, 2039, 2041, 2043, 2043, 2045, 2038, 2046, 2040, 2045, + 2046, 2047, 2047, 2048, 2049, 2050, 2041, 2051, 2048, 2052, + 2052, 2051, 2055, 2049, 2053, 2056, 2057, 2055, 2058, 2059, + 2060, 2061, 2062, 2059, 2063, 2050, 2061, 2053, 2062, 2064, + 2063, 2068, 2058, 2066, 2067, 2056, 2057, 2068, 2069, 2067, + + 2060, 2073, 2074, 2074, 2076, 2075, 2069, 2064, 2075, 2066, + 2077, 2077, 2079, 2080, 2081, 2073, 2079, 2082, 2082, 2080, + 2083, 2086, 2086, 2088, 2090, 2095, 2081, 2091, 2094, 2083, + 2076, 2096, 2097, 2094, 2098, 2098, 2096, 2097, 2090, 2100, + 2100, 2088, 2102, 2091, 2103, 2103, 2104, 2105, 2102, 2106, + 2112, 2095, 2108, 2109, 2106, 2110, 2110, 2113, 2114, 2112, + 2115, 2118, 2104, 2113, 2119, 2109, 2117, 2117, 2125, 2105, + 2125, 2108, 2121, 2121, 2123, 2115, 2114, 2122, 2122, 2123, + 2118, 2124, 2119, 2126, 2127, 2128, 2124, 2129, 2130, 2130, + 2131, 2131, 2129, 2132, 2132, 2133, 2133, 2126, 2127, 2134, + + 2135, 2136, 2137, 2137, 2139, 2128, 2136, 2138, 2138, 2140, + 2141, 2134, 2142, 2143, 2143, 2144, 2139, 2148, 2135, 2145, + 2145, 2140, 2146, 2146, 2147, 2149, 2150, 2151, 2142, 2148, + 2141, 2152, 2149, 2153, 2144, 2147, 2152, 2154, 2150, 2155, + 2155, 2156, 2157, 2158, 2164, 2159, 2160, 2151, 2161, 2167, + 2156, 2162, 2162, 2153, 2165, 2163, 2168, 2154, 2159, 2164, + 2169, 2171, 2161, 2158, 2163, 2174, 2174, 2167, 2157, 2165, + 2160, 2170, 2172, 2181, 2170, 2171, 2173, 2172, 2168, 2175, + 2175, 2173, 2182, 2169, 2176, 2176, 2178, 2178, 2180, 2180, + 2183, 2181, 2185, 2182, 2187, 2186, 2189, 2188, 2190, 2192, + + 2192, 2191, 2194, 2194, 2195, 2189, 2196, 2197, 2197, 2183, + 2201, 2199, 2185, 2186, 2202, 2196, 2187, 2188, 2190, 2191, + 2199, 2200, 2200, 2203, 2204, 2205, 2195, 2206, 2201, 2208, + 2203, 2207, 2202, 2209, 2209, 2210, 2210, 2212, 2211, 2204, + 2214, 2213, 2216, 2205, 2211, 2206, 2215, 2207, 2208, 2217, + 0, 2215, 2218, 2220, 2220, 2212, 2213, 2218, 2219, 2214, + 2219, 2221, 2216, 2221, 2222, 2222, 2224, 2226, 2227, 2217, + 2228, 2229, 2230, 2231, 2239, 2232, 2226, 2230, 2235, 2256, + 2236, 2238, 2228, 2236, 2256, 2224, 2241, 2227, 2237, 2237, + 2241, 2229, 2239, 2231, 2232, 2243, 2238, 2244, 2235, 2240, + + 2240, 2244, 2245, 2245, 2246, 2248, 2249, 2250, 2250, 2252, + 2243, 2253, 2253, 2254, 2255, 2255, 2257, 2246, 2258, 2258, + 2264, 2252, 2263, 2263, 2266, 2248, 2249, 2267, 2257, 2265, + 2265, 2271, 2254, 0, 2268, 2269, 2276, 2266, 2270, 2270, + 2267, 2276, 2264, 2268, 2269, 2277, 2271, 2273, 2273, 2278, + 2277, 2279, 2280, 2281, 2283, 2282, 2279, 0, 2285, 2288, + 2280, 2286, 2283, 2278, 2282, 2287, 2286, 2289, 2289, 2293, + 2287, 2291, 2281, 2285, 2288, 2290, 2290, 2292, 2291, 2294, + 2295, 2298, 2292, 2296, 2297, 2297, 2295, 2293, 2296, 2299, + 2300, 2300, 2301, 2301, 2299, 2304, 2298, 2294, 2305, 2305, + + 2306, 2307, 0, 2306, 2308, 2309, 2307, 2307, 2304, 2308, + 2309, 2310, 2311, 2312, 2313, 2314, 2311, 2310, 2312, 2315, + 2316, 2317, 2322, 2313, 2319, 2316, 2326, 2315, 2320, 2319, + 2314, 2320, 2324, 2317, 2322, 2325, 2327, 2324, 2328, 2329, + 2325, 2330, 2330, 2331, 2326, 2334, 2335, 2328, 2329, 2327, + 2336, 2338, 2331, 2337, 2337, 2342, 2339, 2340, 2341, 2341, + 2344, 2346, 2349, 2347, 2334, 2339, 2335, 2347, 2380, 2336, + 2338, 2380, 2340, 2350, 2342, 2344, 2348, 2348, 2351, 2350, + 2352, 2346, 2353, 2353, 2351, 2354, 2352, 2349, 2357, 2355, + 2358, 2360, 2361, 2354, 2355, 2360, 2362, 2357, 2364, 2364, + + 2365, 2365, 2372, 2358, 2366, 2366, 2361, 2368, 2368, 2370, + 2370, 2362, 2373, 2375, 2376, 2376, 2381, 2373, 2373, 2378, + 2378, 2383, 2372, 2379, 2379, 2385, 2386, 2386, 2389, 2381, + 2387, 2387, 2392, 2375, 2388, 2388, 2390, 2390, 2391, 2383, + 2393, 2394, 2396, 2389, 2400, 2385, 2396, 2394, 2395, 2395, + 2392, 2391, 2399, 2401, 2393, 2402, 2403, 2399, 2399, 2404, + 2405, 2410, 2403, 2412, 2406, 2404, 2410, 2400, 2406, 2407, + 2407, 2412, 2415, 2401, 2413, 2402, 2416, 2413, 2417, 2416, + 2419, 2418, 2420, 2422, 2422, 2405, 2418, 2421, 2423, 2426, + 0, 2424, 2427, 2427, 2435, 2417, 2417, 2415, 2419, 2424, + + 2425, 2421, 2420, 2428, 2428, 2425, 2425, 2423, 2426, 2429, + 2429, 2430, 2430, 2431, 2431, 2432, 2433, 2434, 2436, 2437, + 2435, 2433, 2438, 2440, 2440, 2441, 2442, 2436, 2441, 2444, + 2444, 2432, 2454, 2445, 2446, 2446, 2447, 2434, 2450, 2437, + 2445, 2447, 2438, 2451, 2442, 2449, 2449, 2450, 2452, 2457, + 2454, 2456, 2451, 2455, 2455, 2456, 2458, 2452, 2457, 2459, + 2460, 2461, 2466, 2466, 2459, 2459, 2467, 2469, 2470, 2473, + 2461, 2458, 2474, 2460, 2478, 2475, 2469, 2476, 2480, 2495, + 2470, 2474, 2482, 2476, 2467, 2483, 2478, 2482, 2484, 2484, + 2483, 2485, 2487, 2494, 2473, 2475, 2502, 2487, 2495, 2480, + + 2485, 2488, 2488, 2490, 2490, 2488, 2491, 2491, 2492, 2492, + 2493, 2496, 2498, 2494, 2502, 2499, 2496, 2500, 2498, 2493, + 2499, 2503, 2500, 2501, 2501, 2504, 2505, 2506, 2507, 2510, + 2504, 2508, 2508, 2506, 2511, 2512, 2514, 2514, 2516, 2517, + 2524, 2518, 2503, 2520, 2505, 2518, 2521, 2519, 2510, 2511, + 2522, 2516, 2517, 2507, 2526, 2512, 2519, 2523, 2522, 2520, + 2525, 2525, 2523, 2528, 2528, 2521, 2524, 2529, 2529, 2531, + 2533, 2533, 2535, 2526, 2538, 2536, 2537, 2540, 2540, 2538, + 2541, 2542, 2543, 2545, 2545, 2546, 2549, 2552, 2535, 2548, + 2531, 2536, 2537, 2556, 2548, 2550, 2550, 2551, 2551, 2546, + + 2541, 2543, 2553, 2553, 2542, 2554, 2555, 2552, 2549, 2558, + 2560, 2557, 2559, 2556, 2568, 2555, 2554, 2557, 2561, 2561, + 2562, 2567, 2553, 2562, 2559, 2563, 2563, 2573, 2558, 2569, + 2560, 2570, 2570, 2567, 2568, 2569, 2571, 2572, 2577, 2571, + 2583, 2575, 2576, 2572, 2578, 2573, 2575, 2576, 2579, 2584, + 2578, 2580, 2580, 2582, 2582, 2586, 2586, 2577, 2584, 2583, + 2587, 2587, 2588, 2589, 2590, 2579, 2579, 2588, 2599, 2590, + 2591, 2591, 2592, 2592, 2593, 2593, 2594, 2589, 2596, 2596, + 2601, 2594, 2602, 2603, 2604, 2604, 2607, 2599, 2606, 2606, + 2608, 2612, 2609, 2610, 2610, 2611, 2612, 2615, 2615, 2619, + + 2607, 2609, 2601, 2618, 2602, 2603, 2617, 2617, 2618, 2620, + 2608, 2621, 2622, 2619, 2611, 2620, 2623, 2623, 2626, 2624, + 2622, 2627, 2628, 2621, 2624, 2629, 2630, 2628, 2632, 2633, + 2634, 2635, 2630, 2637, 2636, 2643, 2632, 2629, 2626, 2638, + 2639, 2627, 2640, 2647, 2647, 2644, 0, 2640, 2633, 2637, + 2634, 2635, 2636, 2648, 2648, 2643, 2638, 2638, 2644, 2649, + 2662, 2639, 2669, 2649, 2653, 2653, 2655, 2655, 2656, 2656, + 2659, 2656, 2657, 2657, 2659, 2657, 2658, 2658, 2662, 2658, + 2661, 2661, 2663, 2665, 2666, 2666, 2670, 2669, 2665, 2672, + 2671, 2673, 2675, 2670, 2671, 2676, 2663, 2680, 2672, 2677, + + 2677, 2678, 2678, 2685, 2676, 2687, 2673, 2679, 2679, 2681, + 2675, 2682, 2680, 2683, 2681, 2684, 2686, 2688, 2683, 2683, + 2682, 2684, 2688, 2682, 2689, 2690, 2687, 2838, 2685, 2689, + 2692, 2686, 2691, 2691, 2838, 2692, 2695, 2695, 2698, 2698, + 2699, 2699, 2700, 2700, 2690, 2701, 2701, 2702, 2702, 2703, + 2703, 2704, 2704, 2706, 2707, 2707, 2708, 2712, 2710, 2711, + 2711, 2713, 2706, 2714, 2715, 2715, 2716, 2717, 2717, 2720, + 2721, 2722, 2712, 2721, 2713, 2714, 2708, 2710, 2723, 2723, + 2724, 2716, 2726, 2727, 2730, 2726, 2728, 2720, 2729, 2727, + 2731, 2732, 2743, 2729, 2734, 2743, 2748, 2722, 2724, 2752, + + 2728, 2745, 2745, 2730, 2746, 2746, 2749, 2732, 2731, 2734, + 2750, 2751, 2754, 2752, 2750, 2749, 2755, 2756, 2757, 2748, + 2757, 2758, 2756, 2759, 2759, 2760, 2761, 2755, 2762, 2764, + 2766, 2751, 2763, 2767, 2765, 2754, 2758, 2771, 2760, 2772, + 2772, 2770, 2866, 2773, 2866, 2761, 2762, 2778, 2763, 2765, + 2779, 2766, 2773, 2767, 2764, 2770, 2783, 2771, 2774, 2774, + 2775, 2775, 2776, 2776, 2777, 2777, 2778, 2781, 2780, 2782, + 2779, 2780, 2781, 2784, 2782, 2786, 2785, 2787, 2788, 2788, + 2789, 2783, 2785, 2790, 2790, 2792, 2794, 2799, 2784, 2786, + 2797, 2797, 2798, 2798, 2800, 2799, 2801, 2787, 2803, 2789, + + 2792, 2802, 2801, 2804, 2794, 2805, 2808, 2802, 2806, 2806, + 2811, 2810, 2803, 2800, 2811, 2813, 2804, 2814, 2815, 2816, + 2817, 2818, 2814, 2819, 2805, 2810, 2808, 2822, 2819, 2820, + 2823, 2825, 2816, 2817, 2820, 2813, 2825, 2815, 2824, 2824, + 2818, 2826, 2827, 2827, 2831, 2822, 2828, 2826, 2829, 2823, + 2830, 2828, 2832, 2829, 2833, 2830, 2834, 2834, 2832, 2833, + 2836, 2837, 2839, 2831, 2836, 2840, 2841, 2842, 2849, 2843, + 2844, 2844, 2841, 2846, 2846, 2850, 2847, 2851, 2848, 2856, + 2837, 2839, 2843, 2848, 2840, 2847, 2842, 2849, 2847, 2854, + 2851, 2852, 2852, 2853, 2850, 2857, 2857, 2858, 2853, 2859, + + 2859, 2861, 2854, 2860, 2860, 2856, 2861, 2862, 2863, 2864, + 2864, 2870, 2865, 2868, 2862, 2869, 2858, 2865, 2867, 2867, + 2868, 2871, 2869, 2872, 2874, 2874, 2871, 2863, 2875, 2877, + 2870, 2878, 2879, 2880, 2877, 2884, 2878, 2881, 2881, 2883, + 2883, 2885, 2872, 2886, 2886, 2887, 2887, 2875, 2888, 2890, + 2890, 2879, 2880, 2898, 2884, 2888, 2891, 2891, 2892, 2894, + 2885, 2897, 2899, 0, 2894, 2892, 2897, 2900, 2900, 2901, + 2901, 0, 2898, 0, 0, 0, 0, 0, 0, 0, + 0, 2899, 2905, 2905, 2905, 2905, 2905, 2905, 2905, 2906, + 2906, 2906, 2906, 2906, 2906, 2906, 2907, 2907, 2907, 2907, + + 2907, 2907, 2907, 2908, 2908, 2908, 2908, 2908, 2908, 2908, + 2909, 2909, 2909, 2909, 2909, 2909, 2909, 2911, 2911, 0, + 2911, 2911, 2911, 2911, 2912, 2912, 0, 0, 0, 2912, + 2912, 2913, 2913, 0, 0, 2913, 0, 2913, 2914, 0, + 0, 0, 0, 0, 2914, 2915, 2915, 0, 0, 0, + 2915, 2915, 2916, 0, 0, 0, 0, 0, 2916, 2917, + 2917, 0, 2917, 2917, 2917, 2917, 2918, 2918, 0, 2918, + 2918, 2918, 2918, 2904, 2904, 2904, 2904, 2904, 2904, 2904, + 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, + 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, + + 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, + 2904, 2904, 2904, 2904 } ; static yy_state_type yy_last_accepting_state; @@ -2816,7 +2863,7 @@ static void config_end_include(void) #define YY_NO_INPUT 1 #endif -#line 2818 "<stdout>" +#line 2865 "<stdout>" #define INITIAL 0 #define quotedstring 1 @@ -3030,7 +3077,7 @@ YY_DECL { #line 205 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -#line 3032 "<stdout>" +#line 3079 "<stdout>" while ( 1 ) /* loops until end-of-file is reached */ { @@ -3063,13 +3110,13 @@ yy_match: while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; - if ( yy_current_state >= 2845 ) + if ( yy_current_state >= 2905 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; ++yy_cp; } - while ( yy_base[yy_current_state] != 5552 ); + while ( yy_base[yy_current_state] != 5674 ); yy_find_action: yy_act = yy_accept[yy_current_state]; @@ -3294,1177 +3341,1202 @@ YY_RULE_SETUP case 40: YY_RULE_SETUP #line 248 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_USE_SYSTEMD) } +{ YDVAR(1, VAR_TLS_SESSION_TICKET_KEYS) } YY_BREAK case 41: YY_RULE_SETUP #line 249 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_DO_DAEMONIZE) } +{ YDVAR(1, VAR_TLS_CIPHERS) } YY_BREAK case 42: YY_RULE_SETUP #line 250 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_INTERFACE) } +{ YDVAR(1, VAR_TLS_CIPHERSUITES) } YY_BREAK case 43: YY_RULE_SETUP #line 251 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_INTERFACE) } +{ YDVAR(1, VAR_USE_SYSTEMD) } YY_BREAK case 44: YY_RULE_SETUP #line 252 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_OUTGOING_INTERFACE) } +{ YDVAR(1, VAR_DO_DAEMONIZE) } YY_BREAK case 45: YY_RULE_SETUP #line 253 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_INTERFACE_AUTOMATIC) } +{ YDVAR(1, VAR_INTERFACE) } YY_BREAK case 46: YY_RULE_SETUP #line 254 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_SO_RCVBUF) } +{ YDVAR(1, VAR_INTERFACE) } YY_BREAK case 47: YY_RULE_SETUP #line 255 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_SO_SNDBUF) } +{ YDVAR(1, VAR_OUTGOING_INTERFACE) } YY_BREAK case 48: YY_RULE_SETUP #line 256 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_SO_REUSEPORT) } +{ YDVAR(1, VAR_INTERFACE_AUTOMATIC) } YY_BREAK case 49: YY_RULE_SETUP #line 257 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_IP_TRANSPARENT) } +{ YDVAR(1, VAR_SO_RCVBUF) } YY_BREAK case 50: YY_RULE_SETUP #line 258 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_IP_FREEBIND) } +{ YDVAR(1, VAR_SO_SNDBUF) } YY_BREAK case 51: YY_RULE_SETUP #line 259 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_CHROOT) } +{ YDVAR(1, VAR_SO_REUSEPORT) } YY_BREAK case 52: YY_RULE_SETUP #line 260 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_USERNAME) } +{ YDVAR(1, VAR_IP_TRANSPARENT) } YY_BREAK case 53: YY_RULE_SETUP #line 261 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_DIRECTORY) } +{ YDVAR(1, VAR_IP_FREEBIND) } YY_BREAK case 54: YY_RULE_SETUP #line 262 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_LOGFILE) } +{ YDVAR(1, VAR_CHROOT) } YY_BREAK case 55: YY_RULE_SETUP #line 263 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_PIDFILE) } +{ YDVAR(1, VAR_USERNAME) } YY_BREAK case 56: YY_RULE_SETUP #line 264 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_ROOT_HINTS) } +{ YDVAR(1, VAR_DIRECTORY) } YY_BREAK case 57: YY_RULE_SETUP #line 265 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_EDNS_BUFFER_SIZE) } +{ YDVAR(1, VAR_LOGFILE) } YY_BREAK case 58: YY_RULE_SETUP #line 266 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_MSG_BUFFER_SIZE) } +{ YDVAR(1, VAR_PIDFILE) } YY_BREAK case 59: YY_RULE_SETUP #line 267 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_MSG_CACHE_SIZE) } +{ YDVAR(1, VAR_ROOT_HINTS) } YY_BREAK case 60: YY_RULE_SETUP #line 268 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_MSG_CACHE_SLABS) } +{ YDVAR(1, VAR_STREAM_WAIT_SIZE) } YY_BREAK case 61: YY_RULE_SETUP #line 269 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_RRSET_CACHE_SIZE) } +{ YDVAR(1, VAR_EDNS_BUFFER_SIZE) } YY_BREAK case 62: YY_RULE_SETUP #line 270 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_RRSET_CACHE_SLABS) } +{ YDVAR(1, VAR_MSG_BUFFER_SIZE) } YY_BREAK case 63: YY_RULE_SETUP #line 271 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_CACHE_MAX_TTL) } +{ YDVAR(1, VAR_MSG_CACHE_SIZE) } YY_BREAK case 64: YY_RULE_SETUP #line 272 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_CACHE_MAX_NEGATIVE_TTL) } +{ YDVAR(1, VAR_MSG_CACHE_SLABS) } YY_BREAK case 65: YY_RULE_SETUP #line 273 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_CACHE_MIN_TTL) } +{ YDVAR(1, VAR_RRSET_CACHE_SIZE) } YY_BREAK case 66: YY_RULE_SETUP #line 274 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_INFRA_HOST_TTL) } +{ YDVAR(1, VAR_RRSET_CACHE_SLABS) } YY_BREAK case 67: YY_RULE_SETUP #line 275 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_INFRA_LAME_TTL) } +{ YDVAR(1, VAR_CACHE_MAX_TTL) } YY_BREAK case 68: YY_RULE_SETUP #line 276 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_INFRA_CACHE_SLABS) } +{ YDVAR(1, VAR_CACHE_MAX_NEGATIVE_TTL) } YY_BREAK case 69: YY_RULE_SETUP #line 277 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_INFRA_CACHE_NUMHOSTS) } +{ YDVAR(1, VAR_CACHE_MIN_TTL) } YY_BREAK case 70: YY_RULE_SETUP #line 278 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_INFRA_CACHE_LAME_SIZE) } +{ YDVAR(1, VAR_INFRA_HOST_TTL) } YY_BREAK case 71: YY_RULE_SETUP #line 279 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_INFRA_CACHE_MIN_RTT) } +{ YDVAR(1, VAR_INFRA_LAME_TTL) } YY_BREAK case 72: YY_RULE_SETUP #line 280 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_NUM_QUERIES_PER_THREAD) } +{ YDVAR(1, VAR_INFRA_CACHE_SLABS) } YY_BREAK case 73: YY_RULE_SETUP #line 281 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_JOSTLE_TIMEOUT) } +{ YDVAR(1, VAR_INFRA_CACHE_NUMHOSTS) } YY_BREAK case 74: YY_RULE_SETUP #line 282 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_DELAY_CLOSE) } +{ YDVAR(1, VAR_INFRA_CACHE_LAME_SIZE) } YY_BREAK case 75: YY_RULE_SETUP #line 283 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_TARGET_FETCH_POLICY) } +{ YDVAR(1, VAR_INFRA_CACHE_MIN_RTT) } YY_BREAK case 76: YY_RULE_SETUP #line 284 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_HARDEN_SHORT_BUFSIZE) } +{ YDVAR(1, VAR_NUM_QUERIES_PER_THREAD) } YY_BREAK case 77: YY_RULE_SETUP #line 285 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_HARDEN_LARGE_QUERIES) } +{ YDVAR(1, VAR_JOSTLE_TIMEOUT) } YY_BREAK case 78: YY_RULE_SETUP #line 286 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_HARDEN_GLUE) } +{ YDVAR(1, VAR_DELAY_CLOSE) } YY_BREAK case 79: YY_RULE_SETUP #line 287 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_HARDEN_DNSSEC_STRIPPED) } +{ YDVAR(1, VAR_TARGET_FETCH_POLICY) } YY_BREAK case 80: YY_RULE_SETUP #line 288 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_HARDEN_BELOW_NXDOMAIN) } +{ YDVAR(1, VAR_HARDEN_SHORT_BUFSIZE) } YY_BREAK case 81: YY_RULE_SETUP #line 289 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_HARDEN_REFERRAL_PATH) } +{ YDVAR(1, VAR_HARDEN_LARGE_QUERIES) } YY_BREAK case 82: YY_RULE_SETUP #line 290 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_HARDEN_ALGO_DOWNGRADE) } +{ YDVAR(1, VAR_HARDEN_GLUE) } YY_BREAK case 83: YY_RULE_SETUP #line 291 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_USE_CAPS_FOR_ID) } +{ YDVAR(1, VAR_HARDEN_DNSSEC_STRIPPED) } YY_BREAK case 84: YY_RULE_SETUP #line 292 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_CAPS_WHITELIST) } +{ YDVAR(1, VAR_HARDEN_BELOW_NXDOMAIN) } YY_BREAK case 85: YY_RULE_SETUP #line 293 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_UNWANTED_REPLY_THRESHOLD) } +{ YDVAR(1, VAR_HARDEN_REFERRAL_PATH) } YY_BREAK case 86: YY_RULE_SETUP #line 294 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_PRIVATE_ADDRESS) } +{ YDVAR(1, VAR_HARDEN_ALGO_DOWNGRADE) } YY_BREAK case 87: YY_RULE_SETUP #line 295 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_PRIVATE_DOMAIN) } +{ YDVAR(1, VAR_USE_CAPS_FOR_ID) } YY_BREAK case 88: YY_RULE_SETUP #line 296 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_PREFETCH_KEY) } +{ YDVAR(1, VAR_CAPS_WHITELIST) } YY_BREAK case 89: YY_RULE_SETUP #line 297 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_PREFETCH) } +{ YDVAR(1, VAR_UNWANTED_REPLY_THRESHOLD) } YY_BREAK case 90: YY_RULE_SETUP #line 298 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_DENY_ANY) } +{ YDVAR(1, VAR_PRIVATE_ADDRESS) } YY_BREAK case 91: YY_RULE_SETUP #line 299 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(0, VAR_STUB_ZONE) } +{ YDVAR(1, VAR_PRIVATE_DOMAIN) } YY_BREAK case 92: YY_RULE_SETUP #line 300 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_NAME) } +{ YDVAR(1, VAR_PREFETCH_KEY) } YY_BREAK case 93: YY_RULE_SETUP #line 301 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_STUB_ADDR) } +{ YDVAR(1, VAR_PREFETCH) } YY_BREAK case 94: YY_RULE_SETUP #line 302 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_STUB_HOST) } +{ YDVAR(1, VAR_DENY_ANY) } YY_BREAK case 95: YY_RULE_SETUP #line 303 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_STUB_PRIME) } +{ YDVAR(0, VAR_STUB_ZONE) } YY_BREAK case 96: YY_RULE_SETUP #line 304 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_STUB_FIRST) } +{ YDVAR(1, VAR_NAME) } YY_BREAK case 97: YY_RULE_SETUP #line 305 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_STUB_NO_CACHE) } +{ YDVAR(1, VAR_STUB_ADDR) } YY_BREAK case 98: YY_RULE_SETUP #line 306 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_STUB_SSL_UPSTREAM) } +{ YDVAR(1, VAR_STUB_HOST) } YY_BREAK case 99: YY_RULE_SETUP #line 307 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_STUB_SSL_UPSTREAM) } +{ YDVAR(1, VAR_STUB_PRIME) } YY_BREAK case 100: YY_RULE_SETUP #line 308 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(0, VAR_FORWARD_ZONE) } +{ YDVAR(1, VAR_STUB_FIRST) } YY_BREAK case 101: YY_RULE_SETUP #line 309 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_FORWARD_ADDR) } +{ YDVAR(1, VAR_STUB_NO_CACHE) } YY_BREAK case 102: YY_RULE_SETUP #line 310 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_FORWARD_HOST) } +{ YDVAR(1, VAR_STUB_SSL_UPSTREAM) } YY_BREAK case 103: YY_RULE_SETUP #line 311 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_FORWARD_FIRST) } +{ YDVAR(1, VAR_STUB_SSL_UPSTREAM) } YY_BREAK case 104: YY_RULE_SETUP #line 312 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_FORWARD_NO_CACHE) } +{ YDVAR(0, VAR_FORWARD_ZONE) } YY_BREAK case 105: YY_RULE_SETUP #line 313 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) } +{ YDVAR(1, VAR_FORWARD_ADDR) } YY_BREAK case 106: YY_RULE_SETUP #line 314 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) } +{ YDVAR(1, VAR_FORWARD_HOST) } YY_BREAK case 107: YY_RULE_SETUP #line 315 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(0, VAR_AUTH_ZONE) } +{ YDVAR(1, VAR_FORWARD_FIRST) } YY_BREAK case 108: YY_RULE_SETUP #line 316 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_ZONEFILE) } +{ YDVAR(1, VAR_FORWARD_NO_CACHE) } YY_BREAK case 109: YY_RULE_SETUP #line 317 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_MASTER) } +{ YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) } YY_BREAK case 110: YY_RULE_SETUP #line 318 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_URL) } +{ YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) } YY_BREAK case 111: YY_RULE_SETUP #line 319 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_ALLOW_NOTIFY) } +{ YDVAR(0, VAR_AUTH_ZONE) } YY_BREAK case 112: YY_RULE_SETUP #line 320 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_FOR_DOWNSTREAM) } +{ YDVAR(1, VAR_ZONEFILE) } YY_BREAK case 113: YY_RULE_SETUP #line 321 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_FOR_UPSTREAM) } +{ YDVAR(1, VAR_MASTER) } YY_BREAK case 114: YY_RULE_SETUP #line 322 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_FALLBACK_ENABLED) } +{ YDVAR(1, VAR_URL) } YY_BREAK case 115: YY_RULE_SETUP #line 323 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(0, VAR_VIEW) } +{ YDVAR(1, VAR_ALLOW_NOTIFY) } YY_BREAK case 116: YY_RULE_SETUP #line 324 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_VIEW_FIRST) } +{ YDVAR(1, VAR_FOR_DOWNSTREAM) } YY_BREAK case 117: YY_RULE_SETUP #line 325 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_DO_NOT_QUERY_ADDRESS) } +{ YDVAR(1, VAR_FOR_UPSTREAM) } YY_BREAK case 118: YY_RULE_SETUP #line 326 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_DO_NOT_QUERY_LOCALHOST) } +{ YDVAR(1, VAR_FALLBACK_ENABLED) } YY_BREAK case 119: YY_RULE_SETUP #line 327 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(2, VAR_ACCESS_CONTROL) } +{ YDVAR(0, VAR_VIEW) } YY_BREAK case 120: YY_RULE_SETUP #line 328 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_SEND_CLIENT_SUBNET) } +{ YDVAR(1, VAR_VIEW_FIRST) } YY_BREAK case 121: YY_RULE_SETUP #line 329 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_CLIENT_SUBNET_ZONE) } +{ YDVAR(1, VAR_DO_NOT_QUERY_ADDRESS) } YY_BREAK case 122: YY_RULE_SETUP #line 330 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_CLIENT_SUBNET_ALWAYS_FORWARD) } +{ YDVAR(1, VAR_DO_NOT_QUERY_LOCALHOST) } YY_BREAK case 123: YY_RULE_SETUP #line 331 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_CLIENT_SUBNET_OPCODE) } +{ YDVAR(2, VAR_ACCESS_CONTROL) } YY_BREAK case 124: YY_RULE_SETUP #line 332 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_MAX_CLIENT_SUBNET_IPV4) } +{ YDVAR(1, VAR_SEND_CLIENT_SUBNET) } YY_BREAK case 125: YY_RULE_SETUP #line 333 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_MAX_CLIENT_SUBNET_IPV6) } +{ YDVAR(1, VAR_CLIENT_SUBNET_ZONE) } YY_BREAK case 126: YY_RULE_SETUP #line 334 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_MIN_CLIENT_SUBNET_IPV4) } +{ YDVAR(1, VAR_CLIENT_SUBNET_ALWAYS_FORWARD) } YY_BREAK case 127: YY_RULE_SETUP #line 335 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_MIN_CLIENT_SUBNET_IPV6) } +{ YDVAR(1, VAR_CLIENT_SUBNET_OPCODE) } YY_BREAK case 128: YY_RULE_SETUP #line 336 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_MAX_ECS_TREE_SIZE_IPV4) } +{ YDVAR(1, VAR_MAX_CLIENT_SUBNET_IPV4) } YY_BREAK case 129: YY_RULE_SETUP #line 337 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_MAX_ECS_TREE_SIZE_IPV6) } +{ YDVAR(1, VAR_MAX_CLIENT_SUBNET_IPV6) } YY_BREAK case 130: YY_RULE_SETUP #line 338 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_HIDE_IDENTITY) } +{ YDVAR(1, VAR_MIN_CLIENT_SUBNET_IPV4) } YY_BREAK case 131: YY_RULE_SETUP #line 339 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_HIDE_VERSION) } +{ YDVAR(1, VAR_MIN_CLIENT_SUBNET_IPV6) } YY_BREAK case 132: YY_RULE_SETUP #line 340 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_HIDE_TRUSTANCHOR) } +{ YDVAR(1, VAR_MAX_ECS_TREE_SIZE_IPV4) } YY_BREAK case 133: YY_RULE_SETUP #line 341 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_IDENTITY) } +{ YDVAR(1, VAR_MAX_ECS_TREE_SIZE_IPV6) } YY_BREAK case 134: YY_RULE_SETUP #line 342 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_VERSION) } +{ YDVAR(1, VAR_HIDE_IDENTITY) } YY_BREAK case 135: YY_RULE_SETUP #line 343 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_MODULE_CONF) } +{ YDVAR(1, VAR_HIDE_VERSION) } YY_BREAK case 136: YY_RULE_SETUP #line 344 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_DLV_ANCHOR) } +{ YDVAR(1, VAR_HIDE_TRUSTANCHOR) } YY_BREAK case 137: YY_RULE_SETUP #line 345 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_DLV_ANCHOR_FILE) } +{ YDVAR(1, VAR_IDENTITY) } YY_BREAK case 138: YY_RULE_SETUP #line 346 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_TRUST_ANCHOR_FILE) } +{ YDVAR(1, VAR_VERSION) } YY_BREAK case 139: YY_RULE_SETUP #line 347 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_AUTO_TRUST_ANCHOR_FILE) } +{ YDVAR(1, VAR_MODULE_CONF) } YY_BREAK case 140: YY_RULE_SETUP #line 348 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_TRUSTED_KEYS_FILE) } +{ YDVAR(1, VAR_DLV_ANCHOR) } YY_BREAK case 141: YY_RULE_SETUP #line 349 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_TRUST_ANCHOR) } +{ YDVAR(1, VAR_DLV_ANCHOR_FILE) } YY_BREAK case 142: YY_RULE_SETUP #line 350 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_TRUST_ANCHOR_SIGNALING) } +{ YDVAR(1, VAR_TRUST_ANCHOR_FILE) } YY_BREAK case 143: YY_RULE_SETUP #line 351 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_ROOT_KEY_SENTINEL) } +{ YDVAR(1, VAR_AUTO_TRUST_ANCHOR_FILE) } YY_BREAK case 144: YY_RULE_SETUP #line 352 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_VAL_OVERRIDE_DATE) } +{ YDVAR(1, VAR_TRUSTED_KEYS_FILE) } YY_BREAK case 145: YY_RULE_SETUP #line 353 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_VAL_SIG_SKEW_MIN) } +{ YDVAR(1, VAR_TRUST_ANCHOR) } YY_BREAK case 146: YY_RULE_SETUP #line 354 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_VAL_SIG_SKEW_MAX) } +{ YDVAR(1, VAR_TRUST_ANCHOR_SIGNALING) } YY_BREAK case 147: YY_RULE_SETUP #line 355 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_BOGUS_TTL) } +{ YDVAR(1, VAR_ROOT_KEY_SENTINEL) } YY_BREAK case 148: YY_RULE_SETUP #line 356 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_VAL_CLEAN_ADDITIONAL) } +{ YDVAR(1, VAR_VAL_OVERRIDE_DATE) } YY_BREAK case 149: YY_RULE_SETUP #line 357 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_VAL_PERMISSIVE_MODE) } +{ YDVAR(1, VAR_VAL_SIG_SKEW_MIN) } YY_BREAK case 150: YY_RULE_SETUP #line 358 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_AGGRESSIVE_NSEC) } +{ YDVAR(1, VAR_VAL_SIG_SKEW_MAX) } YY_BREAK case 151: YY_RULE_SETUP #line 359 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_IGNORE_CD_FLAG) } +{ YDVAR(1, VAR_BOGUS_TTL) } YY_BREAK case 152: YY_RULE_SETUP #line 360 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_SERVE_EXPIRED) } +{ YDVAR(1, VAR_VAL_CLEAN_ADDITIONAL) } YY_BREAK case 153: YY_RULE_SETUP #line 361 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_SERVE_EXPIRED_TTL) } +{ YDVAR(1, VAR_VAL_PERMISSIVE_MODE) } YY_BREAK case 154: YY_RULE_SETUP #line 362 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_SERVE_EXPIRED_TTL_RESET) } +{ YDVAR(1, VAR_AGGRESSIVE_NSEC) } YY_BREAK case 155: YY_RULE_SETUP #line 363 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_FAKE_DSA) } +{ YDVAR(1, VAR_IGNORE_CD_FLAG) } YY_BREAK case 156: YY_RULE_SETUP #line 364 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_FAKE_SHA1) } +{ YDVAR(1, VAR_SERVE_EXPIRED) } YY_BREAK case 157: YY_RULE_SETUP #line 365 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_VAL_LOG_LEVEL) } +{ YDVAR(1, VAR_SERVE_EXPIRED_TTL) } YY_BREAK case 158: YY_RULE_SETUP #line 366 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_KEY_CACHE_SIZE) } +{ YDVAR(1, VAR_SERVE_EXPIRED_TTL_RESET) } YY_BREAK case 159: YY_RULE_SETUP #line 367 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_KEY_CACHE_SLABS) } +{ YDVAR(1, VAR_FAKE_DSA) } YY_BREAK case 160: YY_RULE_SETUP #line 368 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_NEG_CACHE_SIZE) } +{ YDVAR(1, VAR_FAKE_SHA1) } YY_BREAK case 161: YY_RULE_SETUP #line 369 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ - YDVAR(1, VAR_VAL_NSEC3_KEYSIZE_ITERATIONS) } +{ YDVAR(1, VAR_VAL_LOG_LEVEL) } YY_BREAK case 162: YY_RULE_SETUP -#line 371 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_ADD_HOLDDOWN) } +#line 370 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +{ YDVAR(1, VAR_KEY_CACHE_SIZE) } YY_BREAK case 163: YY_RULE_SETUP -#line 372 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_DEL_HOLDDOWN) } +#line 371 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +{ YDVAR(1, VAR_KEY_CACHE_SLABS) } YY_BREAK case 164: YY_RULE_SETUP -#line 373 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_KEEP_MISSING) } +#line 372 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +{ YDVAR(1, VAR_NEG_CACHE_SIZE) } YY_BREAK case 165: YY_RULE_SETUP -#line 374 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_PERMIT_SMALL_HOLDDOWN) } +#line 373 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +{ + YDVAR(1, VAR_VAL_NSEC3_KEYSIZE_ITERATIONS) } YY_BREAK case 166: YY_RULE_SETUP #line 375 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_USE_SYSLOG) } +{ YDVAR(1, VAR_ADD_HOLDDOWN) } YY_BREAK case 167: YY_RULE_SETUP #line 376 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_LOG_IDENTITY) } +{ YDVAR(1, VAR_DEL_HOLDDOWN) } YY_BREAK case 168: YY_RULE_SETUP #line 377 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_LOG_TIME_ASCII) } +{ YDVAR(1, VAR_KEEP_MISSING) } YY_BREAK case 169: YY_RULE_SETUP #line 378 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_LOG_QUERIES) } +{ YDVAR(1, VAR_PERMIT_SMALL_HOLDDOWN) } YY_BREAK case 170: YY_RULE_SETUP #line 379 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_LOG_REPLIES) } +{ YDVAR(1, VAR_USE_SYSLOG) } YY_BREAK case 171: YY_RULE_SETUP #line 380 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_LOG_LOCAL_ACTIONS) } +{ YDVAR(1, VAR_LOG_IDENTITY) } YY_BREAK case 172: YY_RULE_SETUP #line 381 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_LOG_SERVFAIL) } +{ YDVAR(1, VAR_LOG_TIME_ASCII) } YY_BREAK case 173: YY_RULE_SETUP #line 382 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(2, VAR_LOCAL_ZONE) } +{ YDVAR(1, VAR_LOG_QUERIES) } YY_BREAK case 174: YY_RULE_SETUP #line 383 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_LOCAL_DATA) } +{ YDVAR(1, VAR_LOG_REPLIES) } YY_BREAK case 175: YY_RULE_SETUP #line 384 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_LOCAL_DATA_PTR) } +{ YDVAR(1, VAR_LOG_TAG_QUERYREPLY) } YY_BREAK case 176: YY_RULE_SETUP #line 385 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_UNBLOCK_LAN_ZONES) } +{ YDVAR(1, VAR_LOG_LOCAL_ACTIONS) } YY_BREAK case 177: YY_RULE_SETUP #line 386 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_INSECURE_LAN_ZONES) } +{ YDVAR(1, VAR_LOG_SERVFAIL) } YY_BREAK case 178: YY_RULE_SETUP #line 387 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_STATISTICS_INTERVAL) } +{ YDVAR(2, VAR_LOCAL_ZONE) } YY_BREAK case 179: YY_RULE_SETUP #line 388 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_STATISTICS_CUMULATIVE) } +{ YDVAR(1, VAR_LOCAL_DATA) } YY_BREAK case 180: YY_RULE_SETUP #line 389 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_EXTENDED_STATISTICS) } +{ YDVAR(1, VAR_LOCAL_DATA_PTR) } YY_BREAK case 181: YY_RULE_SETUP #line 390 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_SHM_ENABLE) } +{ YDVAR(1, VAR_UNBLOCK_LAN_ZONES) } YY_BREAK case 182: YY_RULE_SETUP #line 391 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_SHM_KEY) } +{ YDVAR(1, VAR_INSECURE_LAN_ZONES) } YY_BREAK case 183: YY_RULE_SETUP #line 392 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(0, VAR_REMOTE_CONTROL) } +{ YDVAR(1, VAR_STATISTICS_INTERVAL) } YY_BREAK case 184: YY_RULE_SETUP #line 393 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_CONTROL_ENABLE) } +{ YDVAR(1, VAR_STATISTICS_CUMULATIVE) } YY_BREAK case 185: YY_RULE_SETUP #line 394 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_CONTROL_INTERFACE) } +{ YDVAR(1, VAR_EXTENDED_STATISTICS) } YY_BREAK case 186: YY_RULE_SETUP #line 395 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_CONTROL_PORT) } +{ YDVAR(1, VAR_SHM_ENABLE) } YY_BREAK case 187: YY_RULE_SETUP #line 396 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_CONTROL_USE_CERT) } +{ YDVAR(1, VAR_SHM_KEY) } YY_BREAK case 188: YY_RULE_SETUP #line 397 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_SERVER_KEY_FILE) } +{ YDVAR(0, VAR_REMOTE_CONTROL) } YY_BREAK case 189: YY_RULE_SETUP #line 398 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_SERVER_CERT_FILE) } +{ YDVAR(1, VAR_CONTROL_ENABLE) } YY_BREAK case 190: YY_RULE_SETUP #line 399 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_CONTROL_KEY_FILE) } +{ YDVAR(1, VAR_CONTROL_INTERFACE) } YY_BREAK case 191: YY_RULE_SETUP #line 400 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_CONTROL_CERT_FILE) } +{ YDVAR(1, VAR_CONTROL_PORT) } YY_BREAK case 192: YY_RULE_SETUP #line 401 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_PYTHON_SCRIPT) } +{ YDVAR(1, VAR_CONTROL_USE_CERT) } YY_BREAK case 193: YY_RULE_SETUP #line 402 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(0, VAR_PYTHON) } +{ YDVAR(1, VAR_SERVER_KEY_FILE) } YY_BREAK case 194: YY_RULE_SETUP #line 403 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_DOMAIN_INSECURE) } +{ YDVAR(1, VAR_SERVER_CERT_FILE) } YY_BREAK case 195: YY_RULE_SETUP #line 404 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_MINIMAL_RESPONSES) } +{ YDVAR(1, VAR_CONTROL_KEY_FILE) } YY_BREAK case 196: YY_RULE_SETUP #line 405 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_RRSET_ROUNDROBIN) } +{ YDVAR(1, VAR_CONTROL_CERT_FILE) } YY_BREAK case 197: YY_RULE_SETUP #line 406 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_UNKNOWN_SERVER_TIME_LIMIT) } +{ YDVAR(1, VAR_PYTHON_SCRIPT) } YY_BREAK case 198: YY_RULE_SETUP #line 407 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_MAX_UDP_SIZE) } +{ YDVAR(0, VAR_PYTHON) } YY_BREAK case 199: YY_RULE_SETUP #line 408 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_DNS64_PREFIX) } +{ YDVAR(1, VAR_DOMAIN_INSECURE) } YY_BREAK case 200: YY_RULE_SETUP #line 409 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_DNS64_SYNTHALL) } +{ YDVAR(1, VAR_MINIMAL_RESPONSES) } YY_BREAK case 201: YY_RULE_SETUP #line 410 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_DNS64_IGNORE_AAAA) } +{ YDVAR(1, VAR_RRSET_ROUNDROBIN) } YY_BREAK case 202: YY_RULE_SETUP #line 411 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_DEFINE_TAG) } +{ YDVAR(1, VAR_UNKNOWN_SERVER_TIME_LIMIT) } YY_BREAK case 203: YY_RULE_SETUP #line 412 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(2, VAR_LOCAL_ZONE_TAG) } +{ YDVAR(1, VAR_MAX_UDP_SIZE) } YY_BREAK case 204: YY_RULE_SETUP #line 413 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(2, VAR_ACCESS_CONTROL_TAG) } +{ YDVAR(1, VAR_DNS64_PREFIX) } YY_BREAK case 205: YY_RULE_SETUP #line 414 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(3, VAR_ACCESS_CONTROL_TAG_ACTION) } +{ YDVAR(1, VAR_DNS64_SYNTHALL) } YY_BREAK case 206: YY_RULE_SETUP #line 415 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(3, VAR_ACCESS_CONTROL_TAG_DATA) } +{ YDVAR(1, VAR_DNS64_IGNORE_AAAA) } YY_BREAK case 207: YY_RULE_SETUP #line 416 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(2, VAR_ACCESS_CONTROL_VIEW) } +{ YDVAR(1, VAR_DEFINE_TAG) } YY_BREAK case 208: YY_RULE_SETUP #line 417 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(3, VAR_LOCAL_ZONE_OVERRIDE) } +{ YDVAR(2, VAR_LOCAL_ZONE_TAG) } YY_BREAK case 209: YY_RULE_SETUP #line 418 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(0, VAR_DNSTAP) } +{ YDVAR(2, VAR_ACCESS_CONTROL_TAG) } YY_BREAK case 210: YY_RULE_SETUP #line 419 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_DNSTAP_ENABLE) } +{ YDVAR(3, VAR_ACCESS_CONTROL_TAG_ACTION) } YY_BREAK case 211: YY_RULE_SETUP #line 420 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_DNSTAP_SOCKET_PATH) } +{ YDVAR(3, VAR_ACCESS_CONTROL_TAG_DATA) } YY_BREAK case 212: YY_RULE_SETUP #line 421 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_DNSTAP_SEND_IDENTITY) } +{ YDVAR(2, VAR_ACCESS_CONTROL_VIEW) } YY_BREAK case 213: YY_RULE_SETUP #line 422 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_DNSTAP_SEND_VERSION) } +{ YDVAR(3, VAR_LOCAL_ZONE_OVERRIDE) } YY_BREAK case 214: YY_RULE_SETUP #line 423 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_DNSTAP_IDENTITY) } +{ YDVAR(0, VAR_DNSTAP) } YY_BREAK case 215: YY_RULE_SETUP #line 424 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_DNSTAP_VERSION) } +{ YDVAR(1, VAR_DNSTAP_ENABLE) } YY_BREAK case 216: YY_RULE_SETUP #line 425 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ - YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_QUERY_MESSAGES) } +{ YDVAR(1, VAR_DNSTAP_SOCKET_PATH) } YY_BREAK case 217: YY_RULE_SETUP -#line 427 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ - YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_RESPONSE_MESSAGES) } +#line 426 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +{ YDVAR(1, VAR_DNSTAP_SEND_IDENTITY) } YY_BREAK case 218: YY_RULE_SETUP -#line 429 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ - YDVAR(1, VAR_DNSTAP_LOG_CLIENT_QUERY_MESSAGES) } +#line 427 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +{ YDVAR(1, VAR_DNSTAP_SEND_VERSION) } YY_BREAK case 219: YY_RULE_SETUP -#line 431 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ - YDVAR(1, VAR_DNSTAP_LOG_CLIENT_RESPONSE_MESSAGES) } +#line 428 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +{ YDVAR(1, VAR_DNSTAP_IDENTITY) } YY_BREAK case 220: YY_RULE_SETUP -#line 433 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ - YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_QUERY_MESSAGES) } +#line 429 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +{ YDVAR(1, VAR_DNSTAP_VERSION) } YY_BREAK case 221: YY_RULE_SETUP -#line 435 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +#line 430 "/usr/src/usr.sbin/unbound/util/configlexer.lex" { - YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MESSAGES) } + YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_QUERY_MESSAGES) } YY_BREAK case 222: YY_RULE_SETUP -#line 437 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_DISABLE_DNSSEC_LAME_CHECK) } +#line 432 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +{ + YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_RESPONSE_MESSAGES) } YY_BREAK case 223: YY_RULE_SETUP -#line 438 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_IP_RATELIMIT) } +#line 434 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +{ + YDVAR(1, VAR_DNSTAP_LOG_CLIENT_QUERY_MESSAGES) } YY_BREAK case 224: YY_RULE_SETUP -#line 439 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_RATELIMIT) } +#line 436 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +{ + YDVAR(1, VAR_DNSTAP_LOG_CLIENT_RESPONSE_MESSAGES) } YY_BREAK case 225: YY_RULE_SETUP -#line 440 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_IP_RATELIMIT_SLABS) } +#line 438 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +{ + YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_QUERY_MESSAGES) } YY_BREAK case 226: YY_RULE_SETUP -#line 441 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_RATELIMIT_SLABS) } +#line 440 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +{ + YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MESSAGES) } YY_BREAK case 227: YY_RULE_SETUP #line 442 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_IP_RATELIMIT_SIZE) } +{ YDVAR(1, VAR_DISABLE_DNSSEC_LAME_CHECK) } YY_BREAK case 228: YY_RULE_SETUP #line 443 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_RATELIMIT_SIZE) } +{ YDVAR(1, VAR_IP_RATELIMIT) } YY_BREAK case 229: YY_RULE_SETUP #line 444 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(2, VAR_RATELIMIT_FOR_DOMAIN) } +{ YDVAR(1, VAR_RATELIMIT) } YY_BREAK case 230: YY_RULE_SETUP #line 445 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(2, VAR_RATELIMIT_BELOW_DOMAIN) } +{ YDVAR(1, VAR_IP_RATELIMIT_SLABS) } YY_BREAK case 231: YY_RULE_SETUP #line 446 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_IP_RATELIMIT_FACTOR) } +{ YDVAR(1, VAR_RATELIMIT_SLABS) } YY_BREAK case 232: YY_RULE_SETUP #line 447 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_RATELIMIT_FACTOR) } +{ YDVAR(1, VAR_IP_RATELIMIT_SIZE) } YY_BREAK case 233: YY_RULE_SETUP #line 448 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_LOW_RTT) } +{ YDVAR(1, VAR_RATELIMIT_SIZE) } YY_BREAK case 234: YY_RULE_SETUP #line 449 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_FAST_SERVER_NUM) } +{ YDVAR(2, VAR_RATELIMIT_FOR_DOMAIN) } YY_BREAK case 235: YY_RULE_SETUP #line 450 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_FAST_SERVER_PERMIL) } +{ YDVAR(2, VAR_RATELIMIT_BELOW_DOMAIN) } YY_BREAK case 236: YY_RULE_SETUP #line 451 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_FAST_SERVER_PERMIL) } +{ YDVAR(1, VAR_IP_RATELIMIT_FACTOR) } YY_BREAK case 237: YY_RULE_SETUP #line 452 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_FAST_SERVER_PERMIL) } +{ YDVAR(1, VAR_RATELIMIT_FACTOR) } YY_BREAK case 238: YY_RULE_SETUP #line 453 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(2, VAR_RESPONSE_IP_TAG) } +{ YDVAR(1, VAR_LOW_RTT) } YY_BREAK case 239: YY_RULE_SETUP #line 454 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(2, VAR_RESPONSE_IP) } +{ YDVAR(1, VAR_FAST_SERVER_NUM) } YY_BREAK case 240: YY_RULE_SETUP #line 455 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(2, VAR_RESPONSE_IP_DATA) } +{ YDVAR(1, VAR_FAST_SERVER_PERMIL) } YY_BREAK case 241: YY_RULE_SETUP #line 456 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(0, VAR_DNSCRYPT) } +{ YDVAR(1, VAR_FAST_SERVER_PERMIL) } YY_BREAK case 242: YY_RULE_SETUP #line 457 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_DNSCRYPT_ENABLE) } +{ YDVAR(1, VAR_FAST_SERVER_PERMIL) } YY_BREAK case 243: YY_RULE_SETUP #line 458 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_DNSCRYPT_PORT) } +{ YDVAR(2, VAR_RESPONSE_IP_TAG) } YY_BREAK case 244: YY_RULE_SETUP #line 459 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_DNSCRYPT_PROVIDER) } +{ YDVAR(2, VAR_RESPONSE_IP) } YY_BREAK case 245: YY_RULE_SETUP #line 460 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_DNSCRYPT_SECRET_KEY) } +{ YDVAR(2, VAR_RESPONSE_IP_DATA) } YY_BREAK case 246: YY_RULE_SETUP #line 461 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_DNSCRYPT_PROVIDER_CERT) } +{ YDVAR(0, VAR_DNSCRYPT) } YY_BREAK case 247: YY_RULE_SETUP #line 462 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_DNSCRYPT_PROVIDER_CERT_ROTATED) } +{ YDVAR(1, VAR_DNSCRYPT_ENABLE) } YY_BREAK case 248: YY_RULE_SETUP #line 463 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ - YDVAR(1, VAR_DNSCRYPT_SHARED_SECRET_CACHE_SIZE) } +{ YDVAR(1, VAR_DNSCRYPT_PORT) } YY_BREAK case 249: YY_RULE_SETUP -#line 465 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ - YDVAR(1, VAR_DNSCRYPT_SHARED_SECRET_CACHE_SLABS) } +#line 464 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +{ YDVAR(1, VAR_DNSCRYPT_PROVIDER) } YY_BREAK case 250: YY_RULE_SETUP -#line 467 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_DNSCRYPT_NONCE_CACHE_SIZE) } +#line 465 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +{ YDVAR(1, VAR_DNSCRYPT_SECRET_KEY) } YY_BREAK case 251: YY_RULE_SETUP -#line 468 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_DNSCRYPT_NONCE_CACHE_SLABS) } +#line 466 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +{ YDVAR(1, VAR_DNSCRYPT_PROVIDER_CERT) } YY_BREAK case 252: YY_RULE_SETUP -#line 469 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_IPSECMOD_ENABLED) } +#line 467 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +{ YDVAR(1, VAR_DNSCRYPT_PROVIDER_CERT_ROTATED) } YY_BREAK case 253: YY_RULE_SETUP -#line 470 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_IPSECMOD_IGNORE_BOGUS) } +#line 468 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +{ + YDVAR(1, VAR_DNSCRYPT_SHARED_SECRET_CACHE_SIZE) } YY_BREAK case 254: YY_RULE_SETUP -#line 471 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_IPSECMOD_HOOK) } +#line 470 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +{ + YDVAR(1, VAR_DNSCRYPT_SHARED_SECRET_CACHE_SLABS) } YY_BREAK case 255: YY_RULE_SETUP #line 472 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_IPSECMOD_MAX_TTL) } +{ YDVAR(1, VAR_DNSCRYPT_NONCE_CACHE_SIZE) } YY_BREAK case 256: YY_RULE_SETUP #line 473 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_IPSECMOD_WHITELIST) } +{ YDVAR(1, VAR_DNSCRYPT_NONCE_CACHE_SLABS) } YY_BREAK case 257: YY_RULE_SETUP #line 474 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_IPSECMOD_STRICT) } +{ YDVAR(1, VAR_IPSECMOD_ENABLED) } YY_BREAK case 258: YY_RULE_SETUP #line 475 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(0, VAR_CACHEDB) } +{ YDVAR(1, VAR_IPSECMOD_IGNORE_BOGUS) } YY_BREAK case 259: YY_RULE_SETUP #line 476 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_CACHEDB_BACKEND) } +{ YDVAR(1, VAR_IPSECMOD_HOOK) } YY_BREAK case 260: YY_RULE_SETUP #line 477 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_CACHEDB_SECRETSEED) } +{ YDVAR(1, VAR_IPSECMOD_MAX_TTL) } YY_BREAK case 261: YY_RULE_SETUP #line 478 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_CACHEDB_REDISHOST) } +{ YDVAR(1, VAR_IPSECMOD_WHITELIST) } YY_BREAK case 262: YY_RULE_SETUP #line 479 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_CACHEDB_REDISPORT) } +{ YDVAR(1, VAR_IPSECMOD_STRICT) } YY_BREAK case 263: YY_RULE_SETUP #line 480 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_CACHEDB_REDISTIMEOUT) } +{ YDVAR(0, VAR_CACHEDB) } YY_BREAK case 264: YY_RULE_SETUP #line 481 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(1, VAR_UDP_UPSTREAM_WITHOUT_DOWNSTREAM) } +{ YDVAR(1, VAR_CACHEDB_BACKEND) } YY_BREAK case 265: YY_RULE_SETUP #line 482 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ YDVAR(2, VAR_TCP_CONNECTION_LIMIT) } +{ YDVAR(1, VAR_CACHEDB_SECRETSEED) } YY_BREAK case 266: -/* rule 266 can match eol */ YY_RULE_SETUP #line 483 "/usr/src/usr.sbin/unbound/util/configlexer.lex" -{ LEXOUT(("NL\n")); cfg_parser->line++; } +{ YDVAR(1, VAR_CACHEDB_REDISHOST) } YY_BREAK -/* Quoted strings. Strip leading and ending quotes */ case 267: YY_RULE_SETUP +#line 484 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +{ YDVAR(1, VAR_CACHEDB_REDISPORT) } + YY_BREAK +case 268: +YY_RULE_SETUP +#line 485 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +{ YDVAR(1, VAR_CACHEDB_REDISTIMEOUT) } + YY_BREAK +case 269: +YY_RULE_SETUP #line 486 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +{ YDVAR(1, VAR_UDP_UPSTREAM_WITHOUT_DOWNSTREAM) } + YY_BREAK +case 270: +YY_RULE_SETUP +#line 487 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +{ YDVAR(2, VAR_TCP_CONNECTION_LIMIT) } + YY_BREAK +case 271: +/* rule 271 can match eol */ +YY_RULE_SETUP +#line 488 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +{ LEXOUT(("NL\n")); cfg_parser->line++; } + YY_BREAK +/* Quoted strings. Strip leading and ending quotes */ +case 272: +YY_RULE_SETUP +#line 491 "/usr/src/usr.sbin/unbound/util/configlexer.lex" { BEGIN(quotedstring); LEXOUT(("QS ")); } YY_BREAK case YY_STATE_EOF(quotedstring): -#line 487 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +#line 492 "/usr/src/usr.sbin/unbound/util/configlexer.lex" { yyerror("EOF inside quoted string"); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } } YY_BREAK -case 268: +case 273: YY_RULE_SETUP -#line 492 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +#line 497 "/usr/src/usr.sbin/unbound/util/configlexer.lex" { LEXOUT(("STR(%s) ", yytext)); yymore(); } YY_BREAK -case 269: -/* rule 269 can match eol */ +case 274: +/* rule 274 can match eol */ YY_RULE_SETUP -#line 493 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +#line 498 "/usr/src/usr.sbin/unbound/util/configlexer.lex" { yyerror("newline inside quoted string, no end \""); cfg_parser->line++; BEGIN(INITIAL); } YY_BREAK -case 270: +case 275: YY_RULE_SETUP -#line 495 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +#line 500 "/usr/src/usr.sbin/unbound/util/configlexer.lex" { LEXOUT(("QE ")); if(--num_args == 0) { BEGIN(INITIAL); } @@ -4477,34 +4549,34 @@ YY_RULE_SETUP } YY_BREAK /* Single Quoted strings. Strip leading and ending quotes */ -case 271: +case 276: YY_RULE_SETUP -#line 507 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +#line 512 "/usr/src/usr.sbin/unbound/util/configlexer.lex" { BEGIN(singlequotedstr); LEXOUT(("SQS ")); } YY_BREAK case YY_STATE_EOF(singlequotedstr): -#line 508 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +#line 513 "/usr/src/usr.sbin/unbound/util/configlexer.lex" { yyerror("EOF inside quoted string"); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } } YY_BREAK -case 272: +case 277: YY_RULE_SETUP -#line 513 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +#line 518 "/usr/src/usr.sbin/unbound/util/configlexer.lex" { LEXOUT(("STR(%s) ", yytext)); yymore(); } YY_BREAK -case 273: -/* rule 273 can match eol */ +case 278: +/* rule 278 can match eol */ YY_RULE_SETUP -#line 514 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +#line 519 "/usr/src/usr.sbin/unbound/util/configlexer.lex" { yyerror("newline inside quoted string, no end '"); cfg_parser->line++; BEGIN(INITIAL); } YY_BREAK -case 274: +case 279: YY_RULE_SETUP -#line 516 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +#line 521 "/usr/src/usr.sbin/unbound/util/configlexer.lex" { LEXOUT(("SQE ")); if(--num_args == 0) { BEGIN(INITIAL); } @@ -4517,38 +4589,38 @@ YY_RULE_SETUP } YY_BREAK /* include: directive */ -case 275: +case 280: YY_RULE_SETUP -#line 528 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +#line 533 "/usr/src/usr.sbin/unbound/util/configlexer.lex" { LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include); } YY_BREAK case YY_STATE_EOF(include): -#line 530 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +#line 535 "/usr/src/usr.sbin/unbound/util/configlexer.lex" { yyerror("EOF inside include directive"); BEGIN(inc_prev); } YY_BREAK -case 276: +case 281: YY_RULE_SETUP -#line 534 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +#line 539 "/usr/src/usr.sbin/unbound/util/configlexer.lex" { LEXOUT(("ISP ")); /* ignore */ } YY_BREAK -case 277: -/* rule 277 can match eol */ +case 282: +/* rule 282 can match eol */ YY_RULE_SETUP -#line 535 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +#line 540 "/usr/src/usr.sbin/unbound/util/configlexer.lex" { LEXOUT(("NL\n")); cfg_parser->line++;} YY_BREAK -case 278: +case 283: YY_RULE_SETUP -#line 536 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +#line 541 "/usr/src/usr.sbin/unbound/util/configlexer.lex" { LEXOUT(("IQS ")); BEGIN(include_quoted); } YY_BREAK -case 279: +case 284: YY_RULE_SETUP -#line 537 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +#line 542 "/usr/src/usr.sbin/unbound/util/configlexer.lex" { LEXOUT(("Iunquotedstr(%s) ", yytext)); config_start_include_glob(yytext); @@ -4556,27 +4628,27 @@ YY_RULE_SETUP } YY_BREAK case YY_STATE_EOF(include_quoted): -#line 542 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +#line 547 "/usr/src/usr.sbin/unbound/util/configlexer.lex" { yyerror("EOF inside quoted string"); BEGIN(inc_prev); } YY_BREAK -case 280: +case 285: YY_RULE_SETUP -#line 546 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +#line 551 "/usr/src/usr.sbin/unbound/util/configlexer.lex" { LEXOUT(("ISTR(%s) ", yytext)); yymore(); } YY_BREAK -case 281: -/* rule 281 can match eol */ +case 286: +/* rule 286 can match eol */ YY_RULE_SETUP -#line 547 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +#line 552 "/usr/src/usr.sbin/unbound/util/configlexer.lex" { yyerror("newline before \" in include name"); cfg_parser->line++; BEGIN(inc_prev); } YY_BREAK -case 282: +case 287: YY_RULE_SETUP -#line 549 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +#line 554 "/usr/src/usr.sbin/unbound/util/configlexer.lex" { LEXOUT(("IQE ")); yytext[yyleng - 1] = '\0'; @@ -4586,7 +4658,7 @@ YY_RULE_SETUP YY_BREAK case YY_STATE_EOF(INITIAL): case YY_STATE_EOF(val): -#line 555 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +#line 560 "/usr/src/usr.sbin/unbound/util/configlexer.lex" { LEXOUT(("LEXEOF ")); yy_set_bol(1); /* Set beginning of line, so "^" rules match. */ @@ -4598,33 +4670,33 @@ case YY_STATE_EOF(val): } } YY_BREAK -case 283: +case 288: YY_RULE_SETUP -#line 566 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +#line 571 "/usr/src/usr.sbin/unbound/util/configlexer.lex" { LEXOUT(("unquotedstr(%s) ", yytext)); if(--num_args == 0) { BEGIN(INITIAL); } yylval.str = strdup(yytext); return STRING_ARG; } YY_BREAK -case 284: +case 289: YY_RULE_SETUP -#line 570 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +#line 575 "/usr/src/usr.sbin/unbound/util/configlexer.lex" { ub_c_error_msg("unknown keyword '%s'", yytext); } YY_BREAK -case 285: +case 290: YY_RULE_SETUP -#line 574 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +#line 579 "/usr/src/usr.sbin/unbound/util/configlexer.lex" { ub_c_error_msg("stray '%s'", yytext); } YY_BREAK -case 286: +case 291: YY_RULE_SETUP -#line 578 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +#line 583 "/usr/src/usr.sbin/unbound/util/configlexer.lex" ECHO; YY_BREAK -#line 4626 "<stdout>" +#line 4698 "<stdout>" case YY_END_OF_BUFFER: { @@ -4917,7 +4989,7 @@ static int yy_get_next_buffer (void) while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; - if ( yy_current_state >= 2845 ) + if ( yy_current_state >= 2905 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; @@ -4945,11 +5017,11 @@ static int yy_get_next_buffer (void) while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; - if ( yy_current_state >= 2845 ) + if ( yy_current_state >= 2905 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; - yy_is_jam = (yy_current_state == 2844); + yy_is_jam = (yy_current_state == 2904); return yy_is_jam ? 0 : yy_current_state; } @@ -5582,7 +5654,7 @@ void yyfree (void * ptr ) #define YYTABLES_NAME "yytables" -#line 578 "/usr/src/usr.sbin/unbound/util/configlexer.lex" +#line 583 "/usr/src/usr.sbin/unbound/util/configlexer.lex" diff --git a/sbin/unwind/libunbound/util/configlexer.lex b/sbin/unwind/libunbound/util/configlexer.lex index 9be8252af5d..16b5bc5471b 100644 --- a/sbin/unwind/libunbound/util/configlexer.lex +++ b/sbin/unwind/libunbound/util/configlexer.lex @@ -245,6 +245,9 @@ additional-ssl-port{COLON} { YDVAR(1, VAR_TLS_ADDITIONAL_PORT) } additional-tls-port{COLON} { YDVAR(1, VAR_TLS_ADDITIONAL_PORT) } tls-additional-ports{COLON} { YDVAR(1, VAR_TLS_ADDITIONAL_PORT) } tls-additional-port{COLON} { YDVAR(1, VAR_TLS_ADDITIONAL_PORT) } +tls-session-ticket-keys{COLON} { YDVAR(1, VAR_TLS_SESSION_TICKET_KEYS) } +tls-ciphers{COLON} { YDVAR(1, VAR_TLS_CIPHERS) } +tls-ciphersuites{COLON} { YDVAR(1, VAR_TLS_CIPHERSUITES) } use-systemd{COLON} { YDVAR(1, VAR_USE_SYSTEMD) } do-daemonize{COLON} { YDVAR(1, VAR_DO_DAEMONIZE) } interface{COLON} { YDVAR(1, VAR_INTERFACE) } @@ -262,6 +265,7 @@ directory{COLON} { YDVAR(1, VAR_DIRECTORY) } logfile{COLON} { YDVAR(1, VAR_LOGFILE) } pidfile{COLON} { YDVAR(1, VAR_PIDFILE) } root-hints{COLON} { YDVAR(1, VAR_ROOT_HINTS) } +stream-wait-size{COLON} { YDVAR(1, VAR_STREAM_WAIT_SIZE) } edns-buffer-size{COLON} { YDVAR(1, VAR_EDNS_BUFFER_SIZE) } msg-buffer-size{COLON} { YDVAR(1, VAR_MSG_BUFFER_SIZE) } msg-cache-size{COLON} { YDVAR(1, VAR_MSG_CACHE_SIZE) } @@ -377,6 +381,7 @@ log-identity{COLON} { YDVAR(1, VAR_LOG_IDENTITY) } log-time-ascii{COLON} { YDVAR(1, VAR_LOG_TIME_ASCII) } log-queries{COLON} { YDVAR(1, VAR_LOG_QUERIES) } log-replies{COLON} { YDVAR(1, VAR_LOG_REPLIES) } +log-tag-queryreply{COLON} { YDVAR(1, VAR_LOG_TAG_QUERYREPLY) } log-local-actions{COLON} { YDVAR(1, VAR_LOG_LOCAL_ACTIONS) } log-servfail{COLON} { YDVAR(1, VAR_LOG_SERVFAIL) } local-zone{COLON} { YDVAR(2, VAR_LOCAL_ZONE) } diff --git a/sbin/unwind/libunbound/util/configparser.h b/sbin/unwind/libunbound/util/configparser.h index 37b2c2b1aa9..c2f76ff5d3c 100644 --- a/sbin/unwind/libunbound/util/configparser.h +++ b/sbin/unwind/libunbound/util/configparser.h @@ -257,6 +257,11 @@ #define VAR_LOG_SERVFAIL 513 #define VAR_DENY_ANY 514 #define VAR_UNKNOWN_SERVER_TIME_LIMIT 515 +#define VAR_LOG_TAG_QUERYREPLY 516 +#define VAR_STREAM_WAIT_SIZE 517 +#define VAR_TLS_CIPHERS 518 +#define VAR_TLS_CIPHERSUITES 519 +#define VAR_TLS_SESSION_TICKET_KEYS 520 #ifndef YYSTYPE_DEFINED #define YYSTYPE_DEFINED typedef union { diff --git a/sbin/unwind/libunbound/util/configparser.y b/sbin/unwind/libunbound/util/configparser.y index 573f0cfa137..5f52f4d7784 100644 --- a/sbin/unwind/libunbound/util/configparser.y +++ b/sbin/unwind/libunbound/util/configparser.y @@ -164,7 +164,9 @@ extern struct config_parser_state* cfg_parser; %token VAR_FAST_SERVER_PERMIL VAR_FAST_SERVER_NUM %token VAR_ALLOW_NOTIFY VAR_TLS_WIN_CERT VAR_TCP_CONNECTION_LIMIT %token VAR_FORWARD_NO_CACHE VAR_STUB_NO_CACHE VAR_LOG_SERVFAIL VAR_DENY_ANY -%token VAR_UNKNOWN_SERVER_TIME_LIMIT +%token VAR_UNKNOWN_SERVER_TIME_LIMIT VAR_LOG_TAG_QUERYREPLY +%token VAR_STREAM_WAIT_SIZE VAR_TLS_CIPHERS VAR_TLS_CIPHERSUITES +%token VAR_TLS_SESSION_TICKET_KEYS %% toplevelvars: /* empty */ | toplevelvars toplevelvar ; @@ -263,7 +265,9 @@ content_server: server_num_threads | server_verbosity | server_port | server_tls_cert_bundle | server_tls_additional_port | server_low_rtt | server_fast_server_permil | server_fast_server_num | server_tls_win_cert | server_tcp_connection_limit | server_log_servfail | server_deny_any | - server_unknown_server_time_limit + server_unknown_server_time_limit | server_log_tag_queryreply | + server_stream_wait_size | server_tls_ciphers | + server_tls_ciphersuites | server_tls_session_ticket_keys ; stubstart: VAR_STUB_ZONE { @@ -818,6 +822,28 @@ server_tls_additional_port: VAR_TLS_ADDITIONAL_PORT STRING_ARG yyerror("out of memory"); } ; +server_tls_ciphers: VAR_TLS_CIPHERS STRING_ARG + { + OUTYY(("P(server_tls_ciphers:%s)\n", $2)); + free(cfg_parser->cfg->tls_ciphers); + cfg_parser->cfg->tls_ciphers = $2; + } + ; +server_tls_ciphersuites: VAR_TLS_CIPHERSUITES STRING_ARG + { + OUTYY(("P(server_tls_ciphersuites:%s)\n", $2)); + free(cfg_parser->cfg->tls_ciphersuites); + cfg_parser->cfg->tls_ciphersuites = $2; + } + ; +server_tls_session_ticket_keys: VAR_TLS_SESSION_TICKET_KEYS STRING_ARG + { + OUTYY(("P(server_tls_session_ticket_keys:%s)\n", $2)); + if(!cfg_strlist_append(&cfg_parser->cfg->tls_session_ticket_keys, + $2)) + yyerror("out of memory"); + } + ; server_use_systemd: VAR_USE_SYSTEMD STRING_ARG { OUTYY(("P(server_use_systemd:%s)\n", $2)); @@ -877,6 +903,15 @@ server_log_replies: VAR_LOG_REPLIES STRING_ARG free($2); } ; +server_log_tag_queryreply: VAR_LOG_TAG_QUERYREPLY STRING_ARG + { + OUTYY(("P(server_log_tag_queryreply:%s)\n", $2)); + if(strcmp($2, "yes") != 0 && strcmp($2, "no") != 0) + yyerror("expected yes or no."); + else cfg_parser->cfg->log_tag_queryreply = (strcmp($2, "yes")==0); + free($2); + } + ; server_log_servfail: VAR_LOG_SERVFAIL STRING_ARG { OUTYY(("P(server_log_servfail:%s)\n", $2)); @@ -1118,6 +1153,14 @@ server_ip_freebind: VAR_IP_FREEBIND STRING_ARG free($2); } ; +server_stream_wait_size: VAR_STREAM_WAIT_SIZE STRING_ARG + { + OUTYY(("P(server_stream_wait_size:%s)\n", $2)); + if(!cfg_parse_memsize($2, &cfg_parser->cfg->stream_wait_size)) + yyerror("memory size expected"); + free($2); + } + ; server_edns_buffer_size: VAR_EDNS_BUFFER_SIZE STRING_ARG { OUTYY(("P(server_edns_buffer_size:%s)\n", $2)); @@ -1460,6 +1503,8 @@ server_access_control: VAR_ACCESS_CONTROL STRING_ARG STRING_ARG yyerror("expected deny, refuse, deny_non_local, " "refuse_non_local, allow, allow_setrd or " "allow_snoop in access control action"); + free($2); + free($3); } else { if(!cfg_str2list_insert(&cfg_parser->cfg->acls, $2, $3)) fatal_exit("out of memory adding acl"); @@ -1738,13 +1783,15 @@ server_local_zone: VAR_LOCAL_ZONE STRING_ARG STRING_ARG && strcmp($3, "always_refuse")!=0 && strcmp($3, "always_nxdomain")!=0 && strcmp($3, "noview")!=0 - && strcmp($3, "inform")!=0 && strcmp($3, "inform_deny")!=0) + && strcmp($3, "inform")!=0 && strcmp($3, "inform_deny")!=0) { yyerror("local-zone type: expected static, deny, " "refuse, redirect, transparent, " "typetransparent, inform, inform_deny, " "always_transparent, always_refuse, " "always_nxdomain, noview or nodefault"); - else if(strcmp($3, "nodefault")==0) { + free($2); + free($3); + } else if(strcmp($3, "nodefault")==0) { if(!cfg_strlist_insert(&cfg_parser->cfg-> local_zones_nodefault, $2)) fatal_exit("out of memory adding local-zone"); @@ -1857,8 +1904,10 @@ server_local_zone_tag: VAR_LOCAL_ZONE_TAG STRING_ARG STRING_ARG &len); free($3); OUTYY(("P(server_local_zone_tag:%s)\n", $2)); - if(!bitlist) + if(!bitlist) { yyerror("could not parse tags, (define-tag them first)"); + free($2); + } if(bitlist) { if(!cfg_strbytelist_insert( &cfg_parser->cfg->local_zone_tags, @@ -1876,8 +1925,10 @@ server_access_control_tag: VAR_ACCESS_CONTROL_TAG STRING_ARG STRING_ARG &len); free($3); OUTYY(("P(server_access_control_tag:%s)\n", $2)); - if(!bitlist) + if(!bitlist) { yyerror("could not parse tags, (define-tag them first)"); + free($2); + } if(bitlist) { if(!cfg_strbytelist_insert( &cfg_parser->cfg->acl_tags, @@ -1930,8 +1981,6 @@ server_access_control_view: VAR_ACCESS_CONTROL_VIEW STRING_ARG STRING_ARG if(!cfg_str2list_insert(&cfg_parser->cfg->acl_view, $2, $3)) { yyerror("out of memory"); - free($2); - free($3); } } ; @@ -1942,8 +1991,10 @@ server_response_ip_tag: VAR_RESPONSE_IP_TAG STRING_ARG STRING_ARG &len); free($3); OUTYY(("P(response_ip_tag:%s)\n", $2)); - if(!bitlist) + if(!bitlist) { yyerror("could not parse tags, (define-tag them first)"); + free($2); + } if(bitlist) { if(!cfg_strbytelist_insert( &cfg_parser->cfg->respip_tags, @@ -2020,6 +2071,8 @@ server_ratelimit_for_domain: VAR_RATELIMIT_FOR_DOMAIN STRING_ARG STRING_ARG OUTYY(("P(server_ratelimit_for_domain:%s %s)\n", $2, $3)); if(atoi($3) == 0 && strcmp($3, "0") != 0) { yyerror("number expected"); + free($2); + free($3); } else { if(!cfg_str2list_insert(&cfg_parser->cfg-> ratelimit_for_domain, $2, $3)) @@ -2033,6 +2086,8 @@ server_ratelimit_below_domain: VAR_RATELIMIT_BELOW_DOMAIN STRING_ARG STRING_ARG OUTYY(("P(server_ratelimit_below_domain:%s %s)\n", $2, $3)); if(atoi($3) == 0 && strcmp($3, "0") != 0) { yyerror("number expected"); + free($2); + free($3); } else { if(!cfg_str2list_insert(&cfg_parser->cfg-> ratelimit_below_domain, $2, $3)) @@ -2110,10 +2165,10 @@ server_ipsecmod_enabled: VAR_IPSECMOD_ENABLED STRING_ARG if(strcmp($2, "yes") != 0 && strcmp($2, "no") != 0) yyerror("expected yes or no."); else cfg_parser->cfg->ipsecmod_enabled = (strcmp($2, "yes")==0); - free($2); #else OUTYY(("P(Compiled without IPsec module, ignoring)\n")); #endif + free($2); } ; server_ipsecmod_ignore_bogus: VAR_IPSECMOD_IGNORE_BOGUS STRING_ARG @@ -2123,10 +2178,10 @@ server_ipsecmod_ignore_bogus: VAR_IPSECMOD_IGNORE_BOGUS STRING_ARG if(strcmp($2, "yes") != 0 && strcmp($2, "no") != 0) yyerror("expected yes or no."); else cfg_parser->cfg->ipsecmod_ignore_bogus = (strcmp($2, "yes")==0); - free($2); #else OUTYY(("P(Compiled without IPsec module, ignoring)\n")); #endif + free($2); } ; server_ipsecmod_hook: VAR_IPSECMOD_HOOK STRING_ARG @@ -2137,6 +2192,7 @@ server_ipsecmod_hook: VAR_IPSECMOD_HOOK STRING_ARG cfg_parser->cfg->ipsecmod_hook = $2; #else OUTYY(("P(Compiled without IPsec module, ignoring)\n")); + free($2); #endif } ; @@ -2150,6 +2206,7 @@ server_ipsecmod_max_ttl: VAR_IPSECMOD_MAX_TTL STRING_ARG free($2); #else OUTYY(("P(Compiled without IPsec module, ignoring)\n")); + free($2); #endif } ; @@ -2161,6 +2218,7 @@ server_ipsecmod_whitelist: VAR_IPSECMOD_WHITELIST STRING_ARG yyerror("out of memory"); #else OUTYY(("P(Compiled without IPsec module, ignoring)\n")); + free($2); #endif } ; @@ -2174,6 +2232,7 @@ server_ipsecmod_strict: VAR_IPSECMOD_STRICT STRING_ARG free($2); #else OUTYY(("P(Compiled without IPsec module, ignoring)\n")); + free($2); #endif } ; @@ -2381,13 +2440,15 @@ view_local_zone: VAR_LOCAL_ZONE STRING_ARG STRING_ARG && strcmp($3, "always_refuse")!=0 && strcmp($3, "always_nxdomain")!=0 && strcmp($3, "noview")!=0 - && strcmp($3, "inform")!=0 && strcmp($3, "inform_deny")!=0) + && strcmp($3, "inform")!=0 && strcmp($3, "inform_deny")!=0) { yyerror("local-zone type: expected static, deny, " "refuse, redirect, transparent, " "typetransparent, inform, inform_deny, " "always_transparent, always_refuse, " "always_nxdomain, noview or nodefault"); - else if(strcmp($3, "nodefault")==0) { + free($2); + free($3); + } else if(strcmp($3, "nodefault")==0) { if(!cfg_strlist_insert(&cfg_parser->cfg->views-> local_zones_nodefault, $2)) fatal_exit("out of memory adding local-zone"); @@ -2423,7 +2484,6 @@ view_local_data: VAR_LOCAL_DATA STRING_ARG OUTYY(("P(view_local_data:%s)\n", $2)); if(!cfg_strlist_insert(&cfg_parser->cfg->views->local_data, $2)) { fatal_exit("out of memory adding local-data"); - free($2); } } ; @@ -2546,6 +2606,7 @@ dt_dnstap_enable: VAR_DNSTAP_ENABLE STRING_ARG if(strcmp($2, "yes") != 0 && strcmp($2, "no") != 0) yyerror("expected yes or no."); else cfg_parser->cfg->dnstap = (strcmp($2, "yes")==0); + free($2); } ; dt_dnstap_socket_path: VAR_DNSTAP_SOCKET_PATH STRING_ARG @@ -2561,6 +2622,7 @@ dt_dnstap_send_identity: VAR_DNSTAP_SEND_IDENTITY STRING_ARG if(strcmp($2, "yes") != 0 && strcmp($2, "no") != 0) yyerror("expected yes or no."); else cfg_parser->cfg->dnstap_send_identity = (strcmp($2, "yes")==0); + free($2); } ; dt_dnstap_send_version: VAR_DNSTAP_SEND_VERSION STRING_ARG @@ -2569,6 +2631,7 @@ dt_dnstap_send_version: VAR_DNSTAP_SEND_VERSION STRING_ARG if(strcmp($2, "yes") != 0 && strcmp($2, "no") != 0) yyerror("expected yes or no."); else cfg_parser->cfg->dnstap_send_version = (strcmp($2, "yes")==0); + free($2); } ; dt_dnstap_identity: VAR_DNSTAP_IDENTITY STRING_ARG @@ -2592,6 +2655,7 @@ dt_dnstap_log_resolver_query_messages: VAR_DNSTAP_LOG_RESOLVER_QUERY_MESSAGES ST yyerror("expected yes or no."); else cfg_parser->cfg->dnstap_log_resolver_query_messages = (strcmp($2, "yes")==0); + free($2); } ; dt_dnstap_log_resolver_response_messages: VAR_DNSTAP_LOG_RESOLVER_RESPONSE_MESSAGES STRING_ARG @@ -2601,6 +2665,7 @@ dt_dnstap_log_resolver_response_messages: VAR_DNSTAP_LOG_RESOLVER_RESPONSE_MESSA yyerror("expected yes or no."); else cfg_parser->cfg->dnstap_log_resolver_response_messages = (strcmp($2, "yes")==0); + free($2); } ; dt_dnstap_log_client_query_messages: VAR_DNSTAP_LOG_CLIENT_QUERY_MESSAGES STRING_ARG @@ -2610,6 +2675,7 @@ dt_dnstap_log_client_query_messages: VAR_DNSTAP_LOG_CLIENT_QUERY_MESSAGES STRING yyerror("expected yes or no."); else cfg_parser->cfg->dnstap_log_client_query_messages = (strcmp($2, "yes")==0); + free($2); } ; dt_dnstap_log_client_response_messages: VAR_DNSTAP_LOG_CLIENT_RESPONSE_MESSAGES STRING_ARG @@ -2619,6 +2685,7 @@ dt_dnstap_log_client_response_messages: VAR_DNSTAP_LOG_CLIENT_RESPONSE_MESSAGES yyerror("expected yes or no."); else cfg_parser->cfg->dnstap_log_client_response_messages = (strcmp($2, "yes")==0); + free($2); } ; dt_dnstap_log_forwarder_query_messages: VAR_DNSTAP_LOG_FORWARDER_QUERY_MESSAGES STRING_ARG @@ -2628,6 +2695,7 @@ dt_dnstap_log_forwarder_query_messages: VAR_DNSTAP_LOG_FORWARDER_QUERY_MESSAGES yyerror("expected yes or no."); else cfg_parser->cfg->dnstap_log_forwarder_query_messages = (strcmp($2, "yes")==0); + free($2); } ; dt_dnstap_log_forwarder_response_messages: VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MESSAGES STRING_ARG @@ -2637,6 +2705,7 @@ dt_dnstap_log_forwarder_response_messages: VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MES yyerror("expected yes or no."); else cfg_parser->cfg->dnstap_log_forwarder_response_messages = (strcmp($2, "yes")==0); + free($2); } ; pythonstart: VAR_PYTHON @@ -2683,15 +2752,14 @@ server_response_ip: VAR_RESPONSE_IP STRING_ARG STRING_ARG server_response_ip_data: VAR_RESPONSE_IP_DATA STRING_ARG STRING_ARG { OUTYY(("P(server_response_ip_data:%s)\n", $2)); - if(!cfg_str2list_insert(&cfg_parser->cfg->respip_data, - $2, $3)) - fatal_exit("out of memory adding response-ip-data"); + if(!cfg_str2list_insert(&cfg_parser->cfg->respip_data, + $2, $3)) + fatal_exit("out of memory adding response-ip-data"); } ; dnscstart: VAR_DNSCRYPT { OUTYY(("\nP(dnscrypt:)\n")); - OUTYY(("\nP(dnscrypt:)\n")); } ; contents_dnsc: contents_dnsc content_dnsc @@ -2718,7 +2786,6 @@ dnsc_dnscrypt_enable: VAR_DNSCRYPT_ENABLE STRING_ARG dnsc_dnscrypt_port: VAR_DNSCRYPT_PORT STRING_ARG { OUTYY(("P(dnsc_dnscrypt_port:%s)\n", $2)); - if(atoi($2) == 0) yyerror("port number expected"); else cfg_parser->cfg->dnscrypt_port = atoi($2); @@ -2820,6 +2887,7 @@ cachedb_backend_name: VAR_CACHEDB_BACKEND STRING_ARG cfg_parser->cfg->cachedb_backend = $2; #else OUTYY(("P(Compiled without cachedb, ignoring)\n")); + free($2); #endif } ; diff --git a/sbin/unwind/libunbound/util/data/msgreply.c b/sbin/unwind/libunbound/util/data/msgreply.c index 45d42a87f45..32aec4bf4c9 100644 --- a/sbin/unwind/libunbound/util/data/msgreply.c +++ b/sbin/unwind/libunbound/util/data/msgreply.c @@ -195,6 +195,8 @@ rdata_copy(sldns_buffer* pkt, struct packed_rrset_data* data, uint8_t* to, } if(*rr_ttl < MIN_TTL) *rr_ttl = MIN_TTL; + if(*rr_ttl > MAX_TTL) + *rr_ttl = MAX_TTL; if(*rr_ttl < data->ttl) data->ttl = *rr_ttl; @@ -853,7 +855,9 @@ log_reply_info(enum verbosity_value v, struct query_info *qinf, addr_to_str(addr, addrlen, clientip_buf, sizeof(clientip_buf)); if(rcode == LDNS_RCODE_FORMERR) { - log_info("%s - - - %s - - - ", clientip_buf, rcode_buf); + if(LOG_TAG_QUERYREPLY) + log_reply("%s - - - %s - - - ", clientip_buf, rcode_buf); + else log_info("%s - - - %s - - - ", clientip_buf, rcode_buf); } else { if(qinf->qname) dname_str(qinf->qname, qname_buf); @@ -861,7 +865,11 @@ log_reply_info(enum verbosity_value v, struct query_info *qinf, pktlen = sldns_buffer_limit(rmsg); sldns_wire2str_type_buf(qinf->qtype, type_buf, sizeof(type_buf)); sldns_wire2str_class_buf(qinf->qclass, class_buf, sizeof(class_buf)); - log_info("%s %s %s %s %s " ARG_LL "d.%6.6d %d %d", + if(LOG_TAG_QUERYREPLY) + log_reply("%s %s %s %s %s " ARG_LL "d.%6.6d %d %d", + clientip_buf, qname_buf, type_buf, class_buf, + rcode_buf, (long long)dur.tv_sec, (int)dur.tv_usec, cached, (int)pktlen); + else log_info("%s %s %s %s %s " ARG_LL "d.%6.6d %d %d", clientip_buf, qname_buf, type_buf, class_buf, rcode_buf, (long long)dur.tv_sec, (int)dur.tv_usec, cached, (int)pktlen); } diff --git a/sbin/unwind/libunbound/util/edns.c b/sbin/unwind/libunbound/util/edns.c index 1fa6b2921c6..d19952df094 100644 --- a/sbin/unwind/libunbound/util/edns.c +++ b/sbin/unwind/libunbound/util/edns.c @@ -40,9 +40,8 @@ */ #include "config.h" - -#include "util/config_file.h" #include "util/edns.h" +#include "util/config_file.h" #include "util/netevent.h" #include "util/regional.h" #include "util/data/msgparse.h" diff --git a/sbin/unwind/libunbound/util/log.c b/sbin/unwind/libunbound/util/log.c index 82e63a92c41..318ff1d7910 100644 --- a/sbin/unwind/libunbound/util/log.c +++ b/sbin/unwind/libunbound/util/log.c @@ -382,6 +382,24 @@ log_hex(const char* msg, void* data, size_t length) log_hex_f(verbosity, msg, data, length); } +void +log_query(const char *format, ...) +{ + va_list args; + va_start(args, format); + log_vmsg(LOG_INFO, "query", format, args); + va_end(args); +} + +void +log_reply(const char *format, ...) +{ + va_list args; + va_start(args, format); + log_vmsg(LOG_INFO, "reply", format, args); + va_end(args); +} + void log_buf(enum verbosity_value level, const char* msg, sldns_buffer* buf) { if(verbosity < level) diff --git a/sbin/unwind/libunbound/util/log.h b/sbin/unwind/libunbound/util/log.h index a9b90de1e8f..81d9d837d72 100644 --- a/sbin/unwind/libunbound/util/log.h +++ b/sbin/unwind/libunbound/util/log.h @@ -154,6 +154,20 @@ void log_warn(const char* format, ...) ATTR_FORMAT(printf, 1, 2); void log_hex(const char* msg, void* data, size_t length); /** + * Log query. + * Pass printf formatted arguments. No trailing newline is needed. + * @param format: printf-style format string. Arguments follow. + */ +void log_query(const char* format, ...) ATTR_FORMAT(printf, 1, 2); + +/** + * Log reply. + * Pass printf formatted arguments. No trailing newline is needed. + * @param format: printf-style format string. Arguments follow. + */ +void log_reply(const char* format, ...) ATTR_FORMAT(printf, 1, 2); + +/** * Easy alternative for log_hex, takes a sldns_buffer. * @param level: verbosity level for this message, compared to global * verbosity setting. diff --git a/sbin/unwind/libunbound/util/mini_event.c b/sbin/unwind/libunbound/util/mini_event.c index ee517b263a0..faadf1a23c8 100644 --- a/sbin/unwind/libunbound/util/mini_event.c +++ b/sbin/unwind/libunbound/util/mini_event.c @@ -49,7 +49,6 @@ #if defined(USE_MINI_EVENT) && !defined(USE_WINSOCK) #include <signal.h> -#include "util/mini_event.h" #include "util/fptr_wlist.h" /** compare events in tree, based on timevalue, ptr for uniqueness */ diff --git a/sbin/unwind/libunbound/util/net_help.c b/sbin/unwind/libunbound/util/net_help.c index 91368c84759..1a4fa8a58e6 100644 --- a/sbin/unwind/libunbound/util/net_help.c +++ b/sbin/unwind/libunbound/util/net_help.c @@ -43,11 +43,14 @@ #include "util/data/dname.h" #include "util/module.h" #include "util/regional.h" +#include "util/config_file.h" #include "sldns/parseutil.h" #include "sldns/wire2str.h" #include <fcntl.h> #ifdef HAVE_OPENSSL_SSL_H #include <openssl/ssl.h> +#include <openssl/evp.h> +#include <openssl/rand.h> #endif #ifdef HAVE_OPENSSL_ERR_H #include <openssl/err.h> @@ -67,6 +70,15 @@ int MINIMAL_RESPONSES = 0; /** rrset order roundrobin: default is no */ int RRSET_ROUNDROBIN = 0; +/** log tag queries with name instead of 'info' for filtering */ +int LOG_TAG_QUERYREPLY = 0; + +static struct tls_session_ticket_key { + unsigned char *key_name; + unsigned char *aes_key; + unsigned char *hmac_key; +} *ticket_keys; + /* returns true is string addr is an ip6 specced address */ int str_is_ip6(const char* str) @@ -361,6 +373,37 @@ log_nametypeclass(enum verbosity_value v, const char* str, uint8_t* name, log_info("%s %s %s %s", str, buf, ts, cs); } +void +log_query_in(const char* str, uint8_t* name, uint16_t type, uint16_t dclass) +{ + char buf[LDNS_MAX_DOMAINLEN+1]; + char t[12], c[12]; + const char *ts, *cs; + dname_str(name, buf); + if(type == LDNS_RR_TYPE_TSIG) ts = "TSIG"; + else if(type == LDNS_RR_TYPE_IXFR) ts = "IXFR"; + else if(type == LDNS_RR_TYPE_AXFR) ts = "AXFR"; + else if(type == LDNS_RR_TYPE_MAILB) ts = "MAILB"; + else if(type == LDNS_RR_TYPE_MAILA) ts = "MAILA"; + else if(type == LDNS_RR_TYPE_ANY) ts = "ANY"; + else if(sldns_rr_descript(type) && sldns_rr_descript(type)->_name) + ts = sldns_rr_descript(type)->_name; + else { + snprintf(t, sizeof(t), "TYPE%d", (int)type); + ts = t; + } + if(sldns_lookup_by_id(sldns_rr_classes, (int)dclass) && + sldns_lookup_by_id(sldns_rr_classes, (int)dclass)->name) + cs = sldns_lookup_by_id(sldns_rr_classes, (int)dclass)->name; + else { + snprintf(c, sizeof(c), "CLASS%d", (int)dclass); + cs = c; + } + if(LOG_TAG_QUERYREPLY) + log_query("%s %s %s %s", str, buf, ts, cs); + else log_info("%s %s %s %s", str, buf, ts, cs); +} + void log_name_addr(enum verbosity_value v, const char* str, uint8_t* zone, struct sockaddr_storage* addr, socklen_t addrlen) { @@ -1056,3 +1099,128 @@ void ub_openssl_lock_delete(void) #endif /* OPENSSL_THREADS */ } +int listen_sslctx_setup_ticket_keys(void* sslctx, struct config_strlist* tls_session_ticket_keys) { +#ifdef HAVE_SSL + size_t s = 1; + struct config_strlist* p; + struct tls_session_ticket_key *keys; + for(p = tls_session_ticket_keys; p; p = p->next) { + s++; + } + keys = calloc(s, sizeof(struct tls_session_ticket_key)); + memset(keys, 0, s*sizeof(*keys)); + ticket_keys = keys; + + for(p = tls_session_ticket_keys; p; p = p->next) { + size_t n; + unsigned char *data = (unsigned char *)malloc(80); + FILE *f = fopen(p->str, "r"); + if(!f) { + log_err("could not read tls-session-ticket-key %s: %s", p->str, strerror(errno)); + free(data); + return 0; + } + n = fread(data, 1, 80, f); + fclose(f); + + if(n != 80) { + log_err("tls-session-ticket-key %s is %d bytes, must be 80 bytes", p->str, (int)n); + free(data); + return 0; + } + verbose(VERB_OPS, "read tls-session-ticket-key: %s", p->str); + + keys->key_name = data; + keys->aes_key = data + 16; + keys->hmac_key = data + 48; + keys++; + } + /* terminate array with NULL key name entry */ + keys->key_name = NULL; + if(SSL_CTX_set_tlsext_ticket_key_cb(sslctx, tls_session_ticket_key_cb) == 0) { + log_err("no support for TLS session ticket"); + return 0; + } + return 1; +#else + (void)sslctx; + (void)tls_session_ticket_keys; + return 0; +#endif + +} + +int tls_session_ticket_key_cb(void *ATTR_UNUSED(sslctx), unsigned char* key_name, unsigned char* iv, void *evp_sctx, void *hmac_ctx, int enc) +{ +#ifdef HAVE_SSL + const EVP_MD *digest; + const EVP_CIPHER *cipher; + int evp_cipher_length; + digest = EVP_sha256(); + cipher = EVP_aes_256_cbc(); + evp_cipher_length = EVP_CIPHER_iv_length(cipher); + if( enc == 1 ) { + /* encrypt */ + verbose(VERB_CLIENT, "start session encrypt"); + memcpy(key_name, ticket_keys->key_name, 16); + if (RAND_bytes(iv, evp_cipher_length) != 1) { + verbose(VERB_CLIENT, "RAND_bytes failed"); + return -1; + } + if (EVP_EncryptInit_ex(evp_sctx, cipher, NULL, ticket_keys->aes_key, iv) != 1) { + verbose(VERB_CLIENT, "EVP_EncryptInit_ex failed"); + return -1; + } + if (HMAC_Init_ex(hmac_ctx, ticket_keys->hmac_key, 32, digest, NULL) != 1) { + verbose(VERB_CLIENT, "HMAC_Init_ex failed"); + return -1; + } + return 1; + } else if (enc == 0) { + /* decrypt */ + struct tls_session_ticket_key *key; + verbose(VERB_CLIENT, "start session decrypt"); + for(key = ticket_keys; key->key_name != NULL; key++) { + if (!memcmp(key_name, key->key_name, 16)) { + verbose(VERB_CLIENT, "Found session_key"); + break; + } + } + if(key->key_name == NULL) { + verbose(VERB_CLIENT, "Not found session_key"); + return 0; + } + + if (HMAC_Init_ex(hmac_ctx, key->hmac_key, 32, digest, NULL) != 1) { + verbose(VERB_CLIENT, "HMAC_Init_ex failed"); + return -1; + } + if (EVP_DecryptInit_ex(evp_sctx, cipher, NULL, key->aes_key, iv) != 1) { + log_err("EVP_DecryptInit_ex failed"); + return -1; + } + + return (key == ticket_keys) ? 1 : 2; + } + return -1; +#else + (void)key_name; + (void)iv; + (void)evp_sctx; + (void)hmac_ctx; + (void)enc; + return 0; +#endif +} + +void +listen_sslctx_delete_ticket_keys(void) +{ + struct tls_session_ticket_key *key; + if(!ticket_keys) return; + for(key = ticket_keys; key->key_name != NULL; key++) { + free(key->key_name); + } + free(ticket_keys); + ticket_keys = NULL; +} diff --git a/sbin/unwind/libunbound/util/net_help.h b/sbin/unwind/libunbound/util/net_help.h index de2e1accfd4..0b197fbdd6e 100644 --- a/sbin/unwind/libunbound/util/net_help.h +++ b/sbin/unwind/libunbound/util/net_help.h @@ -44,6 +44,7 @@ #include "util/log.h" struct sock_list; struct regional; +struct config_strlist; /** DNS constants for uint16_t style flag manipulation. host byteorder. * 1 1 1 1 1 1 @@ -99,6 +100,9 @@ extern int MINIMAL_RESPONSES; /** rrset order roundrobin */ extern int RRSET_ROUNDROBIN; +/** log tag queries with name instead of 'info' for filtering */ +extern int LOG_TAG_QUERYREPLY; + /** * See if string is ip4 or ip6. * @param str: IP specification. @@ -236,6 +240,12 @@ void log_nametypeclass(enum verbosity_value v, const char* str, uint8_t* name, uint16_t type, uint16_t dclass); /** + * Like log_nametypeclass, but logs with log_query for query logging + */ +void log_query_in(const char* str, uint8_t* name, uint16_t type, + uint16_t dclass); + +/** * Compare two sockaddrs. Imposes an ordering on the addresses. * Compares address and port. * @param addr1: address 1. @@ -428,4 +438,30 @@ int ub_openssl_lock_init(void); */ void ub_openssl_lock_delete(void); +/** + * setup TLS session ticket + * @param sslctx: the SSL_CTX to use (from connect_sslctx_create()) + * @param tls_session_ticket_keys: TLS ticket secret filenames + * @return false on failure (alloc failure). + */ +int listen_sslctx_setup_ticket_keys(void* sslctx, + struct config_strlist* tls_session_ticket_keys); + +/** + * callback TLS session ticket encrypt and decrypt + * For use with SSL_CTX_set_tlsext_ticket_key_cb + * @param s: the SSL_CTX to use (from connect_sslctx_create()) + * @param key_name: secret name, 16 bytes + * @param iv: up to EVP_MAX_IV_LENGTH. + * @param evp_ctx: the evp cipher context, function sets this. + * @param hmac_ctx: the hmax context, function sets this. + * @param enc: 1 is encrypt, 0 is decrypt + * @return 0 on no ticket, 1 for okay, and 2 for okay but renew the ticket + * (the ticket is decrypt only). and <0 for failures. + */ +int tls_session_ticket_key_cb(void *s, unsigned char* key_name,unsigned char* iv, void *evp_ctx, void *hmac_ctx, int enc); + +/** Free memory used for TLS session ticket keys */ +void listen_sslctx_delete_ticket_keys(void); + #endif /* NET_HELP_H */ diff --git a/sbin/unwind/libunbound/util/netevent.c b/sbin/unwind/libunbound/util/netevent.c index 37353804142..a507faf7e41 100644 --- a/sbin/unwind/libunbound/util/netevent.c +++ b/sbin/unwind/libunbound/util/netevent.c @@ -50,6 +50,7 @@ #include "sldns/str2wire.h" #include "dnstap/dnstap.h" #include "dnscrypt/dnscrypt.h" +#include "services/listen_dnsport.h" #ifdef HAVE_OPENSSL_SSL_H #include <openssl/ssl.h> #endif @@ -150,7 +151,8 @@ struct internal_signal { /** create a tcp handler with a parent */ static struct comm_point* comm_point_create_tcp_handler( struct comm_base *base, struct comm_point* parent, size_t bufsize, - comm_point_callback_type* callback, void* callback_arg); + struct sldns_buffer* spoolbuf, comm_point_callback_type* callback, + void* callback_arg); /* -------- End of local definitions -------- */ @@ -988,7 +990,11 @@ tcp_callback_writer(struct comm_point* c) c->tcp_byte_count = 0; /* switch from listening(write) to listening(read) */ comm_point_stop_listening(c); - comm_point_start_listening(c, -1, -1); + if(c->tcp_req_info) { + tcp_req_info_handle_writedone(c->tcp_req_info); + } else { + comm_point_start_listening(c, -1, -1); + } } /** do the callback when reading is done */ @@ -1002,9 +1008,13 @@ tcp_callback_reader(struct comm_point* c) c->tcp_byte_count = 0; if(c->type == comm_tcp) comm_point_stop_listening(c); - fptr_ok(fptr_whitelist_comm_point(c->callback)); - if( (*c->callback)(c, c->cb_arg, NETEVENT_NOERROR, &c->repinfo) ) { - comm_point_start_listening(c, -1, c->tcp_timeout_msec); + if(c->tcp_req_info) { + tcp_req_info_handle_readdone(c->tcp_req_info); + } else { + fptr_ok(fptr_whitelist_comm_point(c->callback)); + if( (*c->callback)(c, c->cb_arg, NETEVENT_NOERROR, &c->repinfo) ) { + comm_point_start_listening(c, -1, c->tcp_timeout_msec); + } } } @@ -1163,6 +1173,8 @@ ssl_handle_read(struct comm_point* c) c->tcp_byte_count))) <= 0) { int want = SSL_get_error(c->ssl, r); if(want == SSL_ERROR_ZERO_RETURN) { + if(c->tcp_req_info) + return tcp_req_info_handle_read_close(c->tcp_req_info); return 0; /* shutdown, closed */ } else if(want == SSL_ERROR_WANT_READ) { ub_winsock_tcp_wouldblock(c->ev->ev, UB_EV_READ); @@ -1205,6 +1217,8 @@ ssl_handle_read(struct comm_point* c) if(r <= 0) { int want = SSL_get_error(c->ssl, r); if(want == SSL_ERROR_ZERO_RETURN) { + if(c->tcp_req_info) + return tcp_req_info_handle_read_close(c->tcp_req_info); return 0; /* shutdown, closed */ } else if(want == SSL_ERROR_WANT_READ) { ub_winsock_tcp_wouldblock(c->ev->ev, UB_EV_READ); @@ -1365,9 +1379,11 @@ comm_point_tcp_handle_read(int fd, struct comm_point* c, int short_ok) /* read length bytes */ r = recv(fd,(void*)sldns_buffer_at(c->buffer,c->tcp_byte_count), sizeof(uint16_t)-c->tcp_byte_count, 0); - if(r == 0) + if(r == 0) { + if(c->tcp_req_info) + return tcp_req_info_handle_read_close(c->tcp_req_info); return 0; - else if(r == -1) { + } else if(r == -1) { #ifndef USE_WINSOCK if(errno == EINTR || errno == EAGAIN) return 1; @@ -1416,6 +1432,8 @@ comm_point_tcp_handle_read(int fd, struct comm_point* c, int short_ok) r = recv(fd, (void*)sldns_buffer_current(c->buffer), sldns_buffer_remaining(c->buffer), 0); if(r == 0) { + if(c->tcp_req_info) + return tcp_req_info_handle_read_close(c->tcp_req_info); return 0; } else if(r == -1) { #ifndef USE_WINSOCK @@ -1669,6 +1687,29 @@ comm_point_tcp_handle_write(int fd, struct comm_point* c) return 1; } +/** read again to drain buffers when there could be more to read */ +static void +tcp_req_info_read_again(int fd, struct comm_point* c) +{ + while(c->tcp_req_info->read_again) { + int r; + c->tcp_req_info->read_again = 0; + if(c->tcp_is_reading) + r = comm_point_tcp_handle_read(fd, c, 0); + else r = comm_point_tcp_handle_write(fd, c); + if(!r) { + reclaim_tcp_handler(c); + if(!c->tcp_do_close) { + fptr_ok(fptr_whitelist_comm_point( + c->callback)); + (void)(*c->callback)(c, c->cb_arg, + NETEVENT_CLOSED, NULL); + } + return; + } + } +} + void comm_point_tcp_handle_callback(int fd, short event, void* arg) { @@ -1698,6 +1739,7 @@ comm_point_tcp_handle_callback(int fd, short event, void* arg) #endif if(event&UB_EV_READ) { + int has_tcpq = (c->tcp_req_info != NULL); if(!comm_point_tcp_handle_read(fd, c, 0)) { reclaim_tcp_handler(c); if(!c->tcp_do_close) { @@ -1707,9 +1749,12 @@ comm_point_tcp_handle_callback(int fd, short event, void* arg) NETEVENT_CLOSED, NULL); } } + if(has_tcpq && c->tcp_req_info && c->tcp_req_info->read_again) + tcp_req_info_read_again(fd, c); return; } if(event&UB_EV_WRITE) { + int has_tcpq = (c->tcp_req_info != NULL); if(!comm_point_tcp_handle_write(fd, c)) { reclaim_tcp_handler(c); if(!c->tcp_do_close) { @@ -1719,6 +1764,8 @@ comm_point_tcp_handle_callback(int fd, short event, void* arg) NETEVENT_CLOSED, NULL); } } + if(has_tcpq && c->tcp_req_info && c->tcp_req_info->read_again) + tcp_req_info_read_again(fd, c); return; } if(event&UB_EV_TIMEOUT) { @@ -2523,7 +2570,8 @@ comm_point_create_udp_ancil(struct comm_base *base, int fd, static struct comm_point* comm_point_create_tcp_handler(struct comm_base *base, struct comm_point* parent, size_t bufsize, - comm_point_callback_type* callback, void* callback_arg) + struct sldns_buffer* spoolbuf, comm_point_callback_type* callback, + void* callback_arg) { struct comm_point* c = (struct comm_point*)calloc(1, sizeof(struct comm_point)); @@ -2579,6 +2627,20 @@ comm_point_create_tcp_handler(struct comm_base *base, c->repinfo.c = c; c->callback = callback; c->cb_arg = callback_arg; + if(spoolbuf) { + c->tcp_req_info = tcp_req_info_create(spoolbuf); + if(!c->tcp_req_info) { + log_err("could not create tcp commpoint"); + sldns_buffer_free(c->buffer); + free(c->timeout); + free(c->ev); + free(c); + return NULL; + } + c->tcp_req_info->cp = c; + c->tcp_do_close = 1; + c->tcp_do_toggle_rw = 0; + } /* add to parent free list */ c->tcp_free = parent->tcp_free; parent->tcp_free = c; @@ -2590,6 +2652,9 @@ comm_point_create_tcp_handler(struct comm_base *base, { log_err("could not basetset tcphdl event"); parent->tcp_free = c->tcp_free; + tcp_req_info_delete(c->tcp_req_info); + sldns_buffer_free(c->buffer); + free(c->timeout); free(c->ev); free(c); return NULL; @@ -2600,7 +2665,8 @@ comm_point_create_tcp_handler(struct comm_base *base, struct comm_point* comm_point_create_tcp(struct comm_base *base, int fd, int num, int idle_timeout, struct tcl_list* tcp_conn_limit, size_t bufsize, - comm_point_callback_type* callback, void* callback_arg) + struct sldns_buffer* spoolbuf, comm_point_callback_type* callback, + void* callback_arg) { struct comm_point* c = (struct comm_point*)calloc(1, sizeof(struct comm_point)); @@ -2667,7 +2733,7 @@ comm_point_create_tcp(struct comm_base *base, int fd, int num, /* now prealloc the tcp handlers */ for(i=0; i<num; i++) { c->tcp_handlers[i] = comm_point_create_tcp_handler(base, - c, bufsize, callback, callback_arg); + c, bufsize, spoolbuf, callback, callback_arg); if(!c->tcp_handlers[i]) { comm_point_delete(c); return NULL; @@ -2949,6 +3015,8 @@ comm_point_close(struct comm_point* c) } } tcl_close_connection(c->tcl_addr); + if(c->tcp_req_info) + tcp_req_info_clear(c->tcp_req_info); /* close fd after removing from event lists, or epoll.. is messed up */ if(c->fd != -1 && !c->do_not_close) { if(c->type == comm_tcp || c->type == comm_http) { @@ -2992,6 +3060,9 @@ comm_point_delete(struct comm_point* c) sldns_buffer_free(c->dnscrypt_buffer); } #endif + if(c->tcp_req_info) { + tcp_req_info_delete(c->tcp_req_info); + } } ub_event_free(c->ev->ev); free(c->ev); @@ -3032,8 +3103,12 @@ comm_point_send_reply(struct comm_reply *repinfo) dt_msg_send_client_response(repinfo->c->tcp_parent->dtenv, &repinfo->addr, repinfo->c->type, repinfo->c->buffer); #endif - comm_point_start_listening(repinfo->c, -1, - repinfo->c->tcp_timeout_msec); + if(repinfo->c->tcp_req_info) { + tcp_req_info_send_reply(repinfo->c->tcp_req_info); + } else { + comm_point_start_listening(repinfo->c, -1, + repinfo->c->tcp_timeout_msec); + } } } @@ -3046,6 +3121,8 @@ comm_point_drop_reply(struct comm_reply* repinfo) log_assert(repinfo->c->type != comm_tcp_accept); if(repinfo->c->type == comm_udp) return; + if(repinfo->c->tcp_req_info) + repinfo->c->tcp_req_info->is_drop = 1; reclaim_tcp_handler(repinfo->c); } diff --git a/sbin/unwind/libunbound/util/netevent.h b/sbin/unwind/libunbound/util/netevent.h index f6b6af688b9..d80c72b3343 100644 --- a/sbin/unwind/libunbound/util/netevent.h +++ b/sbin/unwind/libunbound/util/netevent.h @@ -268,6 +268,9 @@ struct comm_point { /** the entry for the connection. */ struct tcl_addr* tcl_addr; + /** the structure to keep track of open requests on this channel */ + struct tcp_req_info* tcp_req_info; + #ifdef USE_MSG_FASTOPEN /** used to track if the sendto() call should be done when using TFO. */ int tcp_do_fastopen; @@ -455,6 +458,8 @@ struct comm_point* comm_point_create_udp_ancil(struct comm_base* base, * @param idle_timeout: TCP idle timeout in ms. * @param tcp_conn_limit: TCP connection limit info. * @param bufsize: size of buffer to create for handlers. + * @param spoolbuf: shared spool buffer for tcp_req_info structures. + * or NULL to not create those structures in the tcp handlers. * @param callback: callback function pointer for TCP handlers. * @param callback_arg: will be passed to your callback function. * @return: returns the TCP listener commpoint. You can find the @@ -464,7 +469,8 @@ struct comm_point* comm_point_create_udp_ancil(struct comm_base* base, */ struct comm_point* comm_point_create_tcp(struct comm_base* base, int fd, int num, int idle_timeout, struct tcl_list* tcp_conn_limit, - size_t bufsize, comm_point_callback_type* callback, void* callback_arg); + size_t bufsize, struct sldns_buffer* spoolbuf, + comm_point_callback_type* callback, void* callback_arg); /** * Create an outgoing TCP commpoint. No file descriptor is opened, left at -1. diff --git a/sbin/unwind/libunbound/validator/val_neg.c b/sbin/unwind/libunbound/validator/val_neg.c index c494a6be637..4c08e6bbc92 100644 --- a/sbin/unwind/libunbound/validator/val_neg.c +++ b/sbin/unwind/libunbound/validator/val_neg.c @@ -235,6 +235,7 @@ void neg_delete_data(struct val_neg_cache* neg, struct val_neg_data* el) /* remove it from the lru list */ neg_lru_remove(neg, el); + log_assert(neg->first != el && neg->last != el); /* go up the tree and reduce counts */ p = el; |