summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorflorian <florian@openbsd.org>2020-08-29 08:22:41 +0000
committerflorian <florian@openbsd.org>2020-08-29 08:22:41 +0000
commite47fef9e1b1660e28e09dda4a57a64dad989282f (patch)
treeeb22c67a05a3cb63025320e602aceaf028e38f8e
parenttypo; pointed out by Matthias (mpfr AT fn.de), thanks! (diff)
downloadwireguard-openbsd-e47fef9e1b1660e28e09dda4a57a64dad989282f.tar.xz
wireguard-openbsd-e47fef9e1b1660e28e09dda4a57a64dad989282f.zip
sync to libunbound-1.11.0
all heavy lifting done by sthen in unbound testing benno
-rw-r--r--sbin/unwind/libunbound/config.h33
-rw-r--r--sbin/unwind/libunbound/dns64/dns64.c2
-rw-r--r--sbin/unwind/libunbound/dnstap/dnstap.h22
-rw-r--r--sbin/unwind/libunbound/iterator/iter_utils.c57
-rw-r--r--sbin/unwind/libunbound/iterator/iterator.c11
-rw-r--r--sbin/unwind/libunbound/iterator/iterator.h5
-rw-r--r--sbin/unwind/libunbound/libunbound/libworker.c28
-rw-r--r--sbin/unwind/libunbound/libunbound/unbound.h1
-rw-r--r--sbin/unwind/libunbound/respip/respip.c41
-rw-r--r--sbin/unwind/libunbound/services/authzone.c63
-rw-r--r--sbin/unwind/libunbound/services/authzone.h9
-rw-r--r--sbin/unwind/libunbound/services/listen_dnsport.c90
-rw-r--r--sbin/unwind/libunbound/services/listen_dnsport.h9
-rw-r--r--sbin/unwind/libunbound/services/mesh.c107
-rw-r--r--sbin/unwind/libunbound/services/modstack.c9
-rw-r--r--sbin/unwind/libunbound/services/outside_network.c121
-rw-r--r--sbin/unwind/libunbound/services/outside_network.h14
-rw-r--r--sbin/unwind/libunbound/services/rpz.c33
-rw-r--r--sbin/unwind/libunbound/services/rpz.h8
-rw-r--r--sbin/unwind/libunbound/sldns/parseutil.c2
-rw-r--r--sbin/unwind/libunbound/util/config_file.c43
-rw-r--r--sbin/unwind/libunbound/util/config_file.h25
-rw-r--r--sbin/unwind/libunbound/util/configlexer.c6056
-rw-r--r--sbin/unwind/libunbound/util/configlexer.lex76
-rw-r--r--sbin/unwind/libunbound/util/configparser.h548
-rw-r--r--sbin/unwind/libunbound/util/configparser.y155
-rw-r--r--sbin/unwind/libunbound/util/fptr_wlist.c57
-rw-r--r--sbin/unwind/libunbound/util/iana_ports.inc3
-rw-r--r--sbin/unwind/libunbound/util/mini_event.h2
-rw-r--r--sbin/unwind/libunbound/util/net_help.c159
-rw-r--r--sbin/unwind/libunbound/util/net_help.h38
-rw-r--r--sbin/unwind/libunbound/util/netevent.c45
-rw-r--r--sbin/unwind/libunbound/util/netevent.h18
-rw-r--r--sbin/unwind/libunbound/util/shm_side/shm_main.c4
-rw-r--r--sbin/unwind/libunbound/validator/val_secalgo.c5
-rw-r--r--sbin/unwind/libunbound/validator/val_sigcrypt.c2
-rw-r--r--sbin/unwind/libunbound/validator/validator.c2
37 files changed, 4480 insertions, 3423 deletions
diff --git a/sbin/unwind/libunbound/config.h b/sbin/unwind/libunbound/config.h
index fc821a35fe2..f1192dd2948 100644
--- a/sbin/unwind/libunbound/config.h
+++ b/sbin/unwind/libunbound/config.h
@@ -17,7 +17,7 @@
/* #undef COMPAT_SHA512 */
/* Command line arguments used with configure */
-#define CONFCMDLINE "--enable-allsymbols --with-ssl=/usr --with-libevent=/usr --with-libexpat=/usr --without-pythonmodule --with-chroot-dir=/var/unbound --with-pidfile= --with-rootkey-file=/var/unbound/db/root.key --with-conf-file=/var/unbound/etc/unbound.conf --with-username=_unbound --disable-shared --without-pthreads"
+#define CONFCMDLINE "--enable-allsymbols --with-ssl=/usr --with-libevent=/usr --with-libexpat=/usr --without-pythonmodule --with-chroot-dir=/var/unbound --with-pidfile= --with-rootkey-file=/var/unbound/db/root.key --with-conf-file=/var/unbound/etc/unbound.conf --with-username=_unbound --disable-shared --disable-explicit-port-randomisation --without-pthreads"
/* Pathname to the Unbound configuration file */
#define CONFIGFILE "/var/unbound/etc/unbound.conf"
@@ -29,6 +29,9 @@
/* Whether daemon is deprecated */
/* #undef DEPRECATED_DAEMON */
+/* Define this to enable kernel based UDP source port randomization. */
+#define DISABLE_EXPLICIT_PORT_RANDOMISATION 1
+
/* default dnstap socket path */
/* #undef DNSTAP_SOCKET_PATH */
@@ -177,6 +180,9 @@
/* Define to 1 if you have the `endservent' function. */
#define HAVE_ENDSERVENT 1
+/* Define to 1 if you have the `ENGINE_cleanup' function. */
+#define HAVE_ENGINE_CLEANUP 1
+
/* Define to 1 if you have the `ERR_free_strings' function. */
#define HAVE_ERR_FREE_STRINGS 1
@@ -381,6 +387,9 @@
/* Define to 1 if you have the <openssl/conf.h> header file. */
#define HAVE_OPENSSL_CONF_H 1
+/* Define to 1 if you have the <openssl/core_names.h> header file. */
+/* #undef HAVE_OPENSSL_CORE_NAMES_H */
+
/* Define to 1 if you have the <openssl/dh.h> header file. */
#define HAVE_OPENSSL_DH_H 1
@@ -466,7 +475,7 @@
/* #undef HAVE_SHA512_UPDATE */
/* Define to 1 if you have the `shmget' function. */
-/* undef HAVE_SHMGET */
+/* #undef HAVE_SHMGET */
/* Define to 1 if you have the `sigprocmask' function. */
#define HAVE_SIGPROCMASK 1
@@ -495,8 +504,9 @@
/* 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_CTX_set_tlsext_ticket_key_evp_cb'
+ function. */
+/* #undef HAVE_SSL_CTX_SET_TLSEXT_TICKET_KEY_EVP_CB */
/* Define to 1 if you have the `SSL_get0_peername' function. */
/* #undef HAVE_SSL_GET0_PEERNAME */
@@ -591,6 +601,9 @@
/* Define to 1 if you have the <sys/wait.h> header file. */
#define HAVE_SYS_WAIT_H 1
+/* Define to 1 if you have the <TargetConditionals.h> header file. */
+/* #undef HAVE_TARGETCONDITIONALS_H */
+
/* Define to 1 if you have the <time.h> header file. */
#define HAVE_TIME_H 1
@@ -692,7 +705,7 @@
#define PACKAGE_NAME "unbound"
/* Define to the full name and version of this package. */
-#define PACKAGE_STRING "unbound 1.10.0"
+#define PACKAGE_STRING "unbound 1.11.0"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "unbound"
@@ -701,7 +714,7 @@
#define PACKAGE_URL ""
/* Define to the version of this package. */
-#define PACKAGE_VERSION "1.10.0"
+#define PACKAGE_VERSION "1.11.0"
/* default pidfile location */
#define PIDFILE ""
@@ -723,7 +736,7 @@
#define ROOT_CERT_FILE "/var/unbound/etc/icannbundle.pem"
/* version number for resource files */
-#define RSRC_PACKAGE_VERSION 1,10,0,0
+#define RSRC_PACKAGE_VERSION 1,11,0,0
/* Directory to chdir to */
#define RUN_DIR "/var/unbound/etc"
@@ -806,6 +819,9 @@
/* Define to 1 to use ipset support */
/* #undef USE_IPSET */
+/* Define if you enable libevent */
+#define USE_LIBEVENT 1
+
/* Define if you want to use internal select based events */
/* #undef USE_MINI_EVENT */
@@ -855,6 +871,9 @@
/* the version of the windows API enabled */
#define WINVER 0x0502
+/* Define if you want dynlib module. */
+/* #undef WITH_DYNLIBMODULE */
+
/* Define if you want Python module. */
/* #undef WITH_PYTHONMODULE */
diff --git a/sbin/unwind/libunbound/dns64/dns64.c b/sbin/unwind/libunbound/dns64/dns64.c
index 1a569059aff..5c70119a54d 100644
--- a/sbin/unwind/libunbound/dns64/dns64.c
+++ b/sbin/unwind/libunbound/dns64/dns64.c
@@ -227,7 +227,7 @@ ipv4_to_ptr(uint32_t ipv4, char ptr[], size_t nm_len)
static const char IPV4_PTR_SUFFIX[] = "\07in-addr\04arpa";
int i;
char* c = ptr;
- log_assert(nm_len == MAX_PTR_QNAME_IPV4);
+ log_assert(nm_len == MAX_PTR_QNAME_IPV4); (void)nm_len;
for (i = 0; i < 4; ++i) {
*c = uitoa((unsigned int)(ipv4 % 256), c + 1);
diff --git a/sbin/unwind/libunbound/dnstap/dnstap.h b/sbin/unwind/libunbound/dnstap/dnstap.h
index 0103c1c0e20..cfef6fc420b 100644
--- a/sbin/unwind/libunbound/dnstap/dnstap.h
+++ b/sbin/unwind/libunbound/dnstap/dnstap.h
@@ -40,16 +40,16 @@
#ifdef USE_DNSTAP
struct config_file;
-struct fstrm_io;
-struct fstrm_queue;
struct sldns_buffer;
+struct dt_msg_queue;
struct dt_env {
- /** dnstap I/O thread */
- struct fstrm_iothr *iothr;
+ /** the io thread (made by the struct daemon) */
+ struct dt_io_thread* dtio;
- /** dnstap I/O thread input queue */
- struct fstrm_iothr_queue *ioq;
+ /** valid in worker struct, not in daemon struct, the per-worker
+ * message list */
+ struct dt_msg_queue* msgqueue;
/** dnstap "identity" field, NULL if disabled */
char *identity;
@@ -84,12 +84,11 @@ struct dt_env {
* of the structure) to ensure lock-free access to its own per-worker circular
* queue. Duplicate the environment object if more than one worker needs to
* share access to the dnstap I/O socket.
- * @param socket_path: path to dnstap logging socket, must be non-NULL.
- * @param num_workers: number of worker threads, must be > 0.
+ * @param cfg: with config settings.
* @return dt_env object, NULL on failure.
*/
struct dt_env *
-dt_create(const char *socket_path, unsigned num_workers);
+dt_create(struct config_file* cfg);
/**
* Apply config settings.
@@ -108,6 +107,11 @@ int
dt_init(struct dt_env *env);
/**
+ * Deletes the per-worker state created by dt_init
+ */
+void dt_deinit(struct dt_env *env);
+
+/**
* Delete dnstap environment object. Closes dnstap I/O socket and deletes all
* per-worker I/O queues.
*/
diff --git a/sbin/unwind/libunbound/iterator/iter_utils.c b/sbin/unwind/libunbound/iterator/iter_utils.c
index 3c14de86e7b..7bc67da69b2 100644
--- a/sbin/unwind/libunbound/iterator/iter_utils.c
+++ b/sbin/unwind/libunbound/iterator/iter_utils.c
@@ -484,6 +484,63 @@ iter_filter_order(struct iter_env* iter_env, struct module_env* env,
got_num = num4ok;
*selected_rtt = num4_lowrtt;
}
+ } else if (env->cfg->prefer_ip4) {
+ int got_num4 = 0;
+ int low_rtt4 = 0;
+ int i;
+ int attempt = -1; /* filter to make sure addresses have
+ less attempts on them than the first, to force round
+ robin when all the IPv4 addresses fail */
+ int num6ok = 0; /* number ip6 at low attempt count */
+ int num6_lowrtt = 0;
+ prev = NULL;
+ a = dp->result_list;
+ for(i = 0; i < got_num; i++) {
+ swap_to_front = 0;
+ if(a->addr.ss_family != AF_INET && attempt == -1) {
+ /* if we only have ip6 at low attempt count,
+ * then ip4 is failing, and we need to
+ * select one of the remaining IPv6 addrs */
+ attempt = a->attempts;
+ num6ok++;
+ num6_lowrtt = a->sel_rtt;
+ } else if(a->addr.ss_family != AF_INET && attempt == a->attempts) {
+ num6ok++;
+ if(num6_lowrtt == 0 || a->sel_rtt < num6_lowrtt) {
+ num6_lowrtt = a->sel_rtt;
+ }
+ }
+ if(a->addr.ss_family == AF_INET) {
+ if(attempt == -1) {
+ attempt = a->attempts;
+ } else if(a->attempts > attempt) {
+ break;
+ }
+ got_num4++;
+ swap_to_front = 1;
+ if(low_rtt4 == 0 || a->sel_rtt < low_rtt4) {
+ low_rtt4 = a->sel_rtt;
+ }
+ }
+ /* swap to front if IPv4, or move to next result */
+ if(swap_to_front && prev) {
+ n = a->next_result;
+ prev->next_result = n;
+ a->next_result = dp->result_list;
+ dp->result_list = a;
+ a = n;
+ } else {
+ prev = a;
+ a = a->next_result;
+ }
+ }
+ if(got_num4 > 0) {
+ got_num = got_num4;
+ *selected_rtt = low_rtt4;
+ } else if(num6ok > 0) {
+ got_num = num6ok;
+ *selected_rtt = num6_lowrtt;
+ }
}
return got_num;
}
diff --git a/sbin/unwind/libunbound/iterator/iterator.c b/sbin/unwind/libunbound/iterator/iterator.c
index 9d36660c0b1..23b07ea9095 100644
--- a/sbin/unwind/libunbound/iterator/iterator.c
+++ b/sbin/unwind/libunbound/iterator/iterator.c
@@ -162,7 +162,7 @@ iter_new(struct module_qstate* qstate, int id)
iq->qchase = qstate->qinfo;
outbound_list_init(&iq->outlist);
iq->minimise_count = 0;
- iq->minimise_timeout_count = 0;
+ iq->timeout_count = 0;
if (qstate->env->cfg->qname_minimisation)
iq->minimisation_state = INIT_MINIMISE_STATE;
else
@@ -2239,7 +2239,7 @@ processQueryTargets(struct module_qstate* qstate, struct iter_qstate* iq,
iq->qinfo_out.qname = iq->qchase.qname;
iq->qinfo_out.qname_len = iq->qchase.qname_len;
iq->minimise_count++;
- iq->minimise_timeout_count = 0;
+ iq->timeout_count = 0;
iter_dec_attempts(iq->dp, 1);
@@ -2327,7 +2327,7 @@ processQueryTargets(struct module_qstate* qstate, struct iter_qstate* iq,
}
}
if(iq->minimisation_state == SKIP_MINIMISE_STATE) {
- if(iq->minimise_timeout_count < MAX_MINIMISE_TIMEOUT_COUNT)
+ if(iq->timeout_count < MAX_MINIMISE_TIMEOUT_COUNT)
/* Do not increment qname, continue incrementing next
* iteration */
iq->minimisation_state = MINIMISE_STATE;
@@ -2668,14 +2668,15 @@ processQueryResponse(struct module_qstate* qstate, struct iter_qstate* iq,
if(iq->response == NULL) {
/* Don't increment qname when QNAME minimisation is enabled */
if(qstate->env->cfg->qname_minimisation) {
- iq->minimise_timeout_count++;
iq->minimisation_state = SKIP_MINIMISE_STATE;
}
+ iq->timeout_count++;
iq->chase_to_rd = 0;
iq->dnssec_lame_query = 0;
verbose(VERB_ALGO, "query response was timeout");
return next_state(iq, QUERYTARGETS_STATE);
}
+ iq->timeout_count = 0;
type = response_type_from_server(
(int)((iq->chase_flags&BIT_RD) || iq->chase_to_rd),
iq->response, &iq->qinfo_out, iq->dp);
@@ -3690,7 +3691,7 @@ process_response(struct module_qstate* qstate, struct iter_qstate* iq,
iq->response = NULL;
iq->state = QUERY_RESP_STATE;
if(event == module_event_noreply || event == module_event_error) {
- if(event == module_event_noreply && iq->sent_count >= 3 &&
+ if(event == module_event_noreply && iq->timeout_count >= 3 &&
qstate->env->cfg->use_caps_bits_for_id &&
!iq->caps_fallback && !is_caps_whitelisted(ie, iq)) {
/* start fallback */
diff --git a/sbin/unwind/libunbound/iterator/iterator.h b/sbin/unwind/libunbound/iterator/iterator.h
index 53dcab3b18b..342ac207e82 100644
--- a/sbin/unwind/libunbound/iterator/iterator.h
+++ b/sbin/unwind/libunbound/iterator/iterator.h
@@ -398,8 +398,9 @@ struct iter_qstate {
/**
* Count number of time-outs. Used to prevent resolving failures when
- * the QNAME minimisation QTYPE is blocked. */
- int minimise_timeout_count;
+ * the QNAME minimisation QTYPE is blocked. Used to determine if
+ * capsforid fallback should be started.*/
+ int timeout_count;
/** True if the current response is from auth_zone */
int auth_zone_response;
diff --git a/sbin/unwind/libunbound/libunbound/libworker.c b/sbin/unwind/libunbound/libunbound/libworker.c
index 6cb97ff1fd4..44b8d790561 100644
--- a/sbin/unwind/libunbound/libunbound/libworker.c
+++ b/sbin/unwind/libunbound/libunbound/libworker.c
@@ -74,6 +74,14 @@
#include "sldns/sbuffer.h"
#include "sldns/str2wire.h"
+#ifdef HAVE_TARGETCONDITIONALS_H
+#include <TargetConditionals.h>
+#endif
+
+#if defined(TARGET_OS_TV) || defined(TARGET_OS_WATCH)
+#undef HAVE_FORK
+#endif
+
/** handle new query command for bg worker */
static void handle_newq(struct libworker* w, uint8_t* buf, uint32_t len);
@@ -225,12 +233,12 @@ libworker_setup(struct ub_ctx* ctx, int is_bg, struct ub_event_base* eb)
w->back = outside_network_create(w->base, cfg->msg_buffer_size,
(size_t)cfg->outgoing_num_ports, cfg->out_ifs,
cfg->num_out_ifs, cfg->do_ip4, cfg->do_ip6,
- cfg->do_tcp?cfg->outgoing_num_tcp:0,
+ cfg->do_tcp?cfg->outgoing_num_tcp:0, cfg->ip_dscp,
w->env->infra_cache, w->env->rnd, cfg->use_caps_bits_for_id,
ports, numports, cfg->unwanted_threshold,
cfg->outgoing_tcp_mss, &libworker_alloc_cleanup, w,
cfg->do_udp || cfg->udp_upstream_without_downstream, w->sslctx,
- cfg->delay_close, NULL);
+ cfg->delay_close, cfg->tls_use_sni, NULL);
w->env->outnet = w->back;
if(!w->is_bg || w->is_bg_thread) {
lock_basic_unlock(&ctx->cfglock);
@@ -1047,3 +1055,19 @@ wsvc_cron_cb(void* ATTR_UNUSED(arg))
log_assert(0);
}
#endif /* UB_ON_WINDOWS */
+
+#ifdef USE_DNSTAP
+void dtio_tap_callback(int ATTR_UNUSED(fd), short ATTR_UNUSED(ev),
+ void* ATTR_UNUSED(arg))
+{
+ log_assert(0);
+}
+#endif
+
+#ifdef USE_DNSTAP
+void dtio_mainfdcallback(int ATTR_UNUSED(fd), short ATTR_UNUSED(ev),
+ void* ATTR_UNUSED(arg))
+{
+ log_assert(0);
+}
+#endif
diff --git a/sbin/unwind/libunbound/libunbound/unbound.h b/sbin/unwind/libunbound/libunbound/unbound.h
index ca9592d62d5..b53426c76d5 100644
--- a/sbin/unwind/libunbound/libunbound/unbound.h
+++ b/sbin/unwind/libunbound/libunbound/unbound.h
@@ -642,6 +642,7 @@ struct ub_shm_stat_info {
long long respip;
long long dnscrypt_shared_secret;
long long dnscrypt_nonce;
+ long long dynlib;
} mem;
};
diff --git a/sbin/unwind/libunbound/respip/respip.c b/sbin/unwind/libunbound/respip/respip.c
index f504f55791a..6fa4f18851f 100644
--- a/sbin/unwind/libunbound/respip/respip.c
+++ b/sbin/unwind/libunbound/respip/respip.c
@@ -502,10 +502,16 @@ copy_rrset(const struct ub_packed_rrset_key* key, struct regional* region)
ck->entry.hash = key->entry.hash;
ck->entry.key = ck;
ck->rk = key->rk;
- ck->rk.dname = regional_alloc_init(region, key->rk.dname,
- key->rk.dname_len);
- if(!ck->rk.dname)
- return NULL;
+ if(key->rk.dname) {
+ ck->rk.dname = regional_alloc_init(region, key->rk.dname,
+ key->rk.dname_len);
+ if(!ck->rk.dname)
+ return NULL;
+ ck->rk.dname_len = key->rk.dname_len;
+ } else {
+ ck->rk.dname = NULL;
+ ck->rk.dname_len = 0;
+ }
if((unsigned)data->count >= 0xffff00U)
return NULL; /* guard against integer overflow in dsize */
@@ -908,6 +914,7 @@ respip_rewrite_reply(const struct query_info* qinfo,
int ret = 1;
struct ub_packed_rrset_key* redirect_rrset = NULL;
struct rpz* r;
+ struct auth_zone* a;
struct ub_packed_rrset_key* data = NULL;
int rpz_used = 0;
int rpz_log = 0;
@@ -949,6 +956,10 @@ respip_rewrite_reply(const struct query_info* qinfo,
}
if(!raddr && !view->isfirst)
goto done;
+ if(!raddr && view->isfirst) {
+ lock_rw_unlock(&view->lock);
+ view = NULL;
+ }
}
if(!raddr && (raddr = respip_addr_lookup(rep, ipset,
&rrset_id))) {
@@ -959,7 +970,9 @@ respip_rewrite_reply(const struct query_info* qinfo,
ipset->tagname, ipset->num_tags);
}
lock_rw_rdlock(&az->rpz_lock);
- for(r = az->rpz_first; r && !raddr; r = r->next) {
+ for(a = az->rpz_first; a && !raddr; a = a->rpz_az_next) {
+ lock_rw_rdlock(&a->lock);
+ r = a->rpz;
if(!r->taglist || taglist_intersect(r->taglist,
r->taglistlen, ctaglist, ctaglen)) {
if((raddr = respip_addr_lookup(rep,
@@ -969,16 +982,21 @@ respip_rewrite_reply(const struct query_info* qinfo,
region, &rpz_used)) {
log_err("out of memory");
lock_rw_unlock(&raddr->lock);
+ lock_rw_unlock(&a->lock);
lock_rw_unlock(&az->rpz_lock);
return 0;
}
- if(!rpz_used) {
- lock_rw_unlock(&raddr->lock);
- raddr = NULL;
- actinfo->rpz_disabled++;
+ if(rpz_used) {
+ /* break to make sure 'a' stays pointed
+ * to used auth_zone, and keeps lock */
+ break;
}
+ lock_rw_unlock(&raddr->lock);
+ raddr = NULL;
+ actinfo->rpz_disabled++;
}
- }
+ }
+ lock_rw_unlock(&a->lock);
}
lock_rw_unlock(&az->rpz_lock);
if(raddr && !search_only) {
@@ -1032,6 +1050,9 @@ respip_rewrite_reply(const struct query_info* qinfo,
if(raddr) {
lock_rw_unlock(&raddr->lock);
}
+ if(rpz_used) {
+ lock_rw_unlock(&a->lock);
+ }
return ret;
}
diff --git a/sbin/unwind/libunbound/services/authzone.c b/sbin/unwind/libunbound/services/authzone.c
index 34170abaf4a..a26d1003abe 100644
--- a/sbin/unwind/libunbound/services/authzone.c
+++ b/sbin/unwind/libunbound/services/authzone.c
@@ -392,12 +392,12 @@ auth_zone_delete(struct auth_zone* z, struct auth_zones* az)
if(az && z->rpz) {
/* keep RPZ linked list intact */
lock_rw_wrlock(&az->rpz_lock);
- if(z->rpz->prev)
- z->rpz->prev->next = z->rpz->next;
+ if(z->rpz_az_prev)
+ z->rpz_az_prev->rpz_az_next = z->rpz_az_next;
else
- az->rpz_first = z->rpz->next;
- if(z->rpz->next)
- z->rpz->next->prev = z->rpz->prev;
+ az->rpz_first = z->rpz_az_next;
+ if(z->rpz_az_next)
+ z->rpz_az_next->rpz_az_prev = z->rpz_az_prev;
lock_rw_unlock(&az->rpz_lock);
}
if(z->rpz)
@@ -426,9 +426,11 @@ auth_zone_create(struct auth_zones* az, uint8_t* nm, size_t nmlen,
}
rbtree_init(&z->data, &auth_data_cmp);
lock_rw_init(&z->lock);
- lock_protect(&z->lock, &z->name, sizeof(*z)-sizeof(rbnode_type));
+ lock_protect(&z->lock, &z->name, sizeof(*z)-sizeof(rbnode_type)-
+ sizeof(&z->rpz_az_next)-sizeof(&z->rpz_az_prev));
lock_rw_wrlock(&z->lock);
- /* z lock protects all, except rbtree itself, which is az->lock */
+ /* z lock protects all, except rbtree itself and the rpz linked list
+ * pointers, which are protected using az->lock */
if(!rbtree_insert(&az->ztree, &z->node)) {
lock_rw_unlock(&z->lock);
auth_zone_delete(z, NULL);
@@ -1178,9 +1180,9 @@ az_insert_rr(struct auth_zone* z, uint8_t* rr, size_t rr_len,
return 0;
}
if(z->rpz) {
- if(!(rpz_insert_rr(z->rpz, z->namelen, dname, dname_len,
- rr_type, rr_class, rr_ttl, rdata, rdatalen, rr,
- rr_len)))
+ if(!(rpz_insert_rr(z->rpz, z->name, z->namelen, dname,
+ dname_len, rr_type, rr_class, rr_ttl, rdata, rdatalen,
+ rr, rr_len)))
return 0;
}
return 1;
@@ -1864,15 +1866,26 @@ auth_zones_cfg(struct auth_zones* az, struct config_auth* c)
struct auth_xfer* x = NULL;
/* create zone */
+ if(c->isrpz) {
+ /* if the rpz lock is needed, grab it before the other
+ * locks to avoid a lock dependency cycle */
+ lock_rw_wrlock(&az->rpz_lock);
+ }
lock_rw_wrlock(&az->lock);
if(!(z=auth_zones_find_or_add_zone(az, c->name))) {
lock_rw_unlock(&az->lock);
+ if(c->isrpz) {
+ lock_rw_unlock(&az->rpz_lock);
+ }
return 0;
}
if(c->masters || c->urls) {
if(!(x=auth_zones_find_or_add_xfer(az, z))) {
lock_rw_unlock(&az->lock);
lock_rw_unlock(&z->lock);
+ if(c->isrpz) {
+ lock_rw_unlock(&az->rpz_lock);
+ }
return 0;
}
}
@@ -1887,6 +1900,9 @@ auth_zones_cfg(struct auth_zones* az, struct config_auth* c)
lock_basic_unlock(&x->lock);
}
lock_rw_unlock(&z->lock);
+ if(c->isrpz) {
+ lock_rw_unlock(&az->rpz_lock);
+ }
return 0;
}
z->for_downstream = c->for_downstream;
@@ -1897,11 +1913,14 @@ auth_zones_cfg(struct auth_zones* az, struct config_auth* c)
fatal_exit("Could not setup RPZ zones");
return 0;
}
- lock_rw_wrlock(&az->rpz_lock);
- z->rpz->next = az->rpz_first;
+ lock_protect(&z->lock, &z->rpz->local_zones, sizeof(*z->rpz));
+ /* the az->rpz_lock is locked above */
+ z->rpz_az_next = az->rpz_first;
if(az->rpz_first)
- az->rpz_first->prev = z->rpz;
- az->rpz_first = z->rpz;
+ az->rpz_first->rpz_az_prev = z;
+ az->rpz_first = z;
+ }
+ if(c->isrpz) {
lock_rw_unlock(&az->rpz_lock);
}
@@ -5331,7 +5350,7 @@ void auth_xfer_transfer_lookup_callback(void* arg, int rcode, sldns_buffer* buf,
log_assert(xfr->task_transfer);
lock_basic_lock(&xfr->lock);
env = xfr->task_transfer->env;
- if(env->outnet->want_to_quit) {
+ if(!env || env->outnet->want_to_quit) {
lock_basic_unlock(&xfr->lock);
return; /* stop on quit */
}
@@ -5770,7 +5789,7 @@ auth_xfer_transfer_timer_callback(void* arg)
log_assert(xfr->task_transfer);
lock_basic_lock(&xfr->lock);
env = xfr->task_transfer->env;
- if(env->outnet->want_to_quit) {
+ if(!env || env->outnet->want_to_quit) {
lock_basic_unlock(&xfr->lock);
return; /* stop on quit */
}
@@ -5812,7 +5831,7 @@ auth_xfer_transfer_tcp_callback(struct comm_point* c, void* arg, int err,
log_assert(xfr->task_transfer);
lock_basic_lock(&xfr->lock);
env = xfr->task_transfer->env;
- if(env->outnet->want_to_quit) {
+ if(!env || env->outnet->want_to_quit) {
lock_basic_unlock(&xfr->lock);
return 0; /* stop on quit */
}
@@ -5893,7 +5912,7 @@ auth_xfer_transfer_http_callback(struct comm_point* c, void* arg, int err,
log_assert(xfr->task_transfer);
lock_basic_lock(&xfr->lock);
env = xfr->task_transfer->env;
- if(env->outnet->want_to_quit) {
+ if(!env || env->outnet->want_to_quit) {
lock_basic_unlock(&xfr->lock);
return 0; /* stop on quit */
}
@@ -6107,7 +6126,7 @@ auth_xfer_probe_timer_callback(void* arg)
log_assert(xfr->task_probe);
lock_basic_lock(&xfr->lock);
env = xfr->task_probe->env;
- if(env->outnet->want_to_quit) {
+ if(!env || env->outnet->want_to_quit) {
lock_basic_unlock(&xfr->lock);
return; /* stop on quit */
}
@@ -6143,7 +6162,7 @@ auth_xfer_probe_udp_callback(struct comm_point* c, void* arg, int err,
log_assert(xfr->task_probe);
lock_basic_lock(&xfr->lock);
env = xfr->task_probe->env;
- if(env->outnet->want_to_quit) {
+ if(!env || env->outnet->want_to_quit) {
lock_basic_unlock(&xfr->lock);
return 0; /* stop on quit */
}
@@ -6388,7 +6407,7 @@ void auth_xfer_probe_lookup_callback(void* arg, int rcode, sldns_buffer* buf,
log_assert(xfr->task_probe);
lock_basic_lock(&xfr->lock);
env = xfr->task_probe->env;
- if(env->outnet->want_to_quit) {
+ if(!env || env->outnet->want_to_quit) {
lock_basic_unlock(&xfr->lock);
return; /* stop on quit */
}
@@ -6465,7 +6484,7 @@ auth_xfer_timer(void* arg)
log_assert(xfr->task_nextprobe);
lock_basic_lock(&xfr->lock);
env = xfr->task_nextprobe->env;
- if(env->outnet->want_to_quit) {
+ if(!env || env->outnet->want_to_quit) {
lock_basic_unlock(&xfr->lock);
return; /* stop on quit */
}
diff --git a/sbin/unwind/libunbound/services/authzone.h b/sbin/unwind/libunbound/services/authzone.h
index 9bb131ad8b3..3d94f30d620 100644
--- a/sbin/unwind/libunbound/services/authzone.h
+++ b/sbin/unwind/libunbound/services/authzone.h
@@ -82,8 +82,8 @@ struct auth_zones {
size_t num_query_up;
/** number of queries downstream */
size_t num_query_down;
- /** first rpz item in linked list */
- struct rpz* rpz_first;
+ /** first auth zone containing rpz item in linked list */
+ struct auth_zone* rpz_first;
/** rw lock for rpz linked list, needed when iterating or editing linked
* list. */
lock_rw_type rpz_lock;
@@ -138,6 +138,11 @@ struct auth_zone {
int zone_deleted;
/** deletelist pointer, unused normally except during delete */
struct auth_zone* delete_next;
+ /* not protected by auth_zone lock, must be last items in struct */
+ /** next auth zone containing RPZ data, or NULL */
+ struct auth_zone* rpz_az_next;
+ /** previous auth zone containing RPZ data, or NULL */
+ struct auth_zone* rpz_az_prev;
};
/**
diff --git a/sbin/unwind/libunbound/services/listen_dnsport.c b/sbin/unwind/libunbound/services/listen_dnsport.c
index 7e2afd843be..cc56d3fd316 100644
--- a/sbin/unwind/libunbound/services/listen_dnsport.c
+++ b/sbin/unwind/libunbound/services/listen_dnsport.c
@@ -179,9 +179,10 @@ int
create_udp_sock(int family, int socktype, struct sockaddr* addr,
socklen_t addrlen, int v6only, int* inuse, int* noproto,
int rcv, int snd, int listen, int* reuseport, int transparent,
- int freebind, int use_systemd)
+ int freebind, int use_systemd, int dscp)
{
int s;
+ char* err;
#if defined(SO_REUSEADDR) || defined(SO_REUSEPORT) || defined(IPV6_USE_MIN_MTU) || defined(IP_TRANSPARENT) || defined(IP_BINDANY) || defined(IP_FREEBIND) || defined (SO_BINDANY)
int on=1;
#endif
@@ -451,6 +452,9 @@ create_udp_sock(int family, int socktype, struct sockaddr* addr,
# endif
#endif /* SO_SNDBUF */
}
+ err = set_ip_dscp(s, family, dscp);
+ if(err != NULL)
+ log_warn("error setting IP DiffServ codepoint %d on UDP socket: %s", dscp, err);
if(family == AF_INET6) {
# if defined(IPV6_V6ONLY)
if(v6only) {
@@ -638,9 +642,10 @@ create_udp_sock(int family, int socktype, struct sockaddr* addr,
int
create_tcp_accept_sock(struct addrinfo *addr, int v6only, int* noproto,
- int* reuseport, int transparent, int mss, int freebind, int use_systemd)
+ int* reuseport, int transparent, int mss, int freebind, int use_systemd, int dscp)
{
int s;
+ char* err;
#if defined(SO_REUSEADDR) || defined(SO_REUSEPORT) || defined(IPV6_V6ONLY) || defined(IP_TRANSPARENT) || defined(IP_BINDANY) || defined(IP_FREEBIND) || defined(SO_BINDANY)
int on = 1;
#endif
@@ -793,6 +798,9 @@ create_tcp_accept_sock(struct addrinfo *addr, int v6only, int* noproto,
strerror(errno));
}
#endif /* IP_TRANSPARENT || IP_BINDANY || SO_BINDANY */
+ err = set_ip_dscp(s, addr->ai_family, dscp);
+ if(err != NULL)
+ log_warn("error setting IP DiffServ codepoint %d on TCP socket: %s", dscp, err);
if(
#ifdef HAVE_SYSTEMD
!got_fd_from_systemd &&
@@ -866,6 +874,55 @@ create_tcp_accept_sock(struct addrinfo *addr, int v6only, int* noproto,
return s;
}
+char*
+set_ip_dscp(int socket, int addrfamily, int dscp)
+{
+ int ds;
+
+ if(dscp == 0)
+ return NULL;
+ ds = dscp << 2;
+ switch(addrfamily) {
+ case AF_INET6:
+ if(setsockopt(socket, IPPROTO_IPV6, IPV6_TCLASS, (void*)&ds, sizeof(ds)) < 0)
+ return sock_strerror(errno);
+ break;
+ default:
+ if(setsockopt(socket, IPPROTO_IP, IP_TOS, (void*)&ds, sizeof(ds)) < 0)
+ return sock_strerror(errno);
+ break;
+ }
+ return NULL;
+}
+
+# ifndef USE_WINSOCK
+char*
+sock_strerror(int errn)
+{
+ return strerror(errn);
+}
+
+void
+sock_close(int socket)
+{
+ close(socket);
+}
+
+# else
+char*
+sock_strerror(int ATTR_UNUSED(errn))
+{
+ return wsa_strerror(WSAGetLastError());
+}
+
+void
+sock_close(int socket)
+{
+ closesocket(socket);
+}
+
+# endif /* USE_WINSOCK */
+
int
create_local_accept_sock(const char *path, int* noproto, int use_systemd)
{
@@ -952,7 +1009,7 @@ err:
static int
make_sock(int stype, const char* ifname, const char* port,
struct addrinfo *hints, int v6only, int* noip6, size_t rcv, size_t snd,
- int* reuseport, int transparent, int tcp_mss, int freebind, int use_systemd)
+ int* reuseport, int transparent, int tcp_mss, int freebind, int use_systemd, int dscp)
{
struct addrinfo *res = NULL;
int r, s, inuse, noproto;
@@ -980,7 +1037,7 @@ make_sock(int stype, const char* ifname, const char* port,
s = create_udp_sock(res->ai_family, res->ai_socktype,
(struct sockaddr*)res->ai_addr, res->ai_addrlen,
v6only, &inuse, &noproto, (int)rcv, (int)snd, 1,
- reuseport, transparent, freebind, use_systemd);
+ reuseport, transparent, freebind, use_systemd, dscp);
if(s == -1 && inuse) {
log_err("bind: address already in use");
} else if(s == -1 && noproto && hints->ai_family == AF_INET6){
@@ -988,7 +1045,7 @@ make_sock(int stype, const char* ifname, const char* port,
}
} else {
s = create_tcp_accept_sock(res, v6only, &noproto, reuseport,
- transparent, tcp_mss, freebind, use_systemd);
+ transparent, tcp_mss, freebind, use_systemd, dscp);
if(s == -1 && noproto && hints->ai_family == AF_INET6){
*noip6 = 1;
}
@@ -1001,7 +1058,7 @@ make_sock(int stype, const char* ifname, const char* port,
static int
make_sock_port(int stype, const char* ifname, const char* port,
struct addrinfo *hints, int v6only, int* noip6, size_t rcv, size_t snd,
- int* reuseport, int transparent, int tcp_mss, int freebind, int use_systemd)
+ int* reuseport, int transparent, int tcp_mss, int freebind, int use_systemd, int dscp)
{
char* s = strchr(ifname, '@');
if(s) {
@@ -1023,10 +1080,10 @@ make_sock_port(int stype, const char* ifname, const char* port,
(void)strlcpy(p, s+1, sizeof(p));
p[strlen(s+1)]=0;
return make_sock(stype, newif, p, hints, v6only, noip6,
- rcv, snd, reuseport, transparent, tcp_mss, freebind, use_systemd);
+ rcv, snd, reuseport, transparent, tcp_mss, freebind, use_systemd, dscp);
}
return make_sock(stype, ifname, port, hints, v6only, noip6, rcv, snd,
- reuseport, transparent, tcp_mss, freebind, use_systemd);
+ reuseport, transparent, tcp_mss, freebind, use_systemd, dscp);
}
/**
@@ -1146,6 +1203,7 @@ if_is_ssl(const char* ifname, const char* port, int ssl_port,
* @param freebind: set IP_FREEBIND socket option.
* @param use_systemd: if true, fetch sockets from systemd.
* @param dnscrypt_port: dnscrypt service port number
+ * @param dscp: DSCP to use.
* @return: returns false on error.
*/
static int
@@ -1154,7 +1212,7 @@ ports_create_if(const char* ifname, int do_auto, int do_udp, int do_tcp,
size_t rcv, size_t snd, int ssl_port,
struct config_strlist* tls_additional_port, int* reuseport,
int transparent, int tcp_mss, int freebind, int use_systemd,
- int dnscrypt_port)
+ int dnscrypt_port, int dscp)
{
int s, noip6=0;
#ifdef USE_DNSCRYPT
@@ -1171,7 +1229,7 @@ ports_create_if(const char* ifname, int do_auto, int do_udp, int do_tcp,
if(do_auto) {
if((s = make_sock_port(SOCK_DGRAM, ifname, port, hints, 1,
&noip6, rcv, snd, reuseport, transparent,
- tcp_mss, freebind, use_systemd)) == -1) {
+ tcp_mss, freebind, use_systemd, dscp)) == -1) {
if(noip6) {
log_warn("IPv6 protocol not available");
return 1;
@@ -1200,7 +1258,7 @@ ports_create_if(const char* ifname, int do_auto, int do_udp, int do_tcp,
/* regular udp socket */
if((s = make_sock_port(SOCK_DGRAM, ifname, port, hints, 1,
&noip6, rcv, snd, reuseport, transparent,
- tcp_mss, freebind, use_systemd)) == -1) {
+ tcp_mss, freebind, use_systemd, dscp)) == -1) {
if(noip6) {
log_warn("IPv6 protocol not available");
return 1;
@@ -1222,7 +1280,7 @@ ports_create_if(const char* ifname, int do_auto, int do_udp, int do_tcp,
tls_additional_port);
if((s = make_sock_port(SOCK_STREAM, ifname, port, hints, 1,
&noip6, 0, 0, reuseport, transparent, tcp_mss,
- freebind, use_systemd)) == -1) {
+ freebind, use_systemd, dscp)) == -1) {
if(noip6) {
/*log_warn("IPv6 protocol not available");*/
return 1;
@@ -1421,7 +1479,7 @@ listening_ports_open(struct config_file* cfg, int* reuseport)
cfg->ssl_port, cfg->tls_additional_port,
reuseport, cfg->ip_transparent,
cfg->tcp_mss, cfg->ip_freebind, cfg->use_systemd,
- cfg->dnscrypt_port)) {
+ cfg->dnscrypt_port, cfg->ip_dscp)) {
listening_ports_free(list);
return NULL;
}
@@ -1435,7 +1493,7 @@ listening_ports_open(struct config_file* cfg, int* reuseport)
cfg->ssl_port, cfg->tls_additional_port,
reuseport, cfg->ip_transparent,
cfg->tcp_mss, cfg->ip_freebind, cfg->use_systemd,
- cfg->dnscrypt_port)) {
+ cfg->dnscrypt_port, cfg->ip_dscp)) {
listening_ports_free(list);
return NULL;
}
@@ -1451,7 +1509,7 @@ listening_ports_open(struct config_file* cfg, int* reuseport)
cfg->ssl_port, cfg->tls_additional_port,
reuseport, cfg->ip_transparent,
cfg->tcp_mss, cfg->ip_freebind, cfg->use_systemd,
- cfg->dnscrypt_port)) {
+ cfg->dnscrypt_port, cfg->ip_dscp)) {
listening_ports_free(list);
return NULL;
}
@@ -1465,7 +1523,7 @@ listening_ports_open(struct config_file* cfg, int* reuseport)
cfg->ssl_port, cfg->tls_additional_port,
reuseport, cfg->ip_transparent,
cfg->tcp_mss, cfg->ip_freebind, cfg->use_systemd,
- cfg->dnscrypt_port)) {
+ cfg->dnscrypt_port, cfg->ip_dscp)) {
listening_ports_free(list);
return NULL;
}
diff --git a/sbin/unwind/libunbound/services/listen_dnsport.h b/sbin/unwind/libunbound/services/listen_dnsport.h
index ad84d832264..ddd1b63a4d9 100644
--- a/sbin/unwind/libunbound/services/listen_dnsport.h
+++ b/sbin/unwind/libunbound/services/listen_dnsport.h
@@ -205,11 +205,12 @@ void listen_start_accept(struct listen_dnsport* listen);
* @param transparent: set IP_TRANSPARENT socket option.
* @param freebind: set IP_FREEBIND socket option.
* @param use_systemd: if true, fetch sockets from systemd.
+ * @param dscp: DSCP to use.
* @return: the socket. -1 on error.
*/
int create_udp_sock(int family, int socktype, struct sockaddr* addr,
socklen_t addrlen, int v6only, int* inuse, int* noproto, int rcv,
- int snd, int listen, int* reuseport, int transparent, int freebind, int use_systemd);
+ int snd, int listen, int* reuseport, int transparent, int freebind, int use_systemd, int dscp);
/**
* Create and bind TCP listening socket
@@ -222,10 +223,11 @@ int create_udp_sock(int family, int socktype, struct sockaddr* addr,
* @param mss: maximum segment size of the socket. if zero, leaves the default.
* @param freebind: set IP_FREEBIND socket option.
* @param use_systemd: if true, fetch sockets from systemd.
+ * @param dscp: DSCP to use.
* @return: the socket. -1 on error.
*/
int create_tcp_accept_sock(struct addrinfo *addr, int v6only, int* noproto,
- int* reuseport, int transparent, int mss, int freebind, int use_systemd);
+ int* reuseport, int transparent, int mss, int freebind, int use_systemd, int dscp);
/**
* Create and bind local listening socket
@@ -367,4 +369,7 @@ 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);
+char* set_ip_dscp(int socket, int addrfamily, int ds);
+char* sock_strerror(int errn);
+
#endif /* LISTEN_DNSPORT_H */
diff --git a/sbin/unwind/libunbound/services/mesh.c b/sbin/unwind/libunbound/services/mesh.c
index 9114ef4c4e2..4b0c5db418f 100644
--- a/sbin/unwind/libunbound/services/mesh.c
+++ b/sbin/unwind/libunbound/services/mesh.c
@@ -159,16 +159,28 @@ client_info_compare(const struct respip_client_info* ci_a,
return 1;
if(ci_a->taglen != ci_b->taglen)
return (ci_a->taglen < ci_b->taglen) ? -1 : 1;
- cmp = memcmp(ci_a->taglist, ci_b->taglist, ci_a->taglen);
- if(cmp != 0)
- return cmp;
+ if(ci_a->taglist && !ci_b->taglist)
+ return -1;
+ if(!ci_a->taglist && ci_b->taglist)
+ return 1;
+ if(ci_a->taglist && ci_b->taglist) {
+ cmp = memcmp(ci_a->taglist, ci_b->taglist, ci_a->taglen);
+ if(cmp != 0)
+ return cmp;
+ }
if(ci_a->tag_actions_size != ci_b->tag_actions_size)
return (ci_a->tag_actions_size < ci_b->tag_actions_size) ?
-1 : 1;
- cmp = memcmp(ci_a->tag_actions, ci_b->tag_actions,
- ci_a->tag_actions_size);
- if(cmp != 0)
- return cmp;
+ if(ci_a->tag_actions && !ci_b->tag_actions)
+ return -1;
+ if(!ci_a->tag_actions && ci_b->tag_actions)
+ return 1;
+ if(ci_a->tag_actions && ci_b->tag_actions) {
+ cmp = memcmp(ci_a->tag_actions, ci_b->tag_actions,
+ ci_a->tag_actions_size);
+ if(cmp != 0)
+ return cmp;
+ }
if(ci_a->tag_datas != ci_b->tag_datas)
return ci_a->tag_datas < ci_b->tag_datas ? -1 : 1;
if(ci_a->view != ci_b->view)
@@ -1284,7 +1296,7 @@ mesh_send_reply(struct mesh_state* m, int rcode, struct reply_info* rep,
void mesh_query_done(struct mesh_state* mstate)
{
- struct mesh_reply* r, *reply_list = NULL;
+ struct mesh_reply* r;
struct mesh_reply* prev = NULL;
struct sldns_buffer* prev_buffer = NULL;
struct mesh_cb* c;
@@ -1308,27 +1320,7 @@ void mesh_query_done(struct mesh_state* mstate)
free(err);
}
}
- if(mstate->reply_list) {
- /* set the reply_list to NULL during the mesh_query_done
- * processing, so that calls back into the mesh from
- * tcp_req_info (deciding to drop the reply and thus
- * unregister the mesh_reply from the mstate) are stopped
- * because the list is empty.
- * The mstate is then likely not a reply_state, and maybe
- * also a detached_state.
- */
- reply_list = mstate->reply_list;
- mstate->reply_list = NULL;
- if(!mstate->reply_list && !mstate->cb_list) {
- /* was a reply state, not anymore */
- log_assert(mstate->s.env->mesh->num_reply_states > 0);
- mstate->s.env->mesh->num_reply_states--;
- }
- if(!mstate->reply_list && !mstate->cb_list &&
- mstate->super_set.count == 0)
- mstate->s.env->mesh->num_detached_states++;
- }
- for(r = reply_list; r; r = r->next) {
+ for(r = mstate->reply_list; r; r = r->next) {
/* if a response-ip address block has been stored the
* information should be logged for each client. */
if(mstate->s.respip_action_info &&
@@ -1352,15 +1344,31 @@ void mesh_query_done(struct mesh_state* mstate)
/* if this query is determined to be dropped during the
* mesh processing, this is the point to take that action. */
if(mstate->s.is_drop) {
+ /* briefly set the reply_list to NULL, so that the
+ * tcp req info cleanup routine that calls the mesh
+ * to deregister the meshstate for it is not done
+ * because the list is NULL and also accounting is not
+ * done there, but instead we do that here. */
+ struct mesh_reply* reply_list = mstate->reply_list;
+ mstate->reply_list = NULL;
comm_point_drop_reply(&r->query_reply);
+ mstate->reply_list = reply_list;
} else {
struct sldns_buffer* r_buffer = r->query_reply.c->buffer;
+ struct mesh_reply* rlist = mstate->reply_list;
if(r->query_reply.c->tcp_req_info) {
r_buffer = r->query_reply.c->tcp_req_info->spool_buffer;
prev_buffer = NULL;
}
+ /* briefly set the replylist to null in case the
+ * meshsendreply calls tcpreqinfo sendreply that
+ * comm_point_drops because of size, and then the
+ * null stops the mesh state remove and thus
+ * reply_list modification and accounting */
+ mstate->reply_list = NULL;
mesh_send_reply(mstate, mstate->s.return_rcode, rep,
r, r_buffer, prev, prev_buffer);
+ mstate->reply_list = rlist;
if(r->query_reply.c->tcp_req_info) {
tcp_req_info_remove_mesh_state(r->query_reply.c->tcp_req_info, mstate);
r_buffer = NULL;
@@ -1369,6 +1377,17 @@ void mesh_query_done(struct mesh_state* mstate)
prev_buffer = r_buffer;
}
}
+ if(mstate->reply_list) {
+ mstate->reply_list = NULL;
+ if(!mstate->reply_list && !mstate->cb_list) {
+ /* was a reply state, not anymore */
+ log_assert(mstate->s.env->mesh->num_reply_states > 0);
+ mstate->s.env->mesh->num_reply_states--;
+ }
+ if(!mstate->reply_list && !mstate->cb_list &&
+ mstate->super_set.count == 0)
+ mstate->s.env->mesh->num_detached_states++;
+ }
mstate->replies_sent = 1;
while((c = mstate->cb_list) != NULL) {
/* take this cb off the list; so that the list can be
@@ -1863,7 +1882,7 @@ mesh_serve_expired_callback(void* arg)
{
struct mesh_state* mstate = (struct mesh_state*) arg;
struct module_qstate* qstate = &mstate->s;
- struct mesh_reply* r;
+ struct mesh_reply* r, *rlist;
struct mesh_area* mesh = qstate->env->mesh;
struct dns_msg* msg;
struct mesh_cb* c;
@@ -1946,16 +1965,7 @@ mesh_serve_expired_callback(void* arg)
if(verbosity >= VERB_ALGO)
log_dns_msg("Serve expired lookup", &qstate->qinfo, msg->rep);
- r = mstate->reply_list;
- mstate->reply_list = NULL;
- if(!mstate->reply_list && !mstate->cb_list) {
- log_assert(mesh->num_reply_states > 0);
- mesh->num_reply_states--;
- if(mstate->super_set.count == 0) {
- mesh->num_detached_states++;
- }
- }
- for(; r; r = r->next) {
+ for(r = mstate->reply_list; r; r = r->next) {
/* If address info is returned, it means the action should be an
* 'inform' variant and the information should be logged. */
if(actinfo.addrinfo) {
@@ -1977,8 +1987,15 @@ mesh_serve_expired_callback(void* arg)
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;
+ /* briefly set the replylist to null in case the meshsendreply
+ * calls tcpreqinfo sendreply that comm_point_drops because
+ * of size, and then the null stops the mesh state remove and
+ * thus reply_list modification and accounting */
+ rlist = mstate->reply_list;
+ mstate->reply_list = NULL;
mesh_send_reply(mstate, LDNS_RCODE_NOERROR, msg->rep,
r, r_buffer, prev, prev_buffer);
+ mstate->reply_list = rlist;
if(r->query_reply.c->tcp_req_info)
tcp_req_info_remove_mesh_state(r->query_reply.c->tcp_req_info, mstate);
prev = r;
@@ -1988,6 +2005,16 @@ mesh_serve_expired_callback(void* arg)
mesh->ans_expired++;
}
+ if(mstate->reply_list) {
+ mstate->reply_list = NULL;
+ if(!mstate->reply_list && !mstate->cb_list) {
+ log_assert(mesh->num_reply_states > 0);
+ mesh->num_reply_states--;
+ if(mstate->super_set.count == 0) {
+ mesh->num_detached_states++;
+ }
+ }
+ }
while((c = mstate->cb_list) != NULL) {
/* take this cb off the list; so that the list can be
* changed, eg. by adds from the callback routine */
diff --git a/sbin/unwind/libunbound/services/modstack.c b/sbin/unwind/libunbound/services/modstack.c
index 68e5928146d..a600549b16c 100644
--- a/sbin/unwind/libunbound/services/modstack.c
+++ b/sbin/unwind/libunbound/services/modstack.c
@@ -51,6 +51,9 @@
#ifdef WITH_PYTHONMODULE
#include "pythonmod/pythonmod.h"
#endif
+#ifdef WITH_DYNLIBMODULE
+#include "dynlibmod/dynlibmod.h"
+#endif
#ifdef USE_CACHEDB
#include "cachedb/cachedb.h"
#endif
@@ -140,6 +143,9 @@ module_list_avail(void)
#ifdef WITH_PYTHONMODULE
"python",
#endif
+#ifdef WITH_DYNLIBMODULE
+ "dynlib",
+#endif
#ifdef USE_CACHEDB
"cachedb",
#endif
@@ -171,6 +177,9 @@ module_funcs_avail(void)
#ifdef WITH_PYTHONMODULE
&pythonmod_get_funcblock,
#endif
+#ifdef WITH_DYNLIBMODULE
+ &dynlibmod_get_funcblock,
+#endif
#ifdef USE_CACHEDB
&cachedb_get_funcblock,
#endif
diff --git a/sbin/unwind/libunbound/services/outside_network.c b/sbin/unwind/libunbound/services/outside_network.c
index 80b1f12454d..44e01d7450c 100644
--- a/sbin/unwind/libunbound/services/outside_network.c
+++ b/sbin/unwind/libunbound/services/outside_network.c
@@ -205,18 +205,25 @@ pick_outgoing_tcp(struct waiting_tcp* w, int s)
/** get TCP file descriptor for address, returns -1 on failure,
* tcp_mss is 0 or maxseg size to set for TCP packets. */
int
-outnet_get_tcp_fd(struct sockaddr_storage* addr, socklen_t addrlen, int tcp_mss)
+outnet_get_tcp_fd(struct sockaddr_storage* addr, socklen_t addrlen, int tcp_mss, int dscp)
{
int s;
+ int af;
+ char* err;
#ifdef SO_REUSEADDR
int on = 1;
#endif
#ifdef INET6
- if(addr_is_ip6(addr, addrlen))
+ if(addr_is_ip6(addr, addrlen)){
s = socket(PF_INET6, SOCK_STREAM, IPPROTO_TCP);
- else
+ af = AF_INET6;
+ } else {
+#else
+ {
#endif
+ af = AF_INET;
s = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP);
+ }
if(s == -1) {
#ifndef USE_WINSOCK
log_err_addr("outgoing tcp: socket", strerror(errno),
@@ -236,6 +243,12 @@ outnet_get_tcp_fd(struct sockaddr_storage* addr, socklen_t addrlen, int tcp_mss)
}
#endif
+ err = set_ip_dscp(s, af, dscp);
+ if(err != NULL) {
+ verbose(VERB_ALGO, "outgoing tcp:"
+ "error setting IP DiffServ codepoint on socket");
+ }
+
if(tcp_mss > 0) {
#if defined(IPPROTO_TCP) && defined(TCP_MAXSEG)
if(setsockopt(s, IPPROTO_TCP, TCP_MAXSEG,
@@ -291,7 +304,7 @@ outnet_tcp_take_into_use(struct waiting_tcp* w, uint8_t* pkt, size_t pkt_len)
log_assert(pkt);
log_assert(w->addrlen > 0);
/* open socket */
- s = outnet_get_tcp_fd(&w->addr, w->addrlen, w->outnet->tcp_mss);
+ s = outnet_get_tcp_fd(&w->addr, w->addrlen, w->outnet->tcp_mss, w->outnet->ip_dscp);
if(s == -1)
return 0;
@@ -373,45 +386,16 @@ outnet_tcp_take_into_use(struct waiting_tcp* w, uint8_t* pkt, size_t pkt_len)
comm_point_tcp_win_bio_cb(pend->c, pend->c->ssl);
#endif
pend->c->ssl_shake_state = comm_ssl_shake_write;
- if(w->tls_auth_name) {
+ if(!set_auth_name_on_ssl(pend->c->ssl, w->tls_auth_name,
+ w->outnet->tls_use_sni)) {
+ pend->c->fd = s;
#ifdef HAVE_SSL
- (void)SSL_set_tlsext_host_name(pend->c->ssl, w->tls_auth_name);
+ SSL_free(pend->c->ssl);
#endif
+ pend->c->ssl = NULL;
+ comm_point_close(pend->c);
+ return 0;
}
-#ifdef HAVE_SSL_SET1_HOST
- if(w->tls_auth_name) {
- SSL_set_verify(pend->c->ssl, SSL_VERIFY_PEER, NULL);
- /* setting the hostname makes openssl verify the
- * host name in the x509 certificate in the
- * SSL connection*/
- if(!SSL_set1_host(pend->c->ssl, w->tls_auth_name)) {
- log_err("SSL_set1_host failed");
- pend->c->fd = s;
- SSL_free(pend->c->ssl);
- pend->c->ssl = NULL;
- comm_point_close(pend->c);
- 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);
- }
-#else
- verbose(VERB_ALGO, "the query has an auth_name, but libssl has no call to perform TLS authentication");
-#endif /* HAVE_SSL_SET1_HOST */
}
w->pkt = NULL;
w->next_waiting = (void*)pend;
@@ -512,7 +496,9 @@ portcomm_loweruse(struct outside_network* outnet, struct port_comm* pc)
comm_point_close(pc->cp);
pif = pc->pif;
log_assert(pif->inuse > 0);
+#ifndef DISABLE_EXPLICIT_PORT_RANDOMISATION
pif->avail_ports[pif->avail_total - pif->inuse] = pc->number;
+#endif
pif->inuse--;
pif->out[pc->index] = pif->out[pif->inuse];
pif->out[pc->index]->index = pc->index;
@@ -725,10 +711,12 @@ create_pending_tcp(struct outside_network* outnet, size_t bufsize)
static int setup_if(struct port_if* pif, const char* addrstr,
int* avail, int numavail, size_t numfd)
{
+#ifndef DISABLE_EXPLICIT_PORT_RANDOMISATION
pif->avail_total = numavail;
pif->avail_ports = (int*)memdup(avail, (size_t)numavail*sizeof(int));
if(!pif->avail_ports)
return 0;
+#endif
if(!ipstrtoaddr(addrstr, UNBOUND_DNS_PORT, &pif->addr, &pif->addrlen) &&
!netblockstrtoaddr(addrstr, UNBOUND_DNS_PORT,
&pif->addr, &pif->addrlen, &pif->pfxlen))
@@ -745,11 +733,11 @@ static int setup_if(struct port_if* pif, const char* addrstr,
struct outside_network*
outside_network_create(struct comm_base *base, size_t bufsize,
size_t num_ports, char** ifs, int num_ifs, int do_ip4,
- int do_ip6, size_t num_tcp, struct infra_cache* infra,
+ int do_ip6, size_t num_tcp, int dscp, struct infra_cache* infra,
struct ub_randstate* rnd, int use_caps_for_id, int* availports,
int numavailports, size_t unwanted_threshold, int tcp_mss,
void (*unwanted_action)(void*), void* unwanted_param, int do_udp,
- void* sslctx, int delayclose, struct dt_env* dtenv)
+ void* sslctx, int delayclose, int tls_use_sni, struct dt_env* dtenv)
{
struct outside_network* outnet = (struct outside_network*)
calloc(1, sizeof(struct outside_network));
@@ -765,6 +753,7 @@ outside_network_create(struct comm_base *base, size_t bufsize,
outnet->infra = infra;
outnet->rnd = rnd;
outnet->sslctx = sslctx;
+ outnet->tls_use_sni = tls_use_sni;
#ifdef USE_DNSTAP
outnet->dtenv = dtenv;
#else
@@ -778,6 +767,7 @@ outside_network_create(struct comm_base *base, size_t bufsize,
outnet->use_caps_for_id = use_caps_for_id;
outnet->do_udp = do_udp;
outnet->tcp_mss = tcp_mss;
+ outnet->ip_dscp = dscp;
#ifndef S_SPLINT_S
if(delayclose) {
outnet->delayclose = 1;
@@ -955,7 +945,9 @@ outside_network_delete(struct outside_network* outnet)
comm_point_delete(pc->cp);
free(pc);
}
+#ifndef DISABLE_EXPLICIT_PORT_RANDOMISATION
free(outnet->ip4_ifs[i].avail_ports);
+#endif
free(outnet->ip4_ifs[i].out);
}
free(outnet->ip4_ifs);
@@ -969,7 +961,9 @@ outside_network_delete(struct outside_network* outnet)
comm_point_delete(pc->cp);
free(pc);
}
+#ifndef DISABLE_EXPLICIT_PORT_RANDOMISATION
free(outnet->ip6_ifs[i].avail_ports);
+#endif
free(outnet->ip6_ifs[i].out);
}
free(outnet->ip6_ifs);
@@ -1059,11 +1053,12 @@ sai6_putrandom(struct sockaddr_in6 *sa, int pfxlen, struct ub_randstate *rnd)
* @param port: port override for addr.
* @param inuse: if -1 is returned, this bool means the port was in use.
* @param rnd: random state (for address randomisation).
+ * @param dscp: DSCP to use.
* @return fd or -1
*/
static int
udp_sockport(struct sockaddr_storage* addr, socklen_t addrlen, int pfxlen,
- int port, int* inuse, struct ub_randstate* rnd)
+ int port, int* inuse, struct ub_randstate* rnd, int dscp)
{
int fd, noproto;
if(addr_is_ip6(addr, addrlen)) {
@@ -1078,13 +1073,13 @@ udp_sockport(struct sockaddr_storage* addr, socklen_t addrlen, int pfxlen,
}
fd = create_udp_sock(AF_INET6, SOCK_DGRAM,
(struct sockaddr*)&sa, addrlen, 1, inuse, &noproto,
- 0, 0, 0, NULL, 0, freebind, 0);
+ 0, 0, 0, NULL, 0, freebind, 0, dscp);
} else {
struct sockaddr_in* sa = (struct sockaddr_in*)addr;
sa->sin_port = (in_port_t)htons((uint16_t)port);
fd = create_udp_sock(AF_INET, SOCK_DGRAM,
(struct sockaddr*)addr, addrlen, 1, inuse, &noproto,
- 0, 0, 0, NULL, 0, 0, 0);
+ 0, 0, 0, NULL, 0, 0, 0, dscp);
}
return fd;
}
@@ -1133,6 +1128,7 @@ select_ifport(struct outside_network* outnet, struct pending* pend,
while(1) {
my_if = ub_random_max(outnet->rnd, num_if);
pif = &ifs[my_if];
+#ifndef DISABLE_EXPLICIT_PORT_RANDOMISATION
my_port = ub_random_max(outnet->rnd, pif->avail_total);
if(my_port < pif->inuse) {
/* port already open */
@@ -1144,8 +1140,11 @@ select_ifport(struct outside_network* outnet, struct pending* pend,
/* try to open new port, if fails, loop to try again */
log_assert(pif->inuse < pif->maxout);
portno = pif->avail_ports[my_port - pif->inuse];
+#else
+ my_port = portno = 0;
+#endif
fd = udp_sockport(&pif->addr, pif->addrlen, pif->pfxlen,
- portno, &inuse, outnet->rnd);
+ portno, &inuse, outnet->rnd, outnet->ip_dscp);
if(fd == -1 && !inuse) {
/* nonrecoverable error making socket */
return 0;
@@ -1167,8 +1166,10 @@ select_ifport(struct outside_network* outnet, struct pending* pend,
/* grab port in interface */
pif->out[pif->inuse] = pend->pc;
+#ifndef DISABLE_EXPLICIT_PORT_RANDOMISATION
pif->avail_ports[my_port - pif->inuse] =
pif->avail_ports[pif->avail_total-pif->inuse-1];
+#endif
pif->inuse++;
break;
}
@@ -2192,10 +2193,11 @@ fd_for_dest(struct outside_network* outnet, struct sockaddr_storage* to_addr,
{
struct sockaddr_storage* addr;
socklen_t addrlen;
- int i, try, pnum;
+ int i, try, pnum, dscp;
struct port_if* pif;
/* create fd */
+ dscp = outnet->ip_dscp;
for(try = 0; try<1000; try++) {
int port = 0;
int freebind = 0;
@@ -2225,6 +2227,7 @@ fd_for_dest(struct outside_network* outnet, struct sockaddr_storage* to_addr,
}
addr = &pif->addr;
addrlen = pif->addrlen;
+#ifndef DISABLE_EXPLICIT_PORT_RANDOMISATION
pnum = ub_random_max(outnet->rnd, pif->avail_total);
if(pnum < pif->inuse) {
/* port already open */
@@ -2233,19 +2236,21 @@ fd_for_dest(struct outside_network* outnet, struct sockaddr_storage* to_addr,
/* unused ports in start part of array */
port = pif->avail_ports[pnum - pif->inuse];
}
-
+#else
+ pnum = port = 0;
+#endif
if(addr_is_ip6(to_addr, to_addrlen)) {
struct sockaddr_in6 sa = *(struct sockaddr_in6*)addr;
sa.sin6_port = (in_port_t)htons((uint16_t)port);
fd = create_udp_sock(AF_INET6, SOCK_DGRAM,
(struct sockaddr*)&sa, addrlen, 1, &inuse, &noproto,
- 0, 0, 0, NULL, 0, freebind, 0);
+ 0, 0, 0, NULL, 0, freebind, 0, dscp);
} else {
struct sockaddr_in* sa = (struct sockaddr_in*)addr;
sa->sin_port = (in_port_t)htons((uint16_t)port);
fd = create_udp_sock(AF_INET, SOCK_DGRAM,
(struct sockaddr*)addr, addrlen, 1, &inuse, &noproto,
- 0, 0, 0, NULL, 0, freebind, 0);
+ 0, 0, 0, NULL, 0, freebind, 0, dscp);
}
if(fd != -1) {
return fd;
@@ -2294,6 +2299,11 @@ setup_comm_ssl(struct comm_point* cp, struct outside_network* outnet,
#endif
cp->ssl_shake_state = comm_ssl_shake_write;
/* https verification */
+#ifdef HAVE_SSL
+ if(outnet->tls_use_sni) {
+ (void)SSL_set_tlsext_host_name(cp->ssl, host);
+ }
+#endif
#ifdef HAVE_SSL_SET1_HOST
if((SSL_CTX_get_verify_mode(outnet->sslctx)&SSL_VERIFY_PEER)) {
/* because we set SSL_VERIFY_PEER, in netevent in
@@ -2316,7 +2326,9 @@ setup_comm_ssl(struct comm_point* cp, struct outside_network* outnet,
* set1_host like verification */
if((SSL_CTX_get_verify_mode(outnet->sslctx)&SSL_VERIFY_PEER)) {
X509_VERIFY_PARAM* param = SSL_get0_param(cp->ssl);
+# ifdef X509_CHECK_FLAG_NO_PARTIAL_WILDCARDS
X509_VERIFY_PARAM_set_hostflags(param, X509_CHECK_FLAG_NO_PARTIAL_WILDCARDS);
+# endif
if(!X509_VERIFY_PARAM_set1_host(param, host, strlen(host))) {
log_err("X509_VERIFY_PARAM_set1_host failed");
return 0;
@@ -2335,7 +2347,7 @@ outnet_comm_point_for_tcp(struct outside_network* outnet,
sldns_buffer* query, int timeout, int ssl, char* host)
{
struct comm_point* cp;
- int fd = outnet_get_tcp_fd(to_addr, to_addrlen, outnet->tcp_mss);
+ int fd = outnet_get_tcp_fd(to_addr, to_addrlen, outnet->tcp_mss, outnet->ip_dscp);
if(fd == -1) {
return 0;
}
@@ -2397,7 +2409,7 @@ outnet_comm_point_for_http(struct outside_network* outnet,
{
/* cp calls cb with err=NETEVENT_DONE when transfer is done */
struct comm_point* cp;
- int fd = outnet_get_tcp_fd(to_addr, to_addrlen, outnet->tcp_mss);
+ int fd = outnet_get_tcp_fd(to_addr, to_addrlen, outnet->tcp_mss, outnet->ip_dscp);
if(fd == -1) {
return 0;
}
@@ -2455,7 +2467,10 @@ if_get_mem(struct port_if* pif)
{
size_t s;
int i;
- s = sizeof(*pif) + sizeof(int)*pif->avail_total +
+ s = sizeof(*pif) +
+#ifndef DISABLE_EXPLICIT_PORT_RANDOMISATION
+ sizeof(int)*pif->avail_total +
+#endif
sizeof(struct port_comm*)*pif->maxout;
for(i=0; i<pif->inuse; i++)
s += sizeof(*pif->out[i]) +
diff --git a/sbin/unwind/libunbound/services/outside_network.h b/sbin/unwind/libunbound/services/outside_network.h
index 3456a3da38b..c8f6d5724a8 100644
--- a/sbin/unwind/libunbound/services/outside_network.h
+++ b/sbin/unwind/libunbound/services/outside_network.h
@@ -132,12 +132,16 @@ struct outside_network {
struct ub_randstate* rnd;
/** ssl context to create ssl wrapped TCP with DNS connections */
void* sslctx;
+ /** if SNI will be used for TLS connections */
+ int tls_use_sni;
#ifdef USE_DNSTAP
/** dnstap environment */
struct dt_env* dtenv;
#endif
/** maximum segment size of tcp socket */
int tcp_mss;
+ /** IP_TOS socket option requested on the sockets */
+ int ip_dscp;
/**
* Array of tcp pending used for outgoing TCP connections.
@@ -172,11 +176,13 @@ struct port_if {
* if 0, no randomisation. */
int pfxlen;
+#ifndef DISABLE_EXPLICIT_PORT_RANDOMISATION
/** the available ports array. These are unused.
* Only the first total-inuse part is filled. */
int* avail_ports;
/** the total number of available ports (size of the array) */
int avail_total;
+#endif
/** array of the commpoints currently in use.
* allocated for max number of fds, first part in use. */
@@ -399,6 +405,7 @@ struct serviced_query {
* @param do_ip4: service IP4.
* @param do_ip6: service IP6.
* @param num_tcp: number of outgoing tcp buffers to preallocate.
+ * @param dscp: DSCP to use.
* @param infra: pointer to infra cached used for serviced queries.
* @param rnd: stored to create random numbers for serviced queries.
* @param use_caps_for_id: enable to use 0x20 bits to encode id randomness.
@@ -412,16 +419,17 @@ struct serviced_query {
* @param sslctx: context to create outgoing connections with (if enabled).
* @param delayclose: if not 0, udp sockets are delayed before timeout closure.
* msec to wait on timeouted udp sockets.
+ * @param tls_use_sni: if SNI is used for TLS connections.
* @param dtenv: environment to send dnstap events with (if enabled).
* @return: the new structure (with no pending answers) or NULL on error.
*/
struct outside_network* outside_network_create(struct comm_base* base,
size_t bufsize, size_t num_ports, char** ifs, int num_ifs,
- int do_ip4, int do_ip6, size_t num_tcp, struct infra_cache* infra,
+ int do_ip4, int do_ip6, size_t num_tcp, int dscp, struct infra_cache* infra,
struct ub_randstate* rnd, int use_caps_for_id, int* availports,
int numavailports, size_t unwanted_threshold, int tcp_mss,
void (*unwanted_action)(void*), void* unwanted_param, int do_udp,
- void* sslctx, int delayclose, struct dt_env *dtenv);
+ void* sslctx, int delayclose, int tls_use_sni, struct dt_env *dtenv);
/**
* Delete outside_network structure.
@@ -540,7 +548,7 @@ size_t serviced_get_mem(struct serviced_query* sq);
/** get TCP file descriptor for address, returns -1 on failure,
* tcp_mss is 0 or maxseg size to set for TCP packets. */
-int outnet_get_tcp_fd(struct sockaddr_storage* addr, socklen_t addrlen, int tcp_mss);
+int outnet_get_tcp_fd(struct sockaddr_storage* addr, socklen_t addrlen, int tcp_mss, int dscp);
/**
* Create udp commpoint suitable for sending packets to the destination.
diff --git a/sbin/unwind/libunbound/services/rpz.c b/sbin/unwind/libunbound/services/rpz.c
index 643b20c91d2..105f238d0a6 100644
--- a/sbin/unwind/libunbound/services/rpz.c
+++ b/sbin/unwind/libunbound/services/rpz.c
@@ -586,7 +586,7 @@ rpz_insert_response_ip_trigger(struct rpz* r, uint8_t* dname, size_t dnamelen,
}
int
-rpz_insert_rr(struct rpz* r, size_t aznamelen, uint8_t* dname,
+rpz_insert_rr(struct rpz* r, uint8_t* azname, size_t aznamelen, uint8_t* dname,
size_t dnamelen, uint16_t rr_type, uint16_t rr_class, uint32_t rr_ttl,
uint8_t* rdatawl, size_t rdatalen, uint8_t* rr, size_t rr_len)
{
@@ -596,9 +596,17 @@ rpz_insert_rr(struct rpz* r, size_t aznamelen, uint8_t* dname,
enum rpz_action a;
uint8_t* policydname;
+ if(!dname_subdomain_c(dname, azname)) {
+ log_err("RPZ: name of record to insert into RPZ is not a "
+ "subdomain of the configured name of the RPZ zone");
+ return 0;
+ }
+
log_assert(dnamelen >= aznamelen);
- if(!(policydname = calloc(1, (dnamelen-aznamelen)+1)))
+ if(!(policydname = calloc(1, (dnamelen-aznamelen)+1))) {
+ log_err("malloc error while inserting RPZ RR");
return 0;
+ }
a = rpz_rr_to_action(rr_type, rdatawl, rdatalen);
if(!(policydnamelen = strip_dname_origin(dname, dnamelen, aznamelen,
@@ -826,6 +834,8 @@ rpz_remove_qname_trigger(struct rpz* r, uint8_t* dname, size_t dnamelen,
delete_zone = rpz_data_delete_rr(z, dname,
dnamelen, rr_type, rdatawl, rdatalen);
else if(a != localzone_type_to_rpz_action(z->type)) {
+ lock_rw_unlock(&z->lock);
+ lock_rw_unlock(&r->local_zones->lock);
return;
}
lock_rw_unlock(&z->lock);
@@ -931,13 +941,16 @@ rpz_apply_qname_trigger(struct auth_zones* az, struct module_env* env,
struct regional* temp, struct comm_reply* repinfo,
uint8_t* taglist, size_t taglen, struct ub_server_stats* stats)
{
- struct rpz* r;
+ struct rpz* r = NULL;
+ struct auth_zone* a;
int ret;
enum localzone_type lzt;
struct local_zone* z = NULL;
struct local_data* ld = NULL;
lock_rw_rdlock(&az->rpz_lock);
- for(r = az->rpz_first; r; r = r->next) {
+ for(a = az->rpz_first; a; a = a->rpz_az_next) {
+ lock_rw_rdlock(&a->lock);
+ r = a->rpz;
if(!r->taglist || taglist_intersect(r->taglist,
r->taglistlen, taglist, taglen)) {
z = rpz_find_zone(r, qinfo->qname, qinfo->qname_len,
@@ -955,13 +968,14 @@ rpz_apply_qname_trigger(struct auth_zones* az, struct module_env* env,
}
if(z)
break;
- }
+ }
+ lock_rw_unlock(&a->lock); /* not found in this auth_zone */
}
lock_rw_unlock(&az->rpz_lock);
if(!z)
- return 0;
+ return 0; /* not holding auth_zone.lock anymore */
-
+ log_assert(r);
if(r->action_override == RPZ_NO_OVERRIDE_ACTION)
lzt = z->type;
else
@@ -972,6 +986,7 @@ rpz_apply_qname_trigger(struct auth_zones* az, struct module_env* env,
regional_alloc_zero(temp, sizeof(struct local_rrset));
if(!qinfo->local_alias) {
lock_rw_unlock(&z->lock);
+ lock_rw_unlock(&a->lock);
return 0; /* out of memory */
}
qinfo->local_alias->rrset =
@@ -979,6 +994,7 @@ rpz_apply_qname_trigger(struct auth_zones* az, struct module_env* env,
sizeof(*r->cname_override));
if(!qinfo->local_alias->rrset) {
lock_rw_unlock(&z->lock);
+ lock_rw_unlock(&a->lock);
return 0; /* out of memory */
}
qinfo->local_alias->rrset->rk.dname = qinfo->qname;
@@ -988,6 +1004,7 @@ rpz_apply_qname_trigger(struct auth_zones* az, struct module_env* env,
qinfo, repinfo, r->log_name);
stats->rpz_action[RPZ_CNAME_OVERRIDE_ACTION]++;
lock_rw_unlock(&z->lock);
+ lock_rw_unlock(&a->lock);
return 0;
}
@@ -1000,6 +1017,7 @@ rpz_apply_qname_trigger(struct auth_zones* az, struct module_env* env,
repinfo, r->log_name);
stats->rpz_action[localzone_type_to_rpz_action(lzt)]++;
lock_rw_unlock(&z->lock);
+ lock_rw_unlock(&a->lock);
return !qinfo->local_alias;
}
@@ -1010,6 +1028,7 @@ rpz_apply_qname_trigger(struct auth_zones* az, struct module_env* env,
qinfo, repinfo, r->log_name);
stats->rpz_action[localzone_type_to_rpz_action(lzt)]++;
lock_rw_unlock(&z->lock);
+ lock_rw_unlock(&a->lock);
return ret;
}
diff --git a/sbin/unwind/libunbound/services/rpz.h b/sbin/unwind/libunbound/services/rpz.h
index 676a4f2a840..77a2db55ced 100644
--- a/sbin/unwind/libunbound/services/rpz.h
+++ b/sbin/unwind/libunbound/services/rpz.h
@@ -86,7 +86,8 @@ enum rpz_action {
/**
* RPZ containing policies. Pointed to from corresponding auth-zone. Part of a
* linked list to keep configuration order. Iterating or changing the linked
- * list requires the rpz_lock from struct auth_zones.
+ * list requires the rpz_lock from struct auth_zones. Changing items in this
+ * struct require the lock from struct auth_zone.
*/
struct rpz {
struct local_zones* local_zones;
@@ -97,14 +98,13 @@ struct rpz {
struct ub_packed_rrset_key* cname_override;
int log;
char* log_name;
- struct rpz* next;
- struct rpz* prev;
struct regional* region;
};
/**
* Create policy from RR and add to this RPZ.
* @param r: the rpz to add the policy to.
+ * @param azname: dname of the auth-zone
* @param aznamelen: the length of the auth-zone name
* @param dname: dname of the RR
* @param dnamelen: length of the dname
@@ -117,7 +117,7 @@ struct rpz {
* @param rr_len: the length of the complete RR
* @return: 0 on error
*/
-int rpz_insert_rr(struct rpz* r, size_t aznamelen, uint8_t* dname,
+int rpz_insert_rr(struct rpz* r, uint8_t* azname, size_t aznamelen, uint8_t* dname,
size_t dnamelen, uint16_t rr_type, uint16_t rr_class, uint32_t rr_ttl,
uint8_t* rdatawl, size_t rdatalen, uint8_t* rr, size_t rr_len);
diff --git a/sbin/unwind/libunbound/sldns/parseutil.c b/sbin/unwind/libunbound/sldns/parseutil.c
index 82dbc0fe113..3515d64c5d1 100644
--- a/sbin/unwind/libunbound/sldns/parseutil.c
+++ b/sbin/unwind/libunbound/sldns/parseutil.c
@@ -167,7 +167,7 @@ sldns_gmtime64_r(int64_t clock, struct tm *result)
static int64_t
sldns_serial_arithmetics_time(int32_t time, time_t now)
{
- int32_t offset = time - (int32_t) now;
+ int32_t offset = (int32_t)((uint32_t) time - (uint32_t) now);
return (int64_t) now + offset;
}
diff --git a/sbin/unwind/libunbound/util/config_file.c b/sbin/unwind/libunbound/util/config_file.c
index 5a8139d69c4..6139dfc2610 100644
--- a/sbin/unwind/libunbound/util/config_file.c
+++ b/sbin/unwind/libunbound/util/config_file.c
@@ -116,6 +116,7 @@ config_create(void)
cfg->ssl_upstream = 0;
cfg->tls_cert_bundle = NULL;
cfg->tls_win_cert = 0;
+ cfg->tls_use_sni = 1;
cfg->use_syslog = 1;
cfg->log_identity = NULL; /* changed later with argv[0] */
cfg->log_time_ascii = 0;
@@ -186,6 +187,7 @@ config_create(void)
cfg->so_reuseport = REUSEPORT_DEFAULT;
cfg->ip_transparent = 0;
cfg->ip_freebind = 0;
+ cfg->ip_dscp = 0;
cfg->num_ifs = 0;
cfg->ifs = NULL;
cfg->num_out_ifs = 0;
@@ -266,13 +268,14 @@ config_create(void)
cfg->unblock_lan_zones = 0;
cfg->insecure_lan_zones = 0;
cfg->python_script = NULL;
+ cfg->dynlib_file = NULL;
cfg->remote_control_enable = 0;
cfg->control_ifs.first = NULL;
cfg->control_ifs.last = NULL;
cfg->control_port = UNBOUND_CONTROL_PORT;
cfg->control_use_cert = 1;
cfg->minimal_responses = 1;
- cfg->rrset_roundrobin = 0;
+ cfg->rrset_roundrobin = 1;
cfg->unknown_server_time_limit = 376;
cfg->max_udp_size = 4096;
if(!(cfg->server_key_file = strdup(RUN_DIR"/unbound_server.key")))
@@ -295,6 +298,8 @@ config_create(void)
if(!(cfg->dnstap_socket_path = strdup(DNSTAP_SOCKET_PATH)))
goto error_exit;
#endif
+ cfg->dnstap_bidirectional = 1;
+ cfg->dnstap_tls = 1;
cfg->disable_dnssec_lame_check = 0;
cfg->ip_ratelimit = 0;
cfg->ratelimit = 0;
@@ -335,6 +340,7 @@ config_create(void)
if(!(cfg->redis_server_host = strdup("127.0.0.1"))) goto error_exit;
cfg->redis_timeout = 100;
cfg->redis_server_port = 6379;
+ cfg->redis_expire_records = 0;
#endif /* USE_REDIS */
#endif /* USE_CACHEDB */
#ifdef USE_IPSET
@@ -504,6 +510,7 @@ int config_set_option(struct config_file* cfg, const char* opt,
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("tls-use-sni:", tls_use_sni)
else S_YNO("interface-automatic:", if_automatic)
else S_YNO("use-systemd:", use_systemd)
else S_YNO("do-daemonize:", do_daemonize)
@@ -523,6 +530,7 @@ int config_set_option(struct config_file* cfg, const char* opt,
else S_YNO("so-reuseport:", so_reuseport)
else S_YNO("ip-transparent:", ip_transparent)
else S_YNO("ip-freebind:", ip_freebind)
+ else S_NUMBER_OR_ZERO("ip-dscp:", ip_dscp)
else S_MEMSIZE("rrset-cache-size:", rrset_cache_size)
else S_POW2("rrset-cache-slabs:", rrset_cache_slabs)
else S_YNO("prefetch:", prefetch)
@@ -622,6 +630,7 @@ int config_set_option(struct config_file* cfg, const char* opt,
else S_STR("control-cert-file:", control_cert_file)
else S_STR("module-config:", module_conf)
else S_STRLIST("python-script:", python_script)
+ else S_STRLIST("dynlib-file:", dynlib_file)
else S_YNO("disable-dnssec-lame-check:", disable_dnssec_lame_check)
#ifdef CLIENT_SUBNET
/* Can't set max subnet prefix here, since that value is used when
@@ -631,7 +640,15 @@ int config_set_option(struct config_file* cfg, const char* opt,
#endif
#ifdef USE_DNSTAP
else S_YNO("dnstap-enable:", dnstap)
+ else S_YNO("dnstap-bidirectional:", dnstap_bidirectional)
else S_STR("dnstap-socket-path:", dnstap_socket_path)
+ else S_STR("dnstap-ip:", dnstap_ip)
+ else S_YNO("dnstap-tls:", dnstap_tls)
+ else S_STR("dnstap-tls-server-name:", dnstap_tls_server_name)
+ else S_STR("dnstap-tls-cert-bundle:", dnstap_tls_cert_bundle)
+ else S_STR("dnstap-tls-client-key-file:", dnstap_tls_client_key_file)
+ else S_STR("dnstap-tls-client-cert-file:",
+ dnstap_tls_client_cert_file)
else S_YNO("dnstap-send-identity:", dnstap_send_identity)
else S_YNO("dnstap-send-version:", dnstap_send_version)
else S_STR("dnstap-identity:", dnstap_identity)
@@ -915,6 +932,7 @@ config_get_option(struct config_file* cfg, const char* opt,
else O_YNO(opt, "so-reuseport", so_reuseport)
else O_YNO(opt, "ip-transparent", ip_transparent)
else O_YNO(opt, "ip-freebind", ip_freebind)
+ else O_DEC(opt, "ip-dscp", ip_dscp)
else O_MEM(opt, "rrset-cache-size", rrset_cache_size)
else O_DEC(opt, "rrset-cache-slabs", rrset_cache_slabs)
else O_YNO(opt, "prefetch-key", prefetch_key)
@@ -949,6 +967,7 @@ config_get_option(struct config_file* cfg, const char* opt,
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, "tls-use-sni", tls_use_sni)
else O_YNO(opt, "use-systemd", use_systemd)
else O_YNO(opt, "do-daemonize", do_daemonize)
else O_STR(opt, "chroot", chrootdir)
@@ -1038,7 +1057,16 @@ config_get_option(struct config_file* cfg, const char* opt,
#endif
#ifdef USE_DNSTAP
else O_YNO(opt, "dnstap-enable", dnstap)
+ else O_YNO(opt, "dnstap-bidirectional", dnstap_bidirectional)
else O_STR(opt, "dnstap-socket-path", dnstap_socket_path)
+ else O_STR(opt, "dnstap-ip", dnstap_ip)
+ else O_YNO(opt, "dnstap-tls", dnstap_tls)
+ else O_STR(opt, "dnstap-tls-server-name", dnstap_tls_server_name)
+ else O_STR(opt, "dnstap-tls-cert-bundle", dnstap_tls_cert_bundle)
+ else O_STR(opt, "dnstap-tls-client-key-file",
+ dnstap_tls_client_key_file)
+ else O_STR(opt, "dnstap-tls-client-cert-file",
+ dnstap_tls_client_cert_file)
else O_YNO(opt, "dnstap-send-identity", dnstap_send_identity)
else O_YNO(opt, "dnstap-send-version", dnstap_send_version)
else O_STR(opt, "dnstap-identity", dnstap_identity)
@@ -1076,6 +1104,7 @@ config_get_option(struct config_file* cfg, const char* opt,
else O_YNO(opt, "insecure-lan-zones", insecure_lan_zones)
else O_DEC(opt, "max-udp-size", max_udp_size)
else O_LST(opt, "python-script", python_script)
+ else O_LST(opt, "dynlib-file", dynlib_file)
else O_YNO(opt, "disable-dnssec-lame-check", disable_dnssec_lame_check)
else O_DEC(opt, "ip-ratelimit", ip_ratelimit)
else O_DEC(opt, "ratelimit", ratelimit)
@@ -1116,6 +1145,7 @@ config_get_option(struct config_file* cfg, const char* opt,
else O_STR(opt, "redis-server-host", redis_server_host)
else O_DEC(opt, "redis-server-port", redis_server_port)
else O_DEC(opt, "redis-timeout", redis_timeout)
+ else O_YNO(opt, "redis-expire-records", redis_expire_records)
#endif /* USE_REDIS */
#endif /* USE_CACHEDB */
#ifdef USE_IPSET
@@ -1458,11 +1488,17 @@ config_delete(struct config_file* cfg)
free(cfg->dns64_prefix);
config_delstrlist(cfg->dns64_ignore_aaaa);
free(cfg->dnstap_socket_path);
+ free(cfg->dnstap_ip);
+ free(cfg->dnstap_tls_server_name);
+ free(cfg->dnstap_tls_cert_bundle);
+ free(cfg->dnstap_tls_client_key_file);
+ free(cfg->dnstap_tls_client_cert_file);
free(cfg->dnstap_identity);
free(cfg->dnstap_version);
config_deldblstrlist(cfg->ratelimit_for_domain);
config_deldblstrlist(cfg->ratelimit_below_domain);
config_delstrlist(cfg->python_script);
+ config_delstrlist(cfg->dynlib_file);
#ifdef USE_IPSECMOD
free(cfg->ipsecmod_hook);
config_delstrlist(cfg->ipsecmod_whitelist);
@@ -1509,6 +1545,11 @@ int
cfg_mark_ports(const char* str, int allow, int* avail, int num)
{
char* mid = strchr(str, '-');
+#ifdef DISABLE_EXPLICIT_PORT_RANDOMISATION
+ log_warn("Explicit port randomisation disabled, ignoring "
+ "outgoing-port-permit and outgoing-port-avoid configuration "
+ "options");
+#endif
if(!mid) {
int port = atoi(str);
if(port == 0 && strcmp(str, "0") != 0) {
diff --git a/sbin/unwind/libunbound/util/config_file.h b/sbin/unwind/libunbound/util/config_file.h
index 8739ca2ae1e..66e5025d05b 100644
--- a/sbin/unwind/libunbound/util/config_file.h
+++ b/sbin/unwind/libunbound/util/config_file.h
@@ -85,6 +85,8 @@ struct config_file {
int do_ip4;
/** do ip6 query support. */
int do_ip6;
+ /** prefer ip4 upstream queries. */
+ int prefer_ip4;
/** prefer ip6 upstream queries. */
int prefer_ip6;
/** do udp query support. */
@@ -126,6 +128,8 @@ struct config_file {
char* tls_ciphers;
/** TLS chiphersuites (TLSv1.3) */
char* tls_ciphersuites;
+ /** if SNI is to be used */
+ int tls_use_sni;
/** outgoing port range number of ports (per thread) */
int outgoing_num_ports;
@@ -186,6 +190,8 @@ struct config_file {
int ip_transparent;
/** IP_FREEBIND socket option request on port 53 sockets */
int ip_freebind;
+ /** IP_TOS socket option requested on port 53 sockets */
+ int ip_dscp;
/** number of interfaces to open. If 0 default all interfaces. */
int num_ifs;
@@ -444,6 +450,9 @@ struct config_file {
/** Python script file */
struct config_strlist* python_script;
+ /** Dynamic library file */
+ struct config_strlist* dynlib_file;
+
/** Use systemd socket activation. */
int use_systemd;
@@ -472,8 +481,22 @@ struct config_file {
/** true to enable dnstap support */
int dnstap;
+ /** using bidirectional frame streams if true */
+ int dnstap_bidirectional;
/** dnstap socket path */
char* dnstap_socket_path;
+ /** dnstap IP */
+ char* dnstap_ip;
+ /** dnstap TLS enable */
+ int dnstap_tls;
+ /** dnstap tls server authentication name */
+ char* dnstap_tls_server_name;
+ /** dnstap server cert bundle */
+ char* dnstap_tls_cert_bundle;
+ /** dnstap client key for client authentication */
+ char* dnstap_tls_client_key_file;
+ /** dnstap client cert for client authentication */
+ char* dnstap_tls_client_cert_file;
/** true to send "identity" via dnstap */
int dnstap_send_identity;
/** true to send "version" via dnstap */
@@ -582,6 +605,8 @@ struct config_file {
int redis_server_port;
/** timeout (in ms) for communication with the redis server */
int redis_timeout;
+ /** set timeout on redis records based on DNS response ttl */
+ int redis_expire_records;
#endif
#endif
diff --git a/sbin/unwind/libunbound/util/configlexer.c b/sbin/unwind/libunbound/util/configlexer.c
index 69b9d915098..0f2f959172e 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.6 2020/03/23 08:37:27 florian Exp $ */
+/* $OpenBSD: configlexer.c,v 1.7 2020/08/29 08:22:43 florian Exp $ */
/* A lexical scanner generated by flex */
@@ -27,7 +27,7 @@
/* end standard C headers. */
-/* $OpenBSD: configlexer.c,v 1.6 2020/03/23 08:37:27 florian Exp $ */
+/* $OpenBSD: configlexer.c,v 1.7 2020/08/29 08:22:43 florian 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 302
-#define YY_END_OF_BUFFER 303
+#define YY_NUM_RULES 323
+#define YY_END_OF_BUFFER 324
/* This struct is not used in this scanner,
but its presence is necessary. */
struct yy_trans_info
@@ -377,336 +377,353 @@ struct yy_trans_info
flex_int32_t yy_verify;
flex_int32_t yy_nxt;
};
-static yyconst flex_int16_t yy_accept[2986] =
+static yyconst flex_int16_t yy_accept[3137] =
{ 0,
- 1, 1, 284, 284, 288, 288, 292, 292, 296, 296,
- 1, 1, 303, 300, 1, 282, 282, 301, 2, 301,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 284, 285, 285, 286, 301, 288, 289, 289,
- 290, 301, 295, 292, 293, 293, 294, 301, 296, 297,
- 297, 298, 301, 299, 283, 2, 287, 301, 299, 300,
- 0, 1, 2, 2, 2, 2, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
-
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 284, 0, 288, 0, 295, 0, 292, 296, 0, 299,
- 0, 2, 2, 299, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
-
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 299, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
-
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 112, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 120, 300, 300, 300, 300,
- 300, 300, 300, 299, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
-
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 96, 300,
- 300, 300, 300, 300, 300, 8, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 113, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 125, 300, 299, 300, 300, 300,
-
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 277, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
-
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 299, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 54, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 222, 300, 14, 15, 300, 18, 17, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
-
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 119, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 206, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 3, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
-
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 299, 300, 300, 300, 300, 300, 300,
- 300, 272, 300, 300, 271, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 291,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
-
- 300, 300, 300, 57, 300, 246, 300, 300, 300, 300,
- 300, 300, 300, 300, 278, 279, 300, 300, 300, 300,
- 300, 58, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 116, 300, 300,
- 300, 300, 300, 300, 300, 300, 195, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 20, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 144, 300, 300, 291, 300,
-
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 94,
- 300, 300, 300, 300, 300, 300, 300, 254, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 167, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 143, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
-
- 300, 300, 300, 300, 93, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 31, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 32, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 55, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 118, 300, 300, 300, 300,
- 300, 111, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 56, 300, 300, 300,
-
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 168, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 45, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 237, 300, 300, 300,
-
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 49, 300, 50, 300, 300, 300,
- 300, 300, 97, 300, 98, 300, 300, 300, 300, 95,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 7, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 215, 300, 300, 300,
- 300, 146, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
-
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 46, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 187, 300, 186, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 16, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 59, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 194,
-
- 300, 300, 300, 300, 300, 300, 100, 300, 99, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 178,
- 300, 300, 300, 300, 300, 300, 300, 300, 126, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 78, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 82, 300,
-
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 53, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 181, 182, 300, 300, 300, 248, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 6, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 252,
- 300, 300, 300, 300, 300, 300, 273, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 41, 300, 300,
-
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 43, 300, 300, 300, 300, 300, 300, 300, 300, 174,
- 300, 300, 300, 121, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 199, 300, 175, 300, 300, 300,
- 212, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 44, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 123, 105, 300,
- 106, 300, 300, 300, 104, 300, 300, 300, 300, 300,
- 300, 300, 300, 141, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 236, 300, 300, 300, 300,
-
- 300, 300, 300, 300, 176, 300, 300, 300, 300, 300,
- 179, 300, 185, 300, 300, 300, 300, 300, 211, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 92, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 117, 300, 300, 300, 300, 300, 300, 51, 300,
- 300, 300, 25, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 19, 300, 300, 300, 300, 300, 300, 26,
- 35, 300, 151, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
-
- 300, 300, 67, 69, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 256, 300, 300,
- 300, 223, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 107, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 140, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 267, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 145, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 205,
-
- 300, 300, 300, 300, 300, 300, 300, 300, 276, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 162, 300, 300, 300, 300, 300, 300, 300, 300, 101,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 157,
- 300, 169, 300, 300, 300, 300, 300, 129, 300, 300,
- 300, 300, 300, 88, 300, 300, 300, 300, 197, 300,
- 300, 300, 300, 300, 300, 213, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 228, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 122, 300,
-
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 161,
- 300, 300, 300, 300, 300, 70, 71, 300, 300, 300,
- 300, 300, 52, 300, 300, 300, 300, 300, 77, 170,
- 300, 188, 300, 216, 300, 300, 180, 249, 300, 300,
- 300, 300, 300, 63, 300, 172, 300, 300, 300, 300,
- 300, 9, 300, 300, 300, 91, 300, 300, 300, 300,
- 241, 300, 300, 300, 196, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
-
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 160, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 147, 300, 255, 300, 300,
- 300, 300, 227, 300, 300, 300, 300, 300, 300, 300,
- 300, 207, 300, 300, 300, 300, 247, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 270, 300, 171, 300, 300, 300, 300, 300, 300,
- 300, 62, 64, 300, 300, 300, 300, 300, 300, 300,
- 90, 300, 300, 300, 300, 239, 300, 300, 300, 251,
-
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 201, 33, 27, 29, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 34, 300, 28, 30, 300, 300,
- 300, 300, 300, 300, 300, 300, 87, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 203, 200, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 61, 300, 300, 124, 300, 108, 300, 300, 300, 300,
- 300, 300, 300, 300, 142, 13, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 265, 300, 268, 300, 300,
-
- 300, 300, 300, 300, 300, 300, 300, 300, 12, 300,
- 300, 21, 300, 300, 300, 245, 300, 300, 300, 253,
- 300, 300, 300, 65, 300, 209, 300, 300, 300, 300,
- 202, 300, 300, 60, 300, 300, 300, 300, 22, 300,
- 42, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 156, 155, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 204, 198, 300, 214, 300, 300,
- 257, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 72, 300, 300, 300, 240,
-
- 300, 300, 300, 300, 184, 300, 300, 300, 300, 208,
- 300, 300, 300, 300, 300, 300, 300, 300, 274, 275,
- 153, 300, 300, 66, 300, 300, 300, 300, 163, 300,
- 300, 102, 103, 300, 300, 300, 300, 148, 300, 150,
- 300, 189, 300, 300, 300, 300, 154, 300, 300, 217,
- 300, 300, 300, 300, 300, 300, 300, 131, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 224,
- 300, 300, 300, 23, 300, 250, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 190, 300, 300,
- 238, 300, 269, 300, 183, 300, 300, 300, 300, 47,
-
- 300, 300, 300, 300, 4, 300, 300, 300, 115, 130,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 220, 36,
- 37, 300, 300, 300, 300, 300, 300, 300, 258, 300,
- 300, 300, 300, 300, 300, 226, 300, 300, 300, 193,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 75,
- 300, 48, 244, 300, 221, 300, 300, 300, 300, 11,
- 300, 300, 300, 300, 300, 114, 300, 300, 300, 300,
- 191, 79, 300, 39, 300, 300, 300, 300, 300, 300,
- 300, 300, 159, 300, 300, 300, 300, 300, 133, 300,
-
- 300, 300, 300, 300, 300, 300, 300, 300, 225, 127,
- 300, 300, 109, 110, 300, 300, 300, 81, 85, 80,
- 300, 73, 300, 300, 300, 300, 300, 10, 300, 300,
- 300, 242, 300, 300, 300, 300, 281, 38, 300, 300,
- 300, 300, 300, 158, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 86, 84, 300, 74, 266, 300, 300, 300,
- 300, 300, 300, 300, 177, 300, 300, 300, 300, 300,
- 192, 300, 300, 300, 300, 300, 300, 300, 300, 149,
- 68, 300, 300, 300, 300, 300, 259, 300, 300, 300,
-
- 300, 300, 300, 300, 128, 300, 83, 134, 135, 138,
- 139, 136, 137, 76, 300, 243, 300, 300, 300, 300,
- 152, 300, 300, 300, 300, 300, 219, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 165, 164, 40, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 89, 300, 218,
- 300, 235, 263, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 5, 300, 300, 210, 300, 300, 264,
- 300, 300, 300, 300, 300, 300, 300, 300, 24, 300,
-
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 300, 132, 300, 300, 300, 300, 300,
- 300, 300, 300, 166, 300, 173, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 260, 300, 300, 300, 300,
- 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
- 300, 300, 300, 280, 300, 300, 231, 300, 300, 300,
- 300, 300, 261, 300, 300, 300, 300, 300, 300, 262,
- 300, 300, 300, 229, 300, 232, 233, 300, 300, 300,
- 300, 300, 230, 234, 0
+ 1, 1, 297, 297, 301, 301, 305, 305, 309, 309,
+ 1, 1, 313, 313, 317, 317, 324, 321, 1, 295,
+ 295, 322, 2, 322, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 297, 298, 298, 299,
+ 322, 301, 302, 302, 303, 322, 308, 305, 306, 306,
+ 307, 322, 309, 310, 310, 311, 322, 320, 296, 2,
+ 300, 322, 320, 316, 313, 314, 314, 315, 322, 317,
+ 318, 318, 319, 322, 321, 0, 1, 2, 2, 2,
+ 2, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 297, 0, 301, 0,
+ 308, 0, 305, 309, 0, 320, 0, 2, 2, 320,
+ 316, 0, 313, 317, 0, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 320, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 115, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 123,
+ 321, 321, 321, 321, 321, 321, 321, 320, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 99, 321, 321, 321, 321, 321,
+ 321, 8, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 116, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 128, 321, 320, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 290, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 320, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 57, 321, 321, 321, 321,
+
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 227, 321, 14, 15, 321, 19, 18, 321, 321, 211,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 122, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 209, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+
+ 321, 321, 321, 3, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 320, 321, 321,
+ 321, 321, 321, 321, 321, 284, 321, 321, 283, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 304, 321, 321,
+ 321, 321, 321, 321, 321, 56, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 60, 321, 258, 321, 321, 321, 321, 321,
+ 321, 321, 321, 291, 292, 321, 321, 321, 321, 321,
+ 61, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 119, 321, 321,
+ 321, 321, 321, 321, 321, 321, 198, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+
+ 321, 321, 321, 321, 321, 321, 321, 21, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 147, 321, 321, 320,
+ 304, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 97, 321, 321, 321, 321, 321, 321, 321, 266,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 170, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 146,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 96, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 32,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 33,
+
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 58, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 121, 320, 321, 321, 321, 321,
+ 321, 114, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 59, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 231,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 171, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+
+ 321, 321, 47, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 249, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 51, 321, 52, 321, 321, 321, 321, 321, 100,
+ 321, 101, 321, 321, 321, 321, 98, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 7, 321, 320, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 220, 321, 321, 321, 321,
+ 149, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 232, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 48, 321, 321, 321, 321,
+
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 190,
+ 321, 189, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 16, 17,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 62, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 197, 321, 321, 321, 321,
+ 321, 321, 103, 321, 102, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 181, 321, 321, 321,
+
+ 321, 321, 321, 321, 321, 129, 320, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 81, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 210, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 85, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 55, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+
+ 321, 321, 321, 184, 185, 321, 321, 321, 260, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 6, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 264, 321, 321, 321, 321, 321, 321,
+ 285, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 42, 321, 321, 321, 321, 44, 321, 321, 321,
+ 321, 321, 321, 321, 321, 45, 321, 321, 321, 321,
+ 321, 321, 321, 320, 321, 177, 321, 321, 321, 124,
+
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 202, 321, 178, 321, 321, 321, 217, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 46, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 126, 108, 321,
+ 109, 321, 321, 321, 107, 321, 321, 321, 321, 321,
+ 321, 321, 321, 144, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 248, 321, 321, 321,
+ 321, 321, 321, 321, 321, 179, 321, 321, 321, 321,
+ 321, 182, 321, 188, 321, 321, 321, 321, 321, 216,
+
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 95, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 120, 321, 321, 321, 321, 321, 321,
+ 53, 321, 321, 321, 26, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 20, 321, 321, 321, 321, 321,
+ 321, 27, 36, 321, 154, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 320, 321,
+ 321, 321, 321, 321, 321, 70, 72, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+
+ 268, 321, 321, 321, 321, 228, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 110, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 143, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 279, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 148, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 208, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 288, 321, 321,
+
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 165,
+ 321, 321, 321, 321, 321, 321, 321, 321, 104, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 160, 321,
+ 172, 321, 321, 321, 321, 320, 321, 132, 321, 321,
+ 321, 321, 321, 91, 321, 321, 321, 321, 200, 321,
+ 321, 321, 321, 321, 321, 218, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 240, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 125, 321, 321, 321, 321, 321, 321, 321,
+
+ 321, 321, 321, 164, 321, 321, 321, 321, 321, 321,
+ 73, 74, 321, 321, 321, 321, 321, 54, 321, 321,
+ 321, 321, 321, 80, 173, 321, 191, 321, 221, 321,
+ 321, 183, 261, 321, 321, 321, 321, 321, 66, 321,
+ 175, 321, 321, 321, 321, 321, 9, 321, 321, 321,
+ 94, 321, 321, 321, 321, 253, 321, 321, 321, 321,
+ 199, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+
+ 321, 321, 321, 321, 321, 321, 320, 321, 321, 321,
+ 321, 163, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 150, 321, 267, 321, 321, 321, 321, 321,
+ 239, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 212, 321, 321, 321, 321, 259, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 282, 321, 174, 321, 321, 321, 321,
+ 321, 321, 321, 65, 67, 321, 321, 321, 321, 321,
+ 321, 321, 93, 321, 321, 321, 321, 251, 321, 321,
+
+ 321, 321, 263, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 204, 34, 28, 30, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 35, 321, 29,
+ 31, 321, 321, 321, 321, 321, 321, 321, 321, 90,
+ 321, 321, 321, 321, 321, 321, 320, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 206, 203,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 64, 321,
+ 321, 127, 321, 111, 321, 321, 321, 321, 321, 321,
+ 321, 321, 145, 312, 13, 321, 321, 321, 321, 321,
+
+ 321, 321, 321, 321, 277, 321, 280, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 12, 321, 321,
+ 22, 321, 321, 321, 257, 321, 321, 321, 321, 265,
+ 321, 321, 321, 68, 321, 214, 321, 321, 321, 321,
+ 205, 321, 321, 63, 321, 321, 321, 321, 23, 321,
+ 43, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 159, 158, 312, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 207, 201, 321, 219, 321,
+ 321, 269, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 75, 321, 321, 321, 252, 321, 321, 321, 321, 187,
+ 321, 321, 321, 321, 213, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 286, 287, 156, 321, 321, 69,
+ 321, 321, 321, 321, 166, 321, 321, 105, 106, 321,
+ 321, 321, 321, 151, 321, 153, 321, 192, 321, 321,
+ 321, 321, 157, 321, 321, 222, 321, 321, 321, 321,
+ 321, 321, 321, 134, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 230, 321, 321, 321,
+ 321, 321, 321, 321, 24, 321, 262, 321, 321, 321,
+
+ 321, 321, 321, 321, 321, 321, 321, 321, 193, 321,
+ 321, 250, 321, 281, 321, 186, 321, 321, 321, 321,
+ 49, 321, 321, 321, 321, 4, 321, 321, 321, 321,
+ 118, 133, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 225, 37, 38, 321, 321, 321, 321, 321, 321, 321,
+ 270, 321, 321, 321, 321, 321, 321, 321, 238, 321,
+ 321, 321, 321, 321, 321, 321, 196, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 78, 321, 50, 256,
+ 321, 226, 321, 321, 321, 321, 11, 321, 321, 321,
+
+ 321, 321, 321, 117, 321, 321, 321, 321, 194, 82,
+ 321, 40, 321, 321, 321, 321, 321, 321, 321, 321,
+ 162, 321, 321, 321, 321, 321, 136, 321, 321, 321,
+ 321, 229, 321, 321, 321, 321, 321, 237, 321, 321,
+ 321, 321, 130, 321, 321, 112, 113, 321, 321, 321,
+ 84, 88, 83, 321, 76, 321, 321, 321, 321, 321,
+ 10, 321, 321, 321, 254, 289, 321, 321, 321, 321,
+ 294, 39, 321, 321, 321, 321, 321, 161, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+
+ 89, 87, 321, 77, 278, 321, 321, 321, 321, 321,
+ 321, 321, 180, 321, 321, 321, 321, 321, 195, 321,
+ 321, 321, 321, 321, 321, 321, 321, 152, 71, 321,
+ 321, 321, 321, 321, 271, 321, 321, 321, 321, 321,
+ 321, 321, 234, 321, 321, 233, 131, 321, 86, 137,
+ 138, 141, 142, 139, 140, 79, 321, 255, 321, 321,
+ 321, 321, 155, 321, 321, 321, 321, 321, 224, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 168, 167, 41, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 321, 321, 92, 321, 223, 321, 247, 275, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 5, 321, 321, 215, 321, 321, 276, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 235, 25, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+ 321, 236, 321, 321, 321, 135, 321, 321, 321, 321,
+ 321, 321, 321, 321, 169, 321, 176, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 272, 321, 321, 321,
+ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
+
+ 321, 321, 321, 321, 293, 321, 321, 243, 321, 321,
+ 321, 321, 321, 273, 321, 321, 321, 321, 321, 321,
+ 274, 321, 321, 321, 241, 321, 244, 245, 321, 321,
+ 321, 321, 321, 242, 246, 0
} ;
static yyconst flex_int32_t yy_ec[256] =
@@ -749,1968 +766,2072 @@ 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[3000] =
+static yyconst flex_int16_t yy_base[3155] =
{ 0,
0, 0, 38, 41, 44, 46, 59, 65, 71, 77,
- 90, 112, 4280, 4028, 81, 5813, 5813, 5813, 96, 52,
- 106, 63, 107, 111, 70, 128, 130, 133, 57, 88,
- 76, 135, 141, 117, 148, 145, 160, 164, 185, 177,
- 189, 152, 3954, 5813, 5813, 5813, 107, 3854, 5813, 5813,
- 5813, 165, 3105, 2544, 5813, 5813, 5813, 211, 2291, 5813,
- 5813, 5813, 180, 2178, 5813, 217, 5813, 221, 168, 1832,
- 225, 231, 0, 237, 0, 0, 226, 231, 85, 180,
- 114, 238, 239, 156, 234, 206, 240, 232, 200, 132,
- 253, 244, 245, 248, 256, 257, 264, 271, 249, 277,
-
- 279, 262, 282, 285, 270, 272, 291, 293, 290, 299,
- 301, 284, 302, 305, 310, 312, 311, 315, 313, 319,
- 322, 318, 324, 327, 326, 193, 221, 334, 329, 340,
- 342, 325, 348, 349, 350, 353, 354, 357, 363, 359,
- 1432, 379, 1075, 381, 915, 388, 450, 365, 392, 278,
- 396, 400, 0, 377, 392, 401, 367, 394, 396, 402,
- 261, 398, 399, 403, 405, 406, 418, 407, 416, 422,
- 426, 430, 427, 434, 424, 437, 439, 440, 429, 451,
- 453, 454, 446, 455, 456, 458, 461, 462, 463, 472,
- 465, 473, 484, 479, 488, 492, 475, 493, 496, 491,
-
- 503, 499, 506, 507, 502, 498, 508, 510, 513, 515,
- 516, 518, 517, 520, 521, 523, 525, 533, 535, 526,
- 534, 528, 547, 542, 549, 546, 548, 552, 551, 555,
- 563, 564, 556, 565, 567, 568, 571, 574, 583, 584,
- 585, 569, 576, 586, 580, 588, 589, 590, 591, 600,
- 603, 602, 605, 612, 593, 611, 613, 615, 616, 617,
- 626, 618, 628, 622, 635, 619, 633, 638, 627, 636,
- 641, 645, 646, 653, 640, 656, 657, 658, 660, 661,
- 663, 671, 666, 667, 648, 670, 672, 674, 675, 676,
- 678, 687, 679, 689, 682, 690, 695, 691, 710, 699,
-
- 700, 701, 702, 711, 704, 712, 713, 726, 731, 721,
- 732, 733, 735, 737, 740, 748, 739, 746, 743, 750,
- 752, 753, 762, 758, 5813, 757, 760, 773, 766, 774,
- 775, 776, 781, 782, 763, 789, 787, 788, 792, 814,
- 796, 798, 794, 803, 806, 5813, 804, 808, 838, 810,
- 812, 832, 828, 824, 827, 829, 839, 836, 849, 842,
- 847, 851, 862, 858, 859, 860, 861, 864, 863, 877,
- 872, 870, 799, 874, 889, 875, 882, 886, 887, 892,
- 893, 894, 897, 899, 902, 903, 895, 904, 905, 908,
- 913, 914, 916, 917, 927, 929, 921, 940, 918, 935,
-
- 942, 943, 937, 944, 947, 950, 951, 952, 953, 961,
- 958, 959, 963, 964, 966, 967, 970, 972, 973, 975,
- 977, 979, 978, 985, 988, 981, 994, 989, 5813, 996,
- 998, 999, 1000, 1001, 1003, 5813, 1004, 1005, 1006, 1014,
- 1017, 1016, 1013, 1023, 1027, 1028, 1029, 1030, 1039, 1012,
- 1041, 1040, 1036, 1042, 1046, 1048, 1049, 1051, 1052, 1054,
- 1055, 1057, 1060, 1077, 5813, 1061, 1064, 1062, 1063, 1070,
- 1080, 1089, 1072, 1090, 1088, 1065, 1105, 1092, 1106, 1100,
- 1101, 1111, 1102, 1113, 1107, 1116, 1115, 1117, 1118, 1119,
- 1120, 1125, 1126, 1131, 5813, 1133, 1134, 1145, 1135, 1143,
-
- 1132, 1146, 1148, 1149, 1150, 1152, 1153, 1156, 1162, 1172,
- 1157, 1174, 1159, 1170, 1175, 1176, 1177, 1178, 1179, 1180,
- 1193, 1184, 1186, 1200, 1207, 1203, 1205, 1212, 1190, 1210,
- 1209, 1208, 1215, 1216, 1217, 1218, 1220, 1221, 1230, 1228,
- 1226, 1229, 1231, 1242, 1233, 1235, 1240, 1237, 1245, 1247,
- 1253, 1254, 1250, 1256, 5813, 1263, 1260, 1267, 1262, 1268,
- 1272, 1274, 1261, 1276, 1278, 1280, 1281, 1282, 1284, 1287,
- 1289, 1290, 1291, 1292, 1301, 1297, 1307, 1314, 1313, 1315,
- 1299, 1305, 1324, 1321, 1328, 1327, 1329, 1337, 1325, 1332,
- 1323, 1339, 1335, 1340, 1341, 1344, 1347, 1350, 1352, 1359,
-
- 1351, 1356, 1366, 1367, 1358, 1369, 1362, 1372, 1373, 1375,
- 1376, 1377, 1378, 1385, 1380, 1386, 1382, 1387, 1388, 1389,
- 1392, 1390, 1407, 1399, 1400, 1403, 1409, 1410, 1411, 1415,
- 1416, 1417, 1418, 1419, 1420, 1423, 1424, 1183, 1425, 1440,
- 1426, 1430, 1438, 1441, 1447, 1446, 1450, 1454, 1444, 1456,
- 1457, 1458, 1460, 1461, 1465, 1464, 1471, 1468, 1474, 1476,
- 1478, 1477, 1480, 1484, 1487, 1481, 5813, 1488, 1495, 1494,
- 1496, 1497, 1499, 1501, 1508, 1503, 1505, 1504, 1506, 1510,
- 1516, 5813, 1517, 5813, 5813, 1520, 5813, 5813, 1518, 1523,
- 1526, 1536, 1533, 1543, 1298, 1539, 1541, 1545, 1552, 1566,
-
- 1548, 1550, 1551, 1547, 1556, 1561, 1574, 1562, 1549, 1575,
- 1577, 1580, 1586, 1513, 1587, 1579, 1554, 1588, 1590, 1589,
- 1592, 1595, 1600, 1601, 1594, 1603, 1596, 1611, 1616, 1607,
- 1623, 5813, 1619, 1626, 1631, 1627, 1634, 1630, 1629, 1636,
- 1638, 1640, 1641, 1642, 1643, 1645, 1646, 1651, 1604, 1647,
- 1659, 1654, 5813, 1657, 1658, 1656, 1662, 1669, 1663, 1664,
- 1670, 1674, 1675, 1682, 1679, 1677, 1684, 1685, 1686, 1687,
- 5813, 1689, 1697, 1693, 1699, 1700, 1702, 1705, 1701, 1706,
- 1707, 1708, 1709, 1711, 1715, 1718, 1719, 1720, 1717, 1724,
- 1727, 1730, 1735, 1742, 1737, 1739, 1743, 1745, 1746, 1747,
-
- 1749, 1750, 1758, 1751, 1760, 1755, 1762, 1767, 1772, 1759,
- 1771, 1774, 1764, 1780, 1788, 1784, 1777, 1773, 1796, 1789,
- 1793, 1794, 1797, 1799, 1800, 1801, 1803, 1806, 1807, 1808,
- 1810, 5813, 1811, 1816, 5813, 1814, 1817, 1839, 1818, 1820,
- 1821, 1823, 1826, 1833, 1825, 1831, 1841, 1843, 1853, 1849,
- 1854, 1856, 1859, 1861, 1862, 1865, 1867, 1869, 1878, 1879,
- 1883, 1885, 1890, 1870, 1868, 1877, 1896, 1888, 1889, 1891,
- 1899, 1906, 1893, 1901, 1903, 1908, 1912, 1914, 1919, 5813,
- 1924, 1925, 1920, 1921, 1932, 1930, 1929, 1933, 1936, 1937,
- 1944, 1940, 1941, 1946, 1943, 1947, 1950, 1952, 1956, 1957,
-
- 1962, 1954, 1973, 5813, 1958, 5813, 1955, 1959, 1972, 1975,
- 1976, 1977, 1978, 1980, 5813, 5813, 1981, 1984, 1987, 1996,
- 1982, 5813, 1997, 2004, 2001, 2006, 2000, 1999, 2007, 2008,
- 2011, 2016, 2012, 2023, 2015, 2022, 2020, 5813, 2028, 2018,
- 2024, 2033, 2035, 2036, 2037, 2040, 5813, 2043, 2044, 2047,
- 2054, 2046, 2050, 2055, 2058, 2056, 2062, 2063, 2064, 2065,
- 2066, 2075, 2076, 2067, 2078, 2081, 2077, 5813, 2074, 2085,
- 2093, 2089, 2091, 2088, 2095, 2096, 2098, 2099, 2100, 2103,
- 2106, 2107, 2115, 2116, 2108, 2112, 2120, 2113, 2122, 2125,
- 2128, 2127, 2129, 2130, 2131, 5813, 2133, 2135, 124, 2139,
-
- 2140, 2142, 2141, 2148, 2144, 2147, 2164, 2165, 2161, 2160,
- 2163, 2169, 2170, 2171, 2172, 2173, 2174, 2175, 2177, 5813,
- 2151, 2179, 2180, 2182, 2185, 2186, 2189, 5813, 2199, 2202,
- 2188, 2201, 2209, 2204, 2210, 2211, 2213, 2218, 2214, 2217,
- 5813, 2221, 2224, 2226, 2227, 2228, 2230, 2235, 2237, 2238,
- 2239, 2242, 2240, 2241, 2245, 2243, 2246, 2250, 2259, 2249,
- 2251, 2256, 2260, 5813, 2272, 2261, 2270, 2263, 2274, 2273,
- 2287, 2277, 2280, 2282, 2288, 2297, 2290, 2284, 2298, 2299,
- 2304, 2308, 2307, 2313, 2314, 2311, 2315, 2321, 2323, 2324,
- 2325, 2329, 2327, 2330, 2331, 2332, 2339, 2340, 2337, 2348,
-
- 2346, 2353, 2351, 2356, 5813, 2357, 2358, 2341, 2363, 2371,
- 2368, 2369, 2375, 2376, 2377, 2378, 2379, 2386, 2381, 2383,
- 2384, 2387, 2388, 2394, 2395, 2399, 2400, 2407, 2401, 2409,
- 2410, 5813, 2411, 2415, 2404, 2417, 2419, 2421, 2428, 2429,
- 2431, 2422, 2425, 2433, 2434, 2435, 2437, 2439, 2440, 2445,
- 2442, 5813, 2448, 2450, 2453, 2456, 2455, 2459, 2462, 2468,
- 2466, 2452, 2472, 2473, 2474, 5813, 2481, 2482, 2479, 2483,
- 2485, 2486, 2488, 2490, 2491, 5813, 2492, 2493, 2501, 2502,
- 2497, 5813, 2504, 2500, 2506, 2507, 2508, 2509, 2517, 2510,
- 2513, 2515, 2523, 2525, 2521, 2529, 5813, 2531, 2541, 2536,
-
- 2537, 2539, 2542, 2543, 2545, 2557, 2549, 2552, 2559, 2564,
- 2561, 2548, 2555, 2569, 2570, 2571, 2573, 2574, 5813, 2576,
- 2577, 2579, 2582, 2580, 2585, 2586, 2598, 2588, 2591, 2593,
- 2596, 2599, 2601, 2604, 2606, 2612, 2608, 2615, 2618, 2616,
- 2621, 2602, 2625, 2628, 2635, 2632, 2636, 5813, 2639, 2640,
- 2634, 2641, 2642, 2645, 2646, 2647, 2649, 2650, 2652, 2651,
- 2654, 2667, 2676, 2662, 2663, 2655, 2668, 2671, 2672, 2678,
- 2679, 2683, 2690, 2681, 2685, 2694, 2689, 2692, 2702, 2691,
- 2693, 2695, 2700, 2703, 2704, 2705, 2706, 2713, 2709, 2723,
- 2724, 2726, 2715, 2718, 2731, 2732, 5813, 2735, 2733, 2736,
-
- 2737, 2742, 2745, 2749, 2739, 2746, 2747, 2757, 2758, 2755,
- 2760, 2763, 2770, 2766, 5813, 2767, 5813, 2768, 2769, 2771,
- 2779, 2776, 5813, 2781, 5813, 2784, 2791, 2777, 2782, 5813,
- 2792, 2786, 2788, 2799, 2794, 2801, 2802, 2803, 2804, 2810,
- 2805, 2812, 2807, 2813, 2815, 2816, 2819, 2820, 2826, 2833,
- 2828, 2830, 2817, 2836, 2838, 2840, 2841, 5813, 2844, 2845,
- 2850, 2849, 2851, 2852, 2853, 2855, 2856, 2858, 2857, 2862,
- 2861, 2870, 2874, 2886, 2871, 2888, 5813, 2873, 2884, 2875,
- 2889, 5813, 2885, 2892, 2896, 2898, 2893, 2900, 2902, 2901,
- 2905, 2903, 2908, 2919, 2920, 2921, 2923, 2924, 2909, 2910,
-
- 2933, 2930, 2911, 2938, 2942, 2940, 2931, 2941, 2943, 2946,
- 2947, 2954, 2955, 2951, 2958, 2953, 2960, 2964, 2967, 2957,
- 2961, 2968, 2969, 2970, 2973, 2974, 2977, 2978, 2979, 2980,
- 2982, 5813, 2990, 2986, 2991, 2992, 2995, 2997, 3000, 3001,
- 3004, 3002, 3005, 3009, 3007, 5813, 3014, 5813, 3008, 3022,
- 3016, 3027, 3020, 3028, 3035, 3031, 3036, 3037, 3039, 3040,
- 3041, 3042, 3043, 3047, 3050, 3048, 3061, 3054, 3051, 3063,
- 3064, 3065, 3067, 3068, 5813, 3069, 3070, 3072, 3074, 3075,
- 3081, 3077, 3087, 3085, 3089, 3091, 3101, 5813, 3093, 3097,
- 3098, 3106, 3108, 3104, 3114, 3121, 3118, 3125, 3124, 5813,
-
- 3116, 3117, 3132, 3127, 3134, 3135, 5813, 3133, 5813, 3128,
- 3138, 3142, 3139, 3145, 3146, 3149, 3151, 3153, 3160, 3161,
- 3156, 3144, 3162, 3166, 3168, 3173, 3170, 3171, 3172, 5813,
- 3176, 3177, 3178, 3179, 3183, 3186, 3189, 3193, 5813, 3194,
- 3196, 3199, 3200, 3201, 3203, 3205, 3204, 3210, 3213, 3207,
- 3208, 3221, 3217, 3206, 3227, 3231, 3232, 3237, 5813, 3234,
- 3214, 3244, 3241, 3242, 3243, 3246, 3247, 3248, 3250, 3251,
- 3252, 3253, 3259, 3258, 3255, 3256, 3261, 3264, 3275, 3272,
- 3263, 3276, 3277, 3280, 3283, 3282, 3286, 3289, 3291, 3292,
- 3302, 3303, 3294, 3297, 3306, 3307, 3314, 3310, 5813, 3322,
-
- 3299, 3325, 3309, 3320, 3327, 3328, 3330, 3331, 3321, 3332,
- 3339, 3335, 5813, 3348, 3337, 3336, 3346, 3349, 3359, 3354,
- 3340, 3356, 3362, 3358, 3365, 3367, 3368, 3369, 3372, 3373,
- 5813, 5813, 3375, 3376, 3379, 5813, 3380, 3378, 3391, 3382,
- 3383, 3392, 3395, 3394, 3386, 3396, 3398, 3400, 5813, 3405,
- 3414, 3406, 3411, 3415, 3419, 3421, 3417, 3423, 3425, 3427,
- 3428, 3430, 3429, 3431, 3434, 3442, 3438, 3437, 3439, 5813,
- 3441, 3444, 3448, 3450, 3451, 3454, 5813, 3455, 3456, 3462,
- 3463, 3465, 3467, 3473, 3476, 3477, 3478, 3480, 3481, 3482,
- 3483, 3485, 3490, 3488, 3495, 3496, 3487, 5813, 3500, 3501,
-
- 3504, 3507, 3511, 3514, 3521, 3522, 3518, 3520, 3519, 3529,
- 5813, 3526, 3528, 3527, 3530, 3540, 3535, 3542, 3533, 5813,
- 3537, 3541, 3543, 5813, 3547, 3551, 3554, 3559, 3546, 3562,
- 3561, 3563, 3564, 3565, 5813, 3571, 5813, 3569, 3573, 3577,
- 5813, 3575, 3579, 3581, 3583, 3580, 3588, 3590, 3597, 3584,
- 3592, 3594, 3598, 3599, 3600, 3608, 3606, 5813, 3609, 3607,
- 3613, 3614, 3618, 3611, 3616, 3619, 3626, 5813, 5813, 3629,
- 5813, 3630, 3631, 3632, 5813, 3634, 3636, 3641, 3638, 3642,
- 3644, 3652, 3645, 5813, 3654, 3640, 3656, 3658, 3659, 3662,
- 3663, 3664, 3665, 3666, 3671, 5813, 3668, 3670, 3673, 3669,
-
- 3678, 3683, 3679, 3685, 5813, 3689, 3693, 3692, 3696, 3697,
- 5813, 3699, 5813, 3700, 3702, 3703, 3707, 3706, 5813, 3712,
- 3713, 3717, 3719, 3721, 3720, 3723, 3724, 3730, 3731, 3738,
- 3734, 3733, 3735, 5813, 3736, 3740, 3742, 3749, 3737, 3744,
- 3753, 3756, 3757, 3758, 3763, 3760, 3767, 3769, 3771, 3773,
- 3765, 5813, 3775, 3777, 3776, 3791, 3786, 3781, 5813, 3782,
- 3796, 3798, 5813, 3789, 3788, 3800, 3805, 3792, 3799, 3806,
- 3807, 3811, 5813, 3812, 3813, 3814, 3815, 3818, 3819, 5813,
- 5813, 3827, 5813, 3829, 3816, 3830, 3831, 3832, 3838, 3837,
- 3841, 3843, 3840, 3844, 3851, 3852, 3861, 3864, 3868, 3863,
-
- 3867, 3853, 5813, 5813, 3870, 3871, 3874, 3877, 3878, 3880,
- 3881, 3888, 3884, 3890, 3894, 3895, 3902, 5813, 3901, 3887,
- 3904, 5813, 3885, 3898, 3906, 3909, 3911, 3912, 3915, 3914,
- 3917, 3918, 3920, 3919, 3922, 3923, 3927, 3926, 3928, 3936,
- 5813, 3940, 3937, 3938, 3941, 3943, 3944, 3947, 3949, 3950,
- 5813, 3951, 3953, 3955, 3959, 3960, 3962, 3969, 3977, 3979,
- 3965, 3973, 3981, 3983, 3985, 3988, 5813, 3989, 3987, 3990,
- 3991, 3997, 3999, 4000, 4002, 4004, 4006, 4008, 4009, 4012,
- 4016, 4013, 4017, 4018, 4020, 5813, 4024, 4031, 4021, 4034,
- 4025, 4035, 4042, 4036, 4047, 4038, 4044, 4048, 4050, 5813,
-
- 4051, 4053, 4054, 4056, 4062, 4055, 4058, 4063, 5813, 4065,
- 4066, 4068, 4070, 4072, 4077, 4079, 4080, 4082, 4083, 4089,
- 5813, 4087, 4088, 4096, 4094, 4097, 4100, 4098, 4102, 5813,
- 4106, 4108, 4112, 4120, 4104, 4122, 4118, 4124, 4115, 4117,
- 4131, 4126, 4132, 4133, 4136, 4137, 4144, 4149, 4146, 5813,
- 4139, 5813, 4147, 4152, 4154, 4157, 4155, 5813, 4160, 4162,
- 4164, 4165, 4161, 5813, 4167, 4168, 4171, 4169, 5813, 4182,
- 4183, 4172, 4187, 4174, 4189, 5813, 4194, 4195, 4191, 4203,
- 4206, 4202, 4204, 4207, 4205, 4209, 4210, 4211, 5813, 4215,
- 4213, 4221, 4222, 4224, 4214, 4226, 4232, 4225, 5813, 4235,
-
- 4228, 4236, 4237, 4239, 4241, 4242, 4250, 4246, 4245, 5813,
- 4249, 4253, 4260, 4259, 4255, 5813, 5813, 4262, 4268, 4270,
- 4264, 4271, 5813, 4274, 4281, 4277, 4280, 4282, 5813, 5813,
- 4284, 5813, 4285, 5813, 4286, 4288, 5813, 5813, 4287, 4293,
- 4294, 4296, 4298, 5813, 4306, 5813, 4308, 4309, 4295, 4307,
- 4312, 5813, 4313, 4314, 4316, 5813, 4318, 4328, 4320, 4321,
- 5813, 4324, 4325, 4330, 5813, 4333, 4340, 4337, 4331, 4341,
- 4346, 4343, 4347, 4352, 4353, 4354, 4335, 4357, 4364, 4368,
- 4370, 4372, 4373, 4356, 4375, 4376, 4378, 4381, 4382, 4383,
- 4384, 4387, 4388, 4390, 4392, 4395, 4396, 4397, 4398, 4399,
-
- 4409, 4401, 4402, 4412, 4415, 4405, 4413, 4416, 4417, 4418,
- 4425, 4427, 4420, 4423, 5813, 4428, 4430, 4434, 4437, 4439,
- 4442, 4443, 4445, 4450, 4454, 5813, 4458, 5813, 4460, 4451,
- 4456, 4462, 5813, 4463, 4464, 4465, 4466, 4468, 4470, 4471,
- 4472, 5813, 4475, 4476, 4479, 4485, 5813, 4491, 4493, 4478,
- 4494, 4495, 4499, 4497, 4501, 4504, 4503, 4506, 4508, 4516,
- 4509, 4511, 4513, 4518, 4517, 4521, 4524, 4358, 4531, 4533,
- 4539, 5813, 4525, 5813, 4534, 4528, 4536, 4540, 4545, 4542,
- 4546, 5813, 5813, 4549, 4551, 4553, 4555, 4556, 4558, 4559,
- 5813, 4561, 4564, 4567, 4571, 5813, 4572, 4573, 4578, 5813,
-
- 4575, 4579, 4581, 4583, 4580, 4590, 4586, 4594, 4595, 4596,
- 4598, 5813, 5813, 5813, 5813, 4600, 4602, 4605, 4606, 4607,
- 4609, 4612, 4614, 4610, 5813, 4616, 5813, 5813, 4617, 4623,
- 4626, 4627, 4629, 4630, 4633, 4631, 5813, 4635, 4636, 4638,
- 4644, 4646, 4648, 4651, 4652, 4653, 4654, 4661, 4660, 4662,
- 4664, 4668, 4667, 4670, 5813, 5813, 4674, 4676, 4677, 4684,
- 4681, 4685, 4688, 4689, 4691, 4692, 4694, 4695, 4697, 4698,
- 5813, 4699, 4705, 5813, 4700, 5813, 4706, 4713, 4707, 4714,
- 4715, 4717, 4719, 4721, 5813, 5813, 4716, 4722, 4728, 4732,
- 4729, 4734, 4723, 4737, 4733, 5813, 4739, 5813, 4740, 4741,
-
- 4750, 4744, 4757, 4759, 4761, 4763, 4756, 4765, 5813, 4758,
- 4766, 5813, 4768, 4771, 4773, 5813, 4774, 4777, 4781, 5813,
- 4783, 4786, 4784, 5813, 4792, 5813, 4778, 4794, 4793, 4801,
- 5813, 4787, 4796, 5813, 4803, 4809, 4810, 4804, 5813, 4806,
- 5813, 4811, 4815, 4818, 4821, 4812, 4823, 4816, 4825, 4826,
- 4834, 4833, 4835, 5813, 5813, 4842, 4830, 4837, 4838, 4844,
- 4851, 4846, 4848, 4855, 5813, 5813, 4856, 5813, 4859, 4860,
- 5813, 4847, 4862, 4864, 4868, 4866, 4849, 4874, 4876, 4870,
- 4877, 4892, 4878, 4880, 4893, 4895, 4898, 4900, 4887, 4902,
- 4890, 4883, 4904, 4905, 4906, 5813, 4912, 4914, 4915, 5813,
-
- 4919, 4916, 4921, 4922, 5813, 4929, 4930, 4931, 4932, 5813,
- 4924, 4935, 4943, 4936, 4937, 4950, 4938, 4946, 5813, 5813,
- 5813, 4948, 4957, 5813, 4959, 4954, 4960, 4961, 5813, 4962,
- 4963, 5813, 5813, 4964, 4965, 4966, 4973, 5813, 4969, 5813,
- 4970, 5813, 4972, 4978, 4987, 4984, 5813, 4990, 4996, 5813,
- 4999, 5002, 5004, 5005, 4992, 4994, 5006, 5813, 4982, 5010,
- 5016, 5008, 5009, 5017, 5018, 5019, 5026, 5022, 5025, 5813,
- 5029, 5028, 5030, 5813, 5032, 5813, 5033, 5036, 5035, 5042,
- 5040, 5034, 5044, 5054, 5041, 5058, 5045, 5813, 5061, 5063,
- 5813, 5055, 5813, 5066, 5813, 5068, 5069, 5070, 5072, 5813,
-
- 5074, 5071, 5075, 5078, 5813, 5079, 5081, 5083, 5813, 5813,
- 5087, 5094, 5096, 4634, 5090, 5093, 5099, 5103, 5100, 5104,
- 5105, 5112, 5108, 5109, 5110, 5115, 5117, 5123, 5813, 5813,
- 5813, 5116, 5118, 5132, 5134, 5136, 5135, 5131, 5813, 5137,
- 5140, 5141, 5150, 5146, 5148, 5813, 5152, 5143, 5156, 5813,
- 5154, 5158, 5161, 5155, 5167, 5171, 5174, 5176, 5177, 5813,
- 5179, 5813, 5813, 5168, 5813, 5159, 5180, 5183, 5184, 5813,
- 5189, 5186, 5190, 5192, 5194, 5813, 5197, 5195, 5198, 5199,
- 5813, 5813, 5207, 5813, 5209, 5211, 5212, 5219, 5218, 5214,
- 5221, 5223, 5813, 5224, 5225, 5227, 5229, 5231, 5813, 5234,
-
- 5233, 5235, 5236, 5239, 5238, 5243, 5246, 5248, 5813, 5813,
- 5249, 5250, 5813, 5813, 5259, 5265, 5247, 5813, 5813, 5813,
- 5271, 5813, 5273, 5277, 5281, 5285, 5262, 5813, 5287, 5276,
- 5284, 5813, 5268, 5280, 5290, 5292, 5813, 5813, 5289, 5196,
- 5293, 5296, 5301, 5813, 5299, 5302, 5303, 5307, 5309, 5310,
- 5313, 5312, 5328, 5326, 5315, 5319, 5323, 5330, 5331, 5329,
- 5333, 5337, 5813, 5813, 5339, 5813, 5813, 5346, 5350, 5352,
- 5354, 5356, 5358, 5360, 5813, 5361, 5363, 5364, 5365, 5347,
- 5813, 5366, 5369, 5371, 5374, 5372, 5375, 5378, 5380, 5813,
- 5813, 5381, 5388, 5382, 5389, 5383, 5813, 5392, 5400, 5396,
-
- 5397, 5398, 5403, 5404, 5813, 5407, 5813, 5813, 5813, 5813,
- 5813, 5813, 5813, 5813, 5406, 5813, 5405, 5412, 5414, 5416,
- 5813, 5419, 5423, 5424, 5425, 5426, 5813, 5427, 5430, 5429,
- 5341, 5431, 5435, 5438, 5433, 5437, 5443, 5439, 5447, 5444,
- 5448, 5449, 5813, 5813, 5813, 5453, 5456, 5458, 5460, 5471,
- 5472, 5475, 5478, 5461, 5463, 5479, 5481, 5484, 5466, 5485,
- 5493, 5488, 5490, 5495, 5492, 5496, 5498, 5813, 5499, 5813,
- 5501, 5813, 5813, 5504, 5505, 5508, 5509, 5517, 5518, 5513,
- 5520, 5521, 5523, 5813, 5524, 5526, 5813, 5525, 5530, 5813,
- 5529, 5531, 5532, 5535, 5537, 5538, 5542, 5553, 5813, 5541,
-
- 5544, 5552, 5555, 5559, 5566, 5567, 5565, 5569, 5572, 5556,
- 5579, 5581, 5578, 5585, 5813, 5582, 5576, 5587, 5588, 5589,
- 5596, 5591, 5592, 5813, 5597, 5813, 5600, 5602, 5601, 5593,
- 5603, 5604, 5615, 5613, 5619, 5813, 5609, 5620, 5623, 5624,
- 5626, 5628, 5629, 5630, 5638, 5634, 5641, 5645, 5640, 5646,
- 5631, 5651, 5648, 5813, 5655, 5652, 5813, 5657, 5658, 5659,
- 5660, 5664, 5813, 5669, 5661, 5666, 5672, 5675, 5670, 5813,
- 5682, 5684, 5686, 5813, 5687, 5813, 5813, 5689, 5676, 5688,
- 5691, 5697, 5813, 5813, 5813, 5721, 5728, 5735, 5742, 5749,
- 88, 5756, 5763, 5770, 5777, 5784, 5791, 5798, 5805
-
+ 90, 112, 96, 118, 124, 136, 4335, 3834, 81, 6133,
+ 6133, 6133, 129, 52, 130, 63, 131, 152, 70, 140,
+ 144, 156, 57, 88, 76, 173, 175, 95, 184, 135,
+ 185, 205, 147, 204, 178, 123, 3717, 6133, 6133, 6133,
+ 107, 3426, 6133, 6133, 6133, 178, 3362, 3153, 6133, 6133,
+ 6133, 224, 2654, 6133, 6133, 6133, 204, 2276, 6133, 238,
+ 6133, 242, 197, 2238, 1962, 6133, 6133, 6133, 246, 1833,
+ 6133, 6133, 6133, 216, 1673, 252, 166, 0, 256, 0,
+ 0, 216, 248, 162, 241, 250, 254, 258, 92, 259,
+
+ 262, 263, 260, 264, 265, 272, 267, 273, 271, 282,
+ 280, 288, 292, 290, 283, 299, 309, 289, 307, 310,
+ 311, 300, 316, 191, 321, 315, 323, 304, 325, 327,
+ 326, 337, 329, 338, 340, 348, 341, 345, 347, 350,
+ 357, 227, 351, 354, 358, 362, 369, 359, 373, 379,
+ 374, 377, 383, 385, 387, 384, 1618, 403, 1352, 406,
+ 814, 416, 740, 688, 410, 600, 420, 424, 0, 416,
+ 501, 430, 464, 442, 435, 422, 434, 429, 430, 431,
+ 433, 397, 432, 435, 436, 437, 440, 454, 438, 453,
+ 459, 462, 466, 461, 467, 471, 472, 473, 474, 476,
+
+ 477, 490, 485, 487, 480, 493, 495, 496, 498, 499,
+ 505, 512, 500, 502, 521, 526, 522, 530, 519, 535,
+ 537, 532, 540, 533, 542, 547, 543, 544, 545, 548,
+ 549, 552, 554, 556, 558, 561, 560, 564, 559, 572,
+ 573, 565, 577, 567, 582, 584, 591, 586, 587, 588,
+ 593, 594, 604, 605, 595, 613, 596, 597, 609, 616,
+ 623, 624, 619, 620, 622, 625, 626, 628, 629, 630,
+ 631, 639, 640, 642, 646, 650, 648, 652, 653, 655,
+ 656, 632, 665, 658, 660, 667, 673, 672, 674, 676,
+ 678, 680, 679, 681, 683, 684, 697, 686, 702, 687,
+
+ 704, 699, 705, 707, 714, 701, 709, 710, 711, 715,
+ 719, 717, 725, 713, 718, 733, 723, 737, 726, 745,
+ 743, 730, 758, 744, 747, 749, 759, 748, 750, 756,
+ 769, 761, 779, 766, 773, 781, 784, 792, 789, 795,
+ 785, 797, 787, 798, 801, 803, 810, 808, 6133, 805,
+ 807, 819, 822, 823, 826, 816, 832, 806, 836, 839,
+ 841, 838, 846, 868, 824, 842, 845, 847, 850, 6133,
+ 854, 852, 892, 861, 856, 878, 874, 858, 881, 870,
+ 888, 882, 896, 883, 893, 898, 916, 899, 903, 905,
+ 902, 914, 915, 924, 926, 921, 928, 929, 937, 932,
+
+ 933, 934, 938, 942, 944, 945, 950, 946, 951, 952,
+ 954, 965, 955, 963, 959, 967, 968, 970, 972, 983,
+ 976, 977, 993, 984, 989, 994, 996, 997, 991, 1000,
+ 1003, 1007, 1004, 1008, 1012, 1020, 1015, 1010, 1017, 1018,
+ 1022, 1028, 1024, 1026, 1030, 1031, 1032, 1040, 1033, 1041,
+ 1034, 1047, 1049, 752, 6133, 1051, 1053, 1054, 1055, 1056,
+ 1057, 6133, 1059, 1058, 1061, 1066, 1063, 1071, 1080, 1067,
+ 1082, 1070, 1083, 1084, 1092, 1087, 1088, 1095, 1094, 1096,
+ 947, 1098, 1100, 1105, 1102, 1106, 1109, 1103, 1114, 1128,
+ 6133, 1112, 1115, 1116, 1118, 1123, 1131, 1140, 1126, 1133,
+
+ 1143, 1146, 1156, 1151, 1121, 1152, 1153, 1157, 1160, 1163,
+ 1165, 1166, 1168, 1169, 1170, 1171, 1172, 1174, 1179, 1184,
+ 6133, 1177, 1187, 1195, 1196, 1182, 1198, 1199, 1200, 1201,
+ 1202, 1203, 1205, 1204, 1210, 1220, 1211, 1224, 1221, 1222,
+ 1226, 1227, 1229, 1228, 1230, 1232, 1244, 1237, 1236, 1252,
+ 1247, 1254, 1256, 1263, 1265, 1245, 1258, 1262, 1260, 1268,
+ 1269, 1270, 1271, 1273, 1274, 1283, 1280, 1281, 1282, 1285,
+ 1295, 1286, 1288, 1298, 1290, 1296, 1293, 1300, 1304, 1307,
+ 1303, 1313, 6133, 1320, 1315, 1318, 1319, 1322, 1326, 1325,
+ 1331, 1332, 1333, 1335, 1334, 1336, 1338, 1342, 1341, 1343,
+
+ 1344, 1346, 1355, 1357, 1361, 1368, 1367, 1369, 1354, 1362,
+ 1377, 1373, 1381, 1379, 1380, 1389, 1384, 1386, 1387, 1396,
+ 1391, 1393, 1395, 1394, 1403, 1398, 1408, 1415, 1401, 1412,
+ 1422, 1418, 1420, 1423, 1424, 1427, 1428, 1430, 1431, 1432,
+ 1433, 1440, 1435, 1438, 1437, 1441, 1436, 1442, 1450, 1444,
+ 1463, 1455, 1458, 1460, 1464, 1467, 1466, 1465, 1468, 1472,
+ 1473, 1475, 1474, 1476, 1478, 1485, 875, 1487, 1489, 1493,
+ 1495, 1497, 1496, 1500, 1499, 1502, 1508, 1498, 1511, 1512,
+ 1515, 1517, 1519, 1520, 1524, 1528, 1522, 1530, 1523, 1533,
+ 1534, 1541, 1542, 1545, 1537, 6133, 1535, 1556, 1548, 1549,
+
+ 1552, 1557, 1558, 1565, 1561, 1560, 1562, 1563, 1566, 1589,
+ 6133, 1570, 6133, 6133, 1573, 6133, 6133, 1572, 1571, 6133,
+ 1578, 1579, 1583, 1574, 1592, 1596, 1597, 1599, 1600, 1610,
+ 1621, 1612, 1603, 1614, 1602, 1616, 1635, 1630, 1605, 1626,
+ 1642, 1631, 1644, 1645, 1649, 1651, 1646, 1638, 1652, 1654,
+ 1659, 1655, 1660, 1662, 1665, 1666, 1664, 1668, 1669, 1676,
+ 1681, 1672, 1689, 6133, 1685, 1693, 1698, 1694, 1701, 1697,
+ 1696, 1703, 1705, 1707, 1708, 1709, 1710, 1712, 1713, 1718,
+ 1675, 1714, 1726, 1721, 6133, 1724, 1725, 1723, 1730, 1728,
+ 1736, 1738, 1731, 1729, 1741, 1742, 1752, 1748, 1744, 1753,
+
+ 1756, 1757, 1758, 6133, 1760, 1764, 1766, 1768, 1767, 1770,
+ 1771, 1774, 1775, 1776, 1777, 1778, 1779, 1780, 1789, 1784,
+ 1786, 1792, 1794, 1801, 1802, 1804, 1806, 1803, 1810, 1812,
+ 1813, 1814, 1815, 1817, 1818, 1826, 1828, 1825, 1830, 1827,
+ 1835, 1846, 1841, 1831, 1842, 1843, 1844, 1851, 1855, 1853,
+ 1857, 1858, 1866, 1859, 1864, 1867, 1868, 1878, 1861, 1870,
+ 1880, 1869, 1882, 1883, 1884, 6133, 1886, 1887, 6133, 1889,
+ 1890, 1912, 1892, 1894, 1899, 1896, 1897, 1900, 1905, 1913,
+ 1919, 1916, 1932, 1925, 1929, 1935, 1937, 1940, 1906, 1936,
+ 1942, 1938, 1944, 1948, 1947, 1960, 1967, 1908, 1968, 1970,
+
+ 1949, 1946, 1962, 1981, 1966, 1969, 1972, 1973, 1975, 1979,
+ 1983, 1988, 1977, 1990, 1993, 1994, 1997, 6133, 2005, 2003,
+ 2004, 2008, 2016, 2013, 2011, 6133, 2015, 2019, 2020, 2031,
+ 2026, 2014, 2022, 2012, 2029, 2034, 2037, 2038, 2039, 2040,
+ 2041, 2050, 6133, 2045, 6133, 2042, 2051, 2053, 2052, 2055,
+ 2059, 2057, 2060, 6133, 6133, 2063, 2067, 2069, 2081, 2064,
+ 6133, 2078, 2085, 2082, 2087, 2088, 2080, 2089, 2091, 2093,
+ 2092, 2101, 2096, 2103, 2098, 2099, 2108, 6133, 2111, 2110,
+ 2112, 2115, 2118, 2119, 2121, 2123, 6133, 2127, 2125, 2130,
+ 2138, 2129, 2137, 2139, 2140, 2144, 2142, 2147, 2148, 2149,
+
+ 2150, 2159, 2161, 2151, 2162, 2164, 2171, 6133, 2154, 2158,
+ 2176, 2174, 2181, 2173, 2175, 2177, 2183, 2185, 2186, 2187,
+ 2190, 2191, 2192, 2199, 2200, 2197, 2196, 2205, 2206, 2207,
+ 2210, 2213, 2214, 2215, 2216, 2217, 6133, 2218, 2220, 2223,
+ 391, 2226, 2229, 2227, 2228, 2236, 2231, 2234, 2247, 2252,
+ 2248, 2249, 2250, 2256, 2257, 2258, 2259, 2260, 2261, 2262,
+ 2264, 6133, 2266, 2267, 2269, 2273, 2272, 2275, 2280, 6133,
+ 2282, 2289, 2292, 2301, 2284, 2293, 2302, 2298, 2303, 2304,
+ 2306, 2308, 2310, 2309, 2312, 2315, 6133, 2319, 2320, 2324,
+ 2316, 2326, 2328, 2330, 2333, 2335, 2337, 2340, 2338, 2342,
+
+ 2343, 2341, 2344, 2345, 2351, 2346, 2347, 2354, 2359, 6133,
+ 2364, 2362, 2366, 2370, 2369, 2371, 2372, 2387, 2373, 2379,
+ 2375, 2382, 2394, 2385, 2391, 2396, 2404, 2401, 2409, 2414,
+ 2410, 2411, 2419, 2412, 2421, 2423, 2424, 2425, 2427, 2429,
+ 2430, 2431, 2432, 2440, 2447, 2437, 2448, 2446, 2438, 2456,
+ 2457, 6133, 2459, 2458, 2451, 2461, 2477, 2465, 2467, 2475,
+ 2472, 2478, 2479, 2481, 2482, 2490, 2491, 2485, 2483, 2494,
+ 2488, 2495, 2501, 2503, 2505, 2507, 2508, 2512, 2395, 6133,
+ 2513, 2509, 2515, 2517, 2521, 2518, 2525, 2529, 2522, 2531,
+ 2532, 2536, 2537, 2539, 2540, 2541, 2545, 2547, 2533, 6133,
+
+ 2555, 2544, 2543, 2550, 2556, 2562, 2563, 2566, 2572, 2569,
+ 2565, 2575, 2577, 2567, 6133, 2582, 2585, 2586, 2593, 2588,
+ 2589, 2590, 2595, 2578, 6133, 2592, 2596, 2599, 2606, 2609,
+ 2604, 6133, 2611, 2612, 2613, 2602, 2615, 2617, 2618, 2620,
+ 2621, 2623, 2625, 2628, 2624, 2631, 6133, 2634, 2643, 2638,
+ 2639, 2644, 2645, 2649, 2650, 2655, 2657, 2667, 2658, 6133,
+ 2676, 2671, 2651, 2679, 2661, 2674, 2677, 2681, 2682, 2683,
+ 2684, 2685, 6133, 2688, 2690, 2691, 2692, 2694, 2696, 2697,
+ 2710, 2699, 2703, 2706, 2712, 2713, 2707, 2718, 2717, 2725,
+ 2715, 2729, 2731, 2719, 2735, 2721, 2736, 2739, 2746, 2748,
+
+ 2749, 2751, 6133, 2754, 2743, 2755, 2745, 2756, 2758, 2759,
+ 2760, 2762, 2767, 2769, 2765, 2768, 2777, 2784, 2772, 2780,
+ 2785, 2786, 2788, 2789, 2790, 2791, 2795, 2799, 2796, 2798,
+ 2806, 2802, 2808, 2816, 2803, 2807, 2812, 2815, 2818, 2817,
+ 2820, 2827, 2830, 2825, 2840, 2842, 2843, 2819, 2836, 2844,
+ 2845, 2850, 6133, 2829, 2846, 2855, 2854, 2857, 2860, 2861,
+ 2868, 2863, 2864, 2867, 2871, 2876, 2865, 2879, 2881, 2888,
+ 2884, 6133, 2886, 6133, 2887, 2889, 2890, 2898, 2893, 6133,
+ 2896, 6133, 2899, 2906, 2900, 2903, 6133, 2907, 2909, 2911,
+ 2914, 2912, 2917, 2918, 2921, 2922, 2923, 2925, 2928, 2930,
+
+ 2931, 2932, 2935, 2939, 2942, 2940, 2944, 2948, 2941, 2950,
+ 2953, 2954, 2958, 2959, 2963, 6133, 2967, 2960, 2964, 2969,
+ 2970, 2971, 2972, 2973, 2979, 2980, 2981, 2977, 2987, 2988,
+ 2991, 2994, 3002, 2995, 3004, 6133, 3003, 3006, 3007, 3010,
+ 6133, 3009, 3011, 3012, 3018, 3020, 3021, 3022, 3024, 3028,
+ 3023, 3030, 3025, 3040, 3038, 3031, 3044, 6133, 3048, 3049,
+ 3050, 3052, 3060, 3062, 3061, 3064, 3067, 3076, 3069, 3071,
+ 3033, 3053, 3073, 3077, 3085, 3087, 3078, 3088, 3086, 3089,
+ 3091, 3092, 3095, 3096, 3098, 3100, 3101, 3099, 3105, 3106,
+ 3108, 3103, 3104, 3107, 3110, 6133, 3126, 3112, 3122, 3128,
+
+ 3120, 3130, 3133, 3134, 3136, 3138, 3139, 3142, 3140, 6133,
+ 3143, 6133, 3137, 3147, 3149, 3160, 3155, 3161, 3165, 3170,
+ 3164, 3166, 3171, 3173, 3172, 3174, 3175, 3180, 3183, 3187,
+ 3188, 3194, 3181, 3189, 3186, 3197, 3198, 3200, 6133, 6133,
+ 3203, 3205, 3206, 3208, 3209, 3210, 3216, 3213, 3221, 3219,
+ 3220, 3227, 3235, 6133, 3230, 3232, 3233, 3238, 3242, 3239,
+ 3249, 3246, 3251, 3258, 3253, 6133, 3250, 3254, 3266, 3261,
+ 3262, 3269, 6133, 3264, 6133, 3267, 3273, 3275, 3276, 3277,
+ 3278, 3279, 3280, 3282, 3295, 3302, 3284, 3288, 3298, 3299,
+ 3300, 3301, 3310, 3305, 3306, 3307, 6133, 3309, 3311, 3312,
+
+ 3315, 3321, 3323, 3324, 3313, 6133, 3329, 3330, 3335, 3332,
+ 3337, 3338, 3340, 3342, 3343, 3346, 3347, 3344, 3348, 3360,
+ 3352, 3353, 3355, 3366, 3367, 3373, 6133, 3369, 3375, 3382,
+ 3378, 3379, 3381, 3385, 3380, 3386, 3387, 3389, 3390, 3392,
+ 3393, 3394, 3396, 3398, 3401, 3399, 3404, 3412, 3413, 3415,
+ 3424, 3420, 6133, 3421, 3422, 3425, 3427, 3430, 3431, 3434,
+ 3436, 3437, 3443, 3447, 3439, 3449, 3451, 3452, 3459, 3455,
+ 6133, 3467, 3454, 3468, 3463, 3466, 3465, 3473, 3471, 3481,
+ 3477, 3478, 3479, 3486, 3482, 6133, 3493, 3483, 3501, 3484,
+ 3485, 3510, 3505, 3506, 3494, 3508, 3509, 3511, 3513, 3516,
+
+ 3517, 3520, 3521, 6133, 6133, 3523, 3524, 3525, 6133, 3527,
+ 3529, 3537, 3540, 3530, 3528, 3545, 3544, 3532, 3546, 3542,
+ 3548, 6133, 3554, 3561, 3556, 3560, 3563, 3571, 3570, 3572,
+ 3566, 3562, 3573, 3574, 3578, 3579, 3580, 3583, 3591, 3593,
+ 3588, 3589, 3590, 6133, 3595, 3596, 3598, 3600, 3601, 3602,
+ 6133, 3605, 3607, 3613, 3612, 3623, 3625, 3616, 3631, 3614,
+ 3626, 3609, 3633, 3634, 3636, 3643, 3642, 3639, 3646, 3647,
+ 3649, 6133, 3641, 3651, 3652, 3659, 6133, 3661, 3669, 3670,
+ 3671, 3655, 3673, 3674, 3682, 6133, 3675, 3679, 3677, 3666,
+ 3690, 3680, 3694, 3692, 3693, 6133, 3695, 3685, 3696, 6133,
+
+ 3700, 3698, 3709, 3711, 3706, 3718, 3713, 3715, 3716, 3714,
+ 6133, 3724, 6133, 3725, 3721, 3730, 6133, 3727, 3732, 3735,
+ 3737, 3734, 3741, 3742, 3745, 3750, 3738, 3751, 3752, 3753,
+ 3755, 3756, 3763, 3762, 3764, 3765, 3754, 6133, 3766, 3769,
+ 3775, 3776, 3779, 3774, 3771, 3785, 3781, 6133, 6133, 3796,
+ 6133, 3797, 3782, 3789, 6133, 3791, 3793, 3808, 3799, 3803,
+ 3809, 3813, 3810, 6133, 3814, 3801, 3815, 3819, 3817, 3822,
+ 3824, 3825, 3827, 3828, 3829, 3832, 6133, 3830, 3833, 3841,
+ 3831, 3842, 3852, 3848, 3846, 6133, 3856, 3857, 3847, 3858,
+ 3860, 6133, 3864, 6133, 3868, 3869, 3870, 3872, 3871, 6133,
+
+ 3875, 3879, 3881, 3876, 3883, 3885, 3884, 3891, 3892, 3894,
+ 3901, 3898, 3899, 3897, 6133, 3900, 3904, 3907, 3908, 3911,
+ 3913, 3921, 3917, 3923, 3916, 3920, 3930, 3927, 3931, 3937,
+ 3935, 3940, 3924, 6133, 3941, 3946, 3943, 3955, 3947, 3951,
+ 6133, 3957, 3960, 3961, 6133, 3958, 3952, 3959, 3974, 3962,
+ 3967, 3970, 3975, 3976, 6133, 3978, 3981, 3977, 3979, 3982,
+ 3983, 6133, 6133, 3988, 6133, 3995, 3996, 3998, 3999, 4000,
+ 4002, 4004, 4005, 4009, 4010, 4012, 4015, 4018, 4006, 4027,
+ 4030, 4038, 4033, 4034, 4023, 6133, 6133, 4040, 4044, 4037,
+ 4048, 4049, 4041, 4051, 4058, 4055, 4056, 4062, 4063, 4071,
+
+ 6133, 4072, 4054, 4073, 4064, 6133, 4066, 4075, 4067, 4078,
+ 4081, 4079, 4082, 4083, 4087, 4085, 4089, 4095, 4094, 4096,
+ 4100, 4102, 4104, 4105, 4022, 4106, 4112, 6133, 4108, 4113,
+ 4115, 4117, 4118, 4119, 4120, 4121, 4122, 6133, 4129, 4128,
+ 4125, 4136, 4135, 4131, 4137, 4146, 4152, 4154, 4149, 4155,
+ 4156, 4158, 4160, 4161, 6133, 4169, 4162, 4163, 4165, 4172,
+ 4176, 4173, 4179, 4180, 4185, 4181, 4186, 4188, 4190, 4193,
+ 4194, 4195, 4197, 6133, 4199, 4201, 4202, 4206, 4208, 4211,
+ 4210, 4214, 4219, 4212, 4220, 4222, 4224, 6133, 4225, 4227,
+ 4228, 4229, 4237, 4232, 4234, 4238, 4240, 6133, 4247, 4242,
+
+ 4249, 4244, 4248, 4252, 4254, 4259, 4263, 4265, 4261, 6133,
+ 4257, 4268, 4271, 4274, 4275, 4277, 4278, 4282, 6133, 4284,
+ 4285, 4286, 4293, 4291, 4300, 4292, 4302, 4295, 4296, 4303,
+ 4304, 4305, 4310, 4315, 4311, 4322, 4323, 4326, 6133, 4318,
+ 6133, 4327, 4328, 4337, 4332, 4334, 4335, 6133, 4340, 4342,
+ 4344, 4345, 4350, 6133, 4349, 4346, 4348, 4352, 6133, 4351,
+ 4365, 4347, 4366, 4369, 4371, 6133, 4374, 4376, 4375, 4383,
+ 4387, 4382, 4385, 4386, 4388, 4390, 4392, 4393, 4394, 4403,
+ 4396, 4399, 6133, 4401, 4408, 4414, 4415, 4398, 4409, 4417,
+ 4419, 4422, 6133, 4423, 4416, 4424, 4425, 4426, 4427, 4432,
+
+ 4440, 4442, 4431, 6133, 4433, 4438, 4441, 4456, 4443, 4453,
+ 6133, 6133, 4452, 4457, 4459, 4460, 4463, 6133, 4461, 4473,
+ 4468, 4470, 4472, 6133, 6133, 4475, 6133, 4471, 6133, 4476,
+ 4477, 6133, 6133, 4478, 4479, 4482, 4491, 4485, 6133, 4495,
+ 6133, 4498, 4499, 4488, 4497, 4501, 6133, 4502, 4503, 4508,
+ 6133, 4509, 4516, 4511, 4512, 6133, 4514, 4517, 4522, 4524,
+ 6133, 4525, 4531, 4523, 4532, 4534, 4533, 4535, 4539, 4540,
+ 4536, 4544, 4545, 4546, 4556, 4558, 4560, 4562, 4552, 4563,
+ 4566, 4567, 4569, 4572, 4573, 4574, 4575, 4577, 4578, 4580,
+ 4583, 4587, 4588, 4586, 4589, 4590, 4599, 4592, 4595, 4603,
+
+ 4596, 4606, 4607, 4608, 4609, 4611, 4614, 4616, 4613, 4619,
+ 4620, 6133, 4618, 4623, 4624, 4628, 4629, 4637, 4639, 4641,
+ 4649, 4650, 6133, 4652, 6133, 4654, 4638, 4646, 4658, 4659,
+ 6133, 4660, 4661, 4662, 4663, 4664, 4665, 4666, 4667, 4670,
+ 4671, 4675, 6133, 4682, 4669, 4686, 4693, 6133, 4690, 4697,
+ 4694, 4698, 4700, 4702, 4701, 4703, 4704, 4705, 4709, 4711,
+ 4714, 4678, 4715, 4722, 4706, 4718, 4726, 4727, 4729, 4728,
+ 4732, 4736, 4740, 6133, 4735, 6133, 4741, 4742, 4743, 4744,
+ 4748, 4745, 4749, 6133, 6133, 4751, 4756, 4758, 4752, 4760,
+ 4763, 4766, 6133, 4769, 4772, 4774, 4775, 6133, 4777, 4779,
+
+ 4780, 4782, 6133, 4783, 4785, 4786, 4797, 4787, 4802, 4793,
+ 4803, 4789, 4804, 4808, 6133, 6133, 6133, 6133, 4809, 4791,
+ 4815, 4811, 4817, 4818, 4819, 4821, 4822, 6133, 4826, 6133,
+ 6133, 4829, 4831, 4832, 4833, 4835, 4823, 4839, 4841, 6133,
+ 4840, 4845, 4847, 4844, 4854, 4857, 4861, 4851, 4862, 4863,
+ 4864, 4871, 4868, 4869, 4872, 4874, 4876, 4878, 6133, 6133,
+ 4880, 4884, 4885, 4892, 4889, 4890, 4896, 4903, 4898, 4899,
+ 4900, 4901, 4905, 4906, 4914, 4917, 4907, 4918, 6133, 4915,
+ 4919, 6133, 4921, 6133, 4923, 4924, 4925, 4926, 4931, 4932,
+ 4934, 4936, 6133, 6133, 6133, 4937, 4938, 4942, 4947, 4944,
+
+ 4948, 4949, 4951, 4952, 6133, 4953, 6133, 4954, 4955, 4966,
+ 4960, 4973, 4975, 4976, 4978, 4972, 4979, 6133, 4981, 4982,
+ 6133, 4983, 4986, 4988, 6133, 4991, 4989, 4994, 4997, 6133,
+ 4999, 5001, 5004, 6133, 5011, 6133, 5002, 5008, 5006, 5020,
+ 6133, 5012, 5015, 6133, 5024, 5026, 5027, 5021, 6133, 5017,
+ 6133, 5028, 5037, 5038, 5041, 5029, 5043, 5033, 5031, 5045,
+ 5053, 5051, 5052, 6133, 6133, 181, 5061, 5054, 5058, 5062,
+ 5057, 5070, 5065, 5067, 5069, 6133, 6133, 5074, 6133, 5072,
+ 5073, 6133, 5066, 5081, 5085, 5075, 5083, 5087, 5089, 5094,
+ 5096, 5097, 5099, 5098, 5100, 5106, 5121, 5103, 5117, 5123,
+
+ 5125, 5127, 5129, 5118, 5131, 5113, 5132, 5135, 5137, 5139,
+ 6133, 5141, 5101, 5138, 6133, 5143, 5145, 5147, 5148, 6133,
+ 5150, 5151, 5154, 5155, 6133, 5161, 5166, 5167, 5168, 5169,
+ 5176, 5172, 5173, 5174, 6133, 6133, 6133, 5181, 5188, 6133,
+ 5190, 5180, 5183, 5191, 6133, 5192, 5193, 6133, 6133, 5195,
+ 5197, 5196, 5204, 6133, 5199, 6133, 5200, 6133, 5202, 5210,
+ 5212, 5214, 6133, 5217, 5224, 6133, 5219, 5227, 5230, 5231,
+ 5232, 5234, 5233, 6133, 5241, 5237, 5239, 5246, 5236, 5243,
+ 5247, 5251, 5248, 5263, 5249, 5259, 6133, 5260, 5262, 5265,
+ 5271, 5250, 5261, 5273, 6133, 5278, 6133, 5275, 5279, 5280,
+
+ 5281, 5282, 5283, 5286, 5291, 5285, 5300, 5287, 6133, 5304,
+ 5308, 6133, 5289, 6133, 5313, 6133, 5301, 5305, 5309, 5314,
+ 6133, 5316, 5318, 5297, 5322, 6133, 5323, 5326, 5327, 5329,
+ 6133, 6133, 5330, 5337, 5334, 5332, 5336, 5343, 5333, 5345,
+ 5347, 5348, 5349, 5361, 5351, 5356, 5352, 5360, 5362, 5366,
+ 6133, 6133, 6133, 5363, 5371, 5379, 5377, 5378, 5380, 5382,
+ 6133, 5383, 5385, 5387, 5386, 5395, 5390, 5394, 6133, 5397,
+ 5396, 5398, 5399, 5402, 5403, 5404, 6133, 5411, 5416, 5419,
+ 5406, 5421, 5418, 5428, 5430, 5431, 6133, 5433, 6133, 6133,
+ 5425, 6133, 5434, 5435, 5437, 5438, 6133, 5441, 5446, 5442,
+
+ 5443, 5448, 5450, 6133, 5451, 5453, 5455, 5458, 6133, 6133,
+ 5465, 6133, 5467, 5470, 5454, 5477, 5469, 5472, 5479, 5482,
+ 6133, 5476, 5483, 5484, 5485, 5486, 6133, 5490, 5488, 5491,
+ 5493, 6133, 5494, 5499, 5500, 5495, 5501, 6133, 5504, 5502,
+ 5514, 5505, 6133, 5519, 5520, 6133, 6133, 5524, 5526, 5527,
+ 6133, 6133, 6133, 5529, 6133, 5535, 5540, 5544, 5548, 5532,
+ 6133, 5550, 5543, 5551, 6133, 6133, 5547, 5552, 5553, 5555,
+ 6133, 6133, 5556, 5557, 5559, 5521, 5560, 6133, 5562, 5568,
+ 5569, 5574, 5579, 5571, 5582, 5576, 5590, 5597, 5583, 5592,
+ 5593, 5594, 5595, 5596, 5602, 5604, 5603, 5606, 5611, 5612,
+
+ 6133, 6133, 5619, 6133, 6133, 5621, 5623, 5625, 5627, 5629,
+ 5631, 5633, 6133, 5634, 5636, 5637, 5638, 5639, 6133, 5641,
+ 5645, 5640, 5648, 5642, 5651, 5647, 5657, 6133, 6133, 5649,
+ 5613, 5653, 5663, 5658, 6133, 5665, 5672, 5669, 5670, 5671,
+ 5673, 5677, 6133, 5674, 5678, 6133, 6133, 5681, 6133, 6133,
+ 6133, 6133, 6133, 6133, 6133, 6133, 5682, 6133, 5684, 5689,
+ 5695, 5699, 6133, 5686, 5692, 5700, 5702, 5703, 6133, 5705,
+ 5707, 5706, 5708, 5712, 5713, 5716, 5715, 5719, 5720, 5721,
+ 5723, 5724, 5730, 5726, 5725, 5735, 6133, 6133, 6133, 5739,
+ 5731, 5744, 5732, 5749, 5754, 5757, 5759, 5750, 5752, 5760,
+
+ 5761, 5762, 5764, 5765, 5774, 5770, 5771, 5773, 5775, 5777,
+ 5779, 5781, 5786, 6133, 5782, 6133, 5787, 6133, 6133, 5791,
+ 5792, 5788, 5798, 5807, 5808, 5799, 5803, 5804, 5806, 5810,
+ 5815, 6133, 5812, 5818, 6133, 5820, 5821, 6133, 5819, 5822,
+ 5824, 5828, 5829, 5826, 5830, 5831, 5847, 6133, 6133, 5832,
+ 5837, 5840, 5849, 5851, 5850, 5853, 5857, 5858, 5860, 5861,
+ 5870, 6133, 5867, 5868, 5872, 6133, 5874, 5869, 5875, 5876,
+ 5877, 5885, 5881, 5884, 6133, 5886, 6133, 5890, 5892, 5893,
+ 5883, 5891, 5894, 5905, 5903, 5899, 6133, 5909, 5913, 5911,
+ 5915, 5917, 5919, 5920, 5921, 5923, 5926, 5932, 5929, 5936,
+
+ 5937, 5933, 5941, 5938, 6133, 5948, 5939, 6133, 5945, 5949,
+ 5942, 5951, 5955, 6133, 5960, 5953, 5962, 5963, 5966, 5967,
+ 6133, 5969, 5976, 5971, 6133, 5977, 6133, 6133, 5979, 5973,
+ 5980, 5986, 5988, 6133, 6133, 6133, 6013, 6020, 6027, 6034,
+ 6041, 6048, 6055, 88, 6062, 6069, 6076, 6083, 6090, 6097,
+ 6104, 6111, 6118, 6125
} ;
-static yyconst flex_int16_t yy_def[3000] =
+static yyconst flex_int16_t yy_def[3155] =
{ 0,
- 2985, 1, 2986, 2986, 2987, 2987, 2988, 2988, 2989, 2989,
- 2990, 2990, 2985, 2991, 2985, 2985, 2985, 2985, 2992, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2993, 2985, 2985, 2985, 2993, 2994, 2985, 2985,
- 2985, 2994, 2995, 2985, 2985, 2985, 2985, 2995, 2996, 2985,
- 2985, 2985, 2996, 2997, 2985, 2998, 2985, 2997, 2997, 2991,
- 2991, 2985, 2999, 2992, 2999, 2992, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
-
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2993, 2993, 2994, 2994, 2995, 2995, 2985, 2996, 2996, 2997,
- 2997, 2998, 2998, 2997, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
-
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2997, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
-
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2997, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
-
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991,
- 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2985, 2991, 2997, 2991, 2991, 2991,
-
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
-
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2997, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2985, 2991, 2985, 2985, 2991, 2985, 2985, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
-
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
-
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2997, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2985, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
-
- 2991, 2991, 2991, 2985, 2991, 2985, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2985, 2985, 2991, 2991, 2991, 2991,
- 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2997, 2991,
-
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
-
- 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991,
- 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991,
-
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991,
-
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2985, 2991, 2985, 2991, 2991, 2991,
- 2991, 2991, 2985, 2991, 2985, 2991, 2991, 2991, 2991, 2985,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991,
- 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
-
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2985, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985,
-
- 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2985, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991,
-
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2985, 2985, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985,
- 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991,
-
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985,
- 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2985, 2991, 2985, 2991, 2991, 2991,
- 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2985, 2991,
- 2985, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991,
-
- 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991,
- 2985, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2985, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991,
- 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2985,
- 2985, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
-
- 2991, 2991, 2985, 2985, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991,
- 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985,
-
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985,
- 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991,
- 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2985, 2991,
- 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991,
-
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985,
- 2991, 2991, 2991, 2991, 2991, 2985, 2985, 2991, 2991, 2991,
- 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2985, 2985,
- 2991, 2985, 2991, 2985, 2991, 2991, 2985, 2985, 2991, 2991,
- 2991, 2991, 2991, 2985, 2991, 2985, 2991, 2991, 2991, 2991,
- 2991, 2985, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991,
- 2985, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
-
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2985, 2991, 2991,
- 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2985, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2985, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2985, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2985, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2985,
-
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2985, 2985, 2985, 2985, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2985, 2991, 2985, 2985, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2985, 2985, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2985, 2991, 2991, 2985, 2991, 2985, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2985, 2985, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2985, 2991, 2991,
-
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991,
- 2991, 2985, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2985,
- 2991, 2991, 2991, 2985, 2991, 2985, 2991, 2991, 2991, 2991,
- 2985, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2985, 2991,
- 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2985, 2985, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2985, 2985, 2991, 2985, 2991, 2991,
- 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2985,
-
- 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2985,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2985,
- 2985, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2985, 2991,
- 2991, 2985, 2985, 2991, 2991, 2991, 2991, 2985, 2991, 2985,
- 2991, 2985, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2985,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985,
- 2991, 2991, 2991, 2985, 2991, 2985, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991,
- 2985, 2991, 2985, 2991, 2985, 2991, 2991, 2991, 2991, 2985,
-
- 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2985, 2985,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2985,
- 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991,
- 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2985,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985,
- 2991, 2985, 2985, 2991, 2985, 2991, 2991, 2991, 2991, 2985,
- 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991,
- 2985, 2985, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2985, 2991,
-
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2985,
- 2991, 2991, 2985, 2985, 2991, 2991, 2991, 2985, 2985, 2985,
- 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991,
- 2991, 2985, 2991, 2991, 2991, 2991, 2985, 2985, 2991, 2991,
- 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2985, 2985, 2991, 2985, 2985, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991,
- 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985,
- 2985, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991,
-
- 2991, 2991, 2991, 2991, 2985, 2991, 2985, 2985, 2985, 2985,
- 2985, 2985, 2985, 2985, 2991, 2985, 2991, 2991, 2991, 2991,
- 2985, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2985, 2985, 2985, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2985,
- 2991, 2985, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2985, 2991, 2991, 2985, 2991, 2991, 2985,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991,
-
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2985, 2991, 2985, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991,
- 2991, 2991, 2991, 2985, 2991, 2991, 2985, 2991, 2991, 2991,
- 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2985,
- 2991, 2991, 2991, 2985, 2991, 2985, 2985, 2991, 2991, 2991,
- 2991, 2991, 2985, 2985, 0, 2985, 2985, 2985, 2985, 2985,
- 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985
-
+ 3136, 1, 3137, 3137, 3138, 3138, 3139, 3139, 3140, 3140,
+ 3141, 3141, 3142, 3142, 3143, 3143, 3136, 3144, 3136, 3136,
+ 3136, 3136, 3145, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3146, 3136, 3136, 3136,
+ 3146, 3147, 3136, 3136, 3136, 3147, 3148, 3136, 3136, 3136,
+ 3136, 3148, 3149, 3136, 3136, 3136, 3149, 3150, 3136, 3151,
+ 3136, 3150, 3150, 3152, 3136, 3136, 3136, 3136, 3152, 3153,
+ 3136, 3136, 3136, 3153, 3144, 3144, 3136, 3154, 3145, 3154,
+ 3145, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3146, 3146, 3147, 3147,
+ 3148, 3148, 3136, 3149, 3149, 3150, 3150, 3151, 3151, 3150,
+ 3152, 3152, 3136, 3153, 3153, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3150, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3150, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3136, 3144, 3150, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3150, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144,
+
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3136, 3144, 3136, 3136, 3144, 3136, 3136, 3144, 3144, 3136,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+
+ 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3150, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3136, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3136, 3136, 3144, 3144, 3144, 3144, 3144,
+ 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3150,
+ 3150, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136,
+
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3136, 3150, 3144, 3144, 3144, 3144,
+ 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+
+ 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3136,
+ 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3150, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144,
+ 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144,
+
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136,
+ 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3136,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144,
+
+ 3144, 3144, 3144, 3144, 3144, 3136, 3150, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+
+ 3144, 3144, 3144, 3136, 3136, 3144, 3144, 3144, 3136, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3150, 3144, 3136, 3144, 3144, 3144, 3136,
+
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3136, 3144, 3136, 3144, 3144, 3144, 3136, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3136, 3144,
+ 3136, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144,
+ 3144, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3136,
+
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3136, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3136, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3150, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3136, 3136, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+
+ 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144,
+
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144,
+ 3136, 3144, 3144, 3144, 3144, 3150, 3144, 3136, 3144, 3144,
+ 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+
+ 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3136, 3136, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144,
+ 3144, 3144, 3144, 3136, 3136, 3144, 3136, 3144, 3136, 3144,
+ 3144, 3136, 3136, 3144, 3144, 3144, 3144, 3144, 3136, 3144,
+ 3136, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144,
+ 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144,
+ 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+
+ 3144, 3144, 3144, 3144, 3144, 3144, 3150, 3144, 3144, 3144,
+ 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3144,
+ 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3136, 3144, 3136, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3136, 3136, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144,
+
+ 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3136, 3136, 3136, 3136, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3136,
+ 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3150, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3136,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144,
+ 3144, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3136, 3136, 3136, 3144, 3144, 3144, 3144, 3144,
+
+ 3144, 3144, 3144, 3144, 3136, 3144, 3136, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144,
+ 3136, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3136,
+ 3144, 3144, 3144, 3136, 3144, 3136, 3144, 3144, 3144, 3144,
+ 3136, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144,
+ 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3136, 3136, 3150, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3136, 3136, 3144, 3136, 3144,
+ 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3136, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3136,
+ 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3136, 3136, 3136, 3144, 3144, 3136,
+ 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3136, 3136, 3144,
+ 3144, 3144, 3144, 3136, 3144, 3136, 3144, 3136, 3144, 3144,
+ 3144, 3144, 3136, 3144, 3144, 3136, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3136, 3144, 3136, 3144, 3144, 3144,
+
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144,
+ 3144, 3136, 3144, 3136, 3144, 3136, 3144, 3144, 3144, 3144,
+ 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144,
+ 3136, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3136, 3136, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3136, 3136,
+ 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144,
+
+ 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3136,
+ 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3136, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144,
+ 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144,
+ 3144, 3144, 3136, 3144, 3144, 3136, 3136, 3144, 3144, 3144,
+ 3136, 3136, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3144,
+ 3136, 3144, 3144, 3144, 3136, 3136, 3144, 3144, 3144, 3144,
+ 3136, 3136, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+
+ 3136, 3136, 3144, 3136, 3136, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3136, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3136, 3144,
+ 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3136, 3144, 3144, 3136, 3136, 3144, 3136, 3136,
+ 3136, 3136, 3136, 3136, 3136, 3136, 3144, 3136, 3144, 3144,
+ 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3136, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3136, 3136, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3136, 3144, 3136, 3144, 3136, 3136, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3136, 3144, 3144, 3136, 3144, 3144, 3136, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3136, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3144, 3136, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3136, 3144, 3136, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144,
+ 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
+
+ 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3136, 3144, 3144,
+ 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144,
+ 3136, 3144, 3144, 3144, 3136, 3144, 3136, 3136, 3144, 3144,
+ 3144, 3144, 3144, 3136, 3136, 0, 3136, 3136, 3136, 3136,
+ 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136,
+ 3136, 3136, 3136, 3136
} ;
-static yyconst flex_int16_t yy_nxt[5854] =
+static yyconst flex_int16_t yy_nxt[6174] =
{ 0,
- 14, 15, 16, 17, 18, 19, 18, 14, 14, 14,
- 14, 14, 18, 20, 21, 22, 23, 24, 25, 26,
- 14, 27, 28, 29, 30, 31, 32, 33, 34, 35,
- 36, 37, 38, 39, 40, 41, 14, 14, 14, 42,
- 44, 45, 46, 44, 45, 46, 49, 50, 49, 50,
- 51, 47, 51, 70, 47, 70, 70, 52, 70, 52,
- 54, 55, 56, 57, 70, 18, 54, 55, 56, 57,
- 71, 18, 58, 60, 61, 62, 71, 82, 58, 60,
- 61, 62, 72, 71, 63, 102, 73, 92, 70, 71,
- 63, 15, 16, 17, 65, 66, 67, 75, 71, 75,
-
- 75, 71, 75, 68, 104, 157, 103, 93, 75, 76,
- 141, 141, 69, 15, 16, 17, 65, 66, 67, 71,
- 71, 83, 77, 78, 71, 68, 79, 71, 84, 87,
- 71, 80, 85, 88, 69, 86, 89, 151, 90, 91,
- 81, 71, 94, 71, 96, 71, 71, 159, 71, 105,
- 98, 112, 97, 99, 71, 109, 95, 106, 71, 110,
- 100, 71, 101, 107, 172, 71, 113, 108, 143, 71,
- 114, 143, 118, 71, 119, 111, 115, 71, 120, 116,
- 140, 151, 124, 148, 148, 125, 117, 163, 121, 122,
- 71, 123, 126, 71, 133, 154, 127, 128, 71, 129,
-
- 224, 130, 71, 137, 134, 158, 71, 138, 135, 136,
- 131, 139, 145, 71, 145, 145, 132, 145, 75, 71,
- 75, 75, 150, 75, 150, 150, 70, 150, 70, 70,
- 153, 70, 72, 165, 71, 171, 73, 70, 75, 71,
- 75, 75, 155, 75, 71, 71, 225, 71, 156, 75,
- 76, 71, 71, 71, 160, 161, 164, 71, 71, 166,
- 173, 71, 71, 169, 170, 167, 71, 168, 162, 71,
- 71, 175, 177, 178, 71, 71, 184, 71, 176, 174,
- 179, 182, 253, 71, 71, 71, 189, 180, 181, 183,
- 71, 151, 71, 185, 191, 71, 186, 71, 71, 199,
-
- 192, 194, 197, 71, 71, 195, 71, 198, 200, 187,
- 188, 190, 71, 201, 71, 71, 202, 205, 71, 203,
- 193, 196, 207, 71, 71, 71, 71, 204, 71, 212,
- 209, 71, 71, 206, 210, 71, 214, 71, 71, 71,
- 71, 208, 71, 220, 211, 215, 213, 71, 226, 229,
- 217, 216, 223, 71, 221, 71, 219, 218, 222, 233,
- 230, 71, 71, 71, 235, 227, 71, 71, 228, 231,
- 71, 239, 71, 236, 232, 238, 71, 234, 149, 240,
- 71, 242, 141, 141, 143, 237, 243, 143, 241, 145,
- 151, 145, 145, 244, 145, 148, 148, 150, 248, 150,
-
- 150, 75, 150, 75, 75, 71, 75, 71, 246, 71,
- 245, 71, 71, 153, 71, 71, 71, 250, 71, 71,
- 71, 256, 249, 247, 251, 259, 252, 255, 258, 71,
- 254, 71, 260, 264, 262, 71, 263, 71, 257, 71,
- 71, 265, 71, 71, 268, 261, 266, 71, 273, 269,
- 71, 147, 71, 71, 270, 275, 274, 276, 279, 71,
- 271, 272, 278, 267, 71, 277, 71, 71, 71, 71,
- 281, 71, 282, 283, 71, 71, 71, 290, 71, 288,
- 289, 285, 291, 284, 286, 71, 71, 280, 71, 287,
- 294, 297, 71, 298, 292, 299, 293, 71, 295, 301,
-
- 303, 71, 296, 304, 71, 71, 71, 300, 302, 71,
- 307, 71, 71, 309, 310, 71, 71, 308, 305, 71,
- 71, 71, 311, 71, 312, 306, 71, 313, 71, 71,
- 71, 71, 315, 71, 71, 319, 71, 317, 71, 71,
- 324, 71, 320, 314, 318, 325, 71, 71, 71, 321,
- 316, 328, 322, 326, 330, 71, 333, 327, 323, 71,
- 71, 71, 71, 329, 71, 71, 335, 336, 71, 71,
- 339, 340, 342, 331, 332, 338, 71, 71, 71, 334,
- 71, 71, 71, 337, 71, 345, 346, 71, 341, 71,
- 347, 349, 343, 71, 353, 344, 71, 71, 71, 151,
-
- 350, 71, 71, 71, 71, 352, 71, 360, 358, 356,
- 361, 354, 355, 71, 348, 71, 71, 351, 71, 364,
- 362, 365, 357, 363, 71, 71, 71, 359, 71, 71,
- 71, 71, 71, 371, 372, 71, 374, 369, 366, 71,
- 71, 71, 368, 373, 367, 375, 71, 377, 71, 71,
- 376, 71, 378, 71, 71, 370, 379, 381, 71, 71,
- 384, 71, 382, 386, 380, 388, 71, 385, 383, 71,
- 71, 71, 387, 71, 71, 391, 71, 389, 393, 71,
- 71, 392, 396, 71, 71, 71, 398, 71, 71, 71,
- 399, 71, 71, 401, 390, 71, 397, 408, 395, 394,
-
- 71, 403, 71, 71, 71, 405, 400, 407, 71, 402,
- 404, 409, 71, 71, 71, 71, 410, 71, 420, 419,
- 421, 417, 406, 71, 71, 71, 71, 423, 426, 427,
- 424, 418, 411, 428, 71, 412, 422, 425, 429, 71,
- 413, 414, 415, 416, 71, 71, 71, 430, 71, 436,
- 71, 431, 71, 71, 432, 434, 71, 435, 437, 71,
- 433, 71, 438, 71, 440, 71, 71, 439, 441, 445,
- 71, 71, 446, 71, 447, 71, 71, 463, 450, 71,
- 451, 444, 442, 448, 452, 443, 71, 71, 71, 71,
- 449, 455, 453, 456, 71, 71, 464, 458, 454, 465,
-
- 71, 71, 71, 457, 462, 71, 466, 71, 467, 71,
- 459, 71, 71, 460, 468, 461, 71, 71, 469, 71,
- 482, 71, 479, 71, 517, 71, 470, 71, 471, 477,
- 472, 480, 478, 481, 493, 484, 483, 151, 492, 494,
- 71, 71, 71, 473, 495, 71, 474, 496, 475, 71,
- 476, 71, 71, 485, 486, 71, 502, 499, 497, 498,
- 71, 500, 71, 487, 71, 488, 489, 490, 501, 506,
- 491, 71, 71, 71, 71, 71, 71, 71, 505, 507,
- 504, 503, 512, 71, 514, 71, 515, 71, 71, 511,
- 71, 513, 509, 510, 508, 71, 519, 523, 524, 71,
-
- 71, 518, 71, 516, 522, 71, 71, 71, 71, 534,
- 71, 521, 71, 520, 529, 71, 71, 71, 71, 531,
- 532, 71, 526, 527, 528, 525, 71, 71, 146, 71,
- 71, 71, 530, 536, 71, 533, 535, 537, 540, 543,
- 71, 539, 71, 546, 538, 544, 545, 547, 71, 541,
- 71, 542, 548, 71, 549, 71, 71, 71, 553, 550,
- 71, 551, 555, 71, 71, 71, 71, 558, 559, 556,
- 552, 71, 71, 554, 71, 560, 71, 71, 557, 71,
- 71, 565, 563, 71, 564, 71, 71, 561, 71, 566,
- 71, 71, 71, 571, 71, 567, 572, 562, 71, 574,
-
- 570, 71, 71, 573, 569, 568, 575, 71, 577, 71,
- 579, 71, 71, 71, 71, 576, 71, 71, 71, 71,
- 581, 589, 582, 591, 578, 71, 71, 71, 584, 71,
- 71, 592, 580, 588, 583, 585, 71, 586, 587, 590,
- 71, 71, 71, 71, 596, 600, 599, 602, 594, 71,
- 593, 595, 71, 71, 71, 71, 597, 601, 598, 71,
- 605, 71, 71, 604, 71, 71, 608, 71, 71, 609,
- 71, 603, 611, 71, 71, 71, 71, 71, 71, 625,
- 610, 606, 607, 71, 612, 71, 614, 634, 144, 613,
- 71, 615, 624, 71, 623, 626, 616, 628, 617, 627,
-
- 631, 71, 71, 71, 618, 71, 619, 629, 632, 620,
- 621, 630, 635, 71, 71, 71, 622, 633, 71, 71,
- 71, 637, 638, 636, 71, 641, 71, 643, 71, 71,
- 71, 71, 71, 71, 640, 644, 639, 649, 71, 71,
- 642, 645, 650, 646, 71, 71, 71, 151, 71, 647,
- 653, 655, 656, 648, 652, 654, 71, 651, 71, 71,
- 657, 71, 71, 71, 659, 71, 71, 663, 665, 71,
- 71, 658, 71, 660, 667, 71, 661, 666, 664, 668,
- 662, 670, 669, 71, 671, 71, 672, 71, 71, 71,
- 71, 71, 71, 71, 676, 675, 71, 71, 684, 71,
-
- 681, 677, 673, 71, 674, 682, 71, 807, 678, 680,
- 683, 679, 685, 71, 686, 687, 71, 688, 71, 689,
- 71, 71, 71, 71, 690, 71, 691, 692, 71, 71,
- 71, 71, 695, 71, 71, 696, 694, 700, 699, 71,
- 693, 71, 71, 71, 71, 701, 71, 703, 71, 705,
- 71, 706, 698, 71, 697, 71, 708, 702, 71, 712,
- 71, 709, 707, 71, 704, 710, 71, 71, 711, 71,
- 718, 714, 715, 71, 71, 71, 71, 716, 713, 721,
- 71, 71, 719, 720, 717, 71, 723, 71, 724, 71,
- 726, 71, 725, 71, 71, 71, 732, 71, 728, 730,
-
- 71, 722, 71, 71, 71, 71, 729, 727, 738, 733,
- 71, 71, 71, 736, 71, 731, 739, 737, 71, 735,
- 71, 734, 863, 740, 741, 742, 71, 71, 71, 743,
- 745, 747, 746, 744, 71, 749, 71, 71, 71, 748,
- 71, 71, 71, 750, 752, 71, 758, 751, 71, 753,
- 71, 754, 71, 71, 71, 756, 757, 71, 755, 761,
- 71, 763, 760, 71, 71, 71, 767, 759, 765, 71,
- 764, 71, 71, 770, 769, 71, 768, 762, 771, 71,
- 71, 772, 71, 766, 774, 71, 71, 776, 71, 71,
- 71, 71, 782, 71, 775, 71, 773, 783, 71, 71,
-
- 71, 71, 71, 71, 777, 71, 778, 779, 784, 780,
- 785, 781, 71, 71, 791, 786, 71, 789, 790, 787,
- 71, 788, 71, 71, 71, 793, 792, 796, 71, 71,
- 71, 71, 71, 71, 804, 794, 71, 71, 71, 71,
- 805, 795, 797, 71, 798, 142, 803, 799, 800, 801,
- 802, 71, 808, 71, 71, 810, 806, 71, 809, 71,
- 71, 813, 811, 71, 812, 814, 815, 71, 816, 71,
- 71, 71, 817, 71, 71, 818, 819, 71, 151, 820,
- 825, 71, 822, 824, 71, 821, 823, 71, 826, 71,
- 71, 71, 832, 71, 71, 827, 828, 71, 833, 835,
-
- 71, 71, 838, 836, 829, 830, 834, 71, 71, 71,
- 71, 831, 71, 840, 71, 844, 71, 71, 71, 71,
- 837, 71, 841, 71, 845, 846, 71, 839, 888, 71,
- 71, 71, 843, 71, 850, 847, 71, 842, 851, 71,
- 857, 852, 858, 849, 848, 855, 71, 861, 853, 71,
- 856, 854, 71, 860, 71, 859, 71, 862, 71, 867,
- 71, 71, 71, 71, 71, 71, 875, 71, 865, 71,
- 864, 891, 879, 880, 71, 71, 882, 883, 866, 71,
- 868, 869, 877, 870, 876, 878, 871, 71, 71, 884,
- 71, 872, 71, 71, 881, 885, 886, 873, 874, 71,
-
- 71, 71, 71, 71, 887, 71, 895, 71, 71, 71,
- 894, 890, 889, 71, 71, 898, 71, 71, 902, 904,
- 71, 892, 893, 896, 71, 899, 923, 897, 900, 71,
- 905, 901, 71, 908, 903, 906, 71, 907, 909, 71,
- 71, 911, 71, 71, 71, 910, 912, 71, 913, 71,
- 915, 71, 916, 71, 71, 71, 71, 914, 71, 71,
- 71, 919, 917, 922, 71, 920, 925, 71, 924, 71,
- 71, 71, 71, 918, 929, 71, 71, 71, 921, 927,
- 928, 932, 71, 71, 930, 931, 926, 71, 71, 937,
- 71, 933, 71, 939, 938, 71, 935, 71, 71, 71,
-
- 71, 936, 71, 944, 946, 940, 71, 942, 934, 947,
- 71, 945, 71, 71, 71, 71, 941, 949, 71, 71,
- 71, 71, 71, 943, 71, 960, 957, 948, 71, 955,
- 71, 71, 71, 71, 950, 951, 953, 71, 952, 954,
- 71, 961, 958, 71, 956, 962, 965, 959, 71, 963,
- 71, 964, 71, 967, 968, 71, 71, 966, 71, 71,
- 71, 970, 71, 71, 71, 977, 972, 979, 71, 981,
- 969, 71, 71, 71, 982, 71, 971, 71, 978, 973,
- 71, 975, 974, 976, 71, 71, 71, 71, 980, 983,
- 71, 984, 987, 71, 989, 990, 985, 71, 988, 993,
-
- 991, 71, 71, 994, 986, 996, 71, 71, 992, 71,
- 71, 999, 151, 71, 71, 998, 71, 1002, 1001, 71,
- 71, 71, 995, 71, 71, 997, 1005, 71, 1000, 71,
- 71, 71, 1017, 71, 71, 1020, 71, 1018, 71, 71,
- 1004, 1003, 1006, 1008, 71, 71, 71, 1009, 1007, 1019,
- 1022, 1010, 71, 1023, 71, 1011, 71, 1012, 1024, 1025,
- 1027, 1013, 71, 1014, 1021, 1028, 71, 71, 1015, 71,
- 1026, 1030, 71, 1016, 71, 71, 1029, 1032, 71, 1034,
- 71, 71, 71, 71, 1031, 1039, 1040, 1033, 1038, 1035,
- 71, 71, 71, 1042, 1037, 1041, 71, 1043, 71, 1036,
-
- 1045, 71, 71, 71, 71, 1044, 71, 1055, 1046, 71,
- 1047, 1059, 71, 1054, 71, 1048, 71, 1049, 1056, 71,
- 1058, 71, 1060, 1050, 1057, 71, 1064, 71, 1051, 1052,
- 1061, 1066, 71, 71, 71, 1053, 1065, 71, 71, 1070,
- 1062, 1067, 71, 71, 1063, 71, 71, 1069, 1071, 71,
- 71, 1076, 1068, 71, 71, 1073, 71, 71, 1074, 71,
- 71, 1072, 1077, 71, 1079, 71, 1075, 71, 71, 71,
- 71, 71, 71, 1078, 1081, 71, 1080, 1083, 1084, 1085,
- 1088, 1086, 1090, 1082, 1087, 71, 71, 1089, 71, 71,
- 71, 71, 1091, 71, 71, 71, 1096, 71, 1097, 1098,
-
- 71, 1100, 1093, 1101, 1092, 1095, 1099, 1094, 1102, 71,
- 71, 1104, 71, 71, 71, 1106, 1105, 71, 1107, 71,
- 71, 71, 1108, 1114, 71, 71, 1103, 1109, 71, 71,
- 1116, 71, 1110, 71, 1112, 71, 71, 71, 1111, 1113,
- 1118, 71, 1122, 1117, 1120, 1115, 71, 1119, 71, 71,
- 71, 1123, 1121, 71, 1125, 1126, 71, 71, 1132, 71,
- 71, 1131, 1128, 71, 1124, 1127, 1130, 71, 71, 71,
- 1136, 71, 1133, 1129, 1135, 71, 71, 71, 71, 71,
- 71, 1140, 1142, 1143, 1147, 1144, 1134, 71, 71, 71,
- 71, 71, 1141, 1137, 71, 1138, 1145, 1139, 71, 1146,
-
- 1150, 71, 71, 1152, 71, 1148, 71, 1151, 71, 71,
- 1153, 71, 71, 71, 1156, 1157, 71, 1154, 1149, 71,
- 71, 71, 1162, 1163, 1158, 71, 71, 1155, 71, 71,
- 1165, 1160, 1166, 71, 1159, 71, 1164, 1170, 71, 1161,
- 71, 71, 71, 71, 71, 1167, 71, 1176, 71, 1168,
- 1169, 1172, 71, 71, 71, 71, 1182, 71, 1171, 1180,
- 71, 71, 1173, 1197, 71, 1175, 1177, 1179, 1178, 1174,
- 1181, 1184, 1185, 71, 71, 1187, 71, 71, 71, 1186,
- 1183, 1188, 71, 71, 71, 71, 71, 71, 71, 1191,
- 71, 151, 71, 71, 1194, 71, 1189, 1190, 71, 71,
-
- 1192, 71, 71, 1195, 1201, 1193, 1198, 1203, 1209, 1196,
- 1200, 1199, 71, 1207, 71, 71, 1204, 71, 1205, 1202,
- 1208, 1206, 71, 71, 71, 1211, 71, 71, 1210, 1214,
- 71, 71, 1213, 1219, 71, 1212, 1216, 71, 1217, 71,
- 71, 71, 1220, 71, 1221, 1215, 1223, 1224, 71, 1218,
- 71, 71, 71, 71, 71, 71, 71, 1225, 71, 71,
- 1222, 1231, 71, 71, 71, 1226, 1227, 1229, 1230, 71,
- 1232, 1228, 71, 71, 71, 1233, 71, 1237, 1236, 1241,
- 1234, 1235, 1240, 71, 1238, 71, 71, 71, 1242, 1239,
- 71, 1243, 1245, 71, 1247, 71, 1244, 71, 1246, 1248,
-
- 71, 71, 1252, 71, 149, 1261, 1260, 1250, 1251, 1249,
- 71, 71, 71, 1262, 1265, 1253, 1259, 71, 1254, 1255,
- 71, 71, 1263, 1256, 71, 1268, 71, 71, 71, 1257,
- 1264, 1266, 1267, 1258, 71, 1270, 71, 71, 71, 1271,
- 71, 1272, 71, 71, 71, 71, 1280, 1281, 1277, 1269,
- 71, 1275, 71, 71, 71, 1282, 1274, 1273, 1278, 71,
- 1276, 71, 1290, 1279, 71, 1283, 71, 1289, 1284, 71,
- 71, 71, 1294, 1285, 1292, 1286, 71, 1287, 1296, 1288,
- 1291, 71, 71, 1297, 71, 1295, 1293, 1299, 71, 71,
- 71, 71, 71, 1305, 71, 1306, 71, 71, 1301, 71,
-
- 71, 71, 1300, 1298, 1307, 1309, 1304, 71, 71, 1302,
- 1303, 1308, 71, 71, 71, 1310, 1311, 71, 1314, 1315,
- 71, 1317, 71, 71, 71, 1318, 1312, 1319, 71, 1316,
- 71, 1323, 71, 1320, 71, 71, 1321, 1313, 71, 1322,
- 1325, 71, 71, 1326, 71, 1330, 71, 71, 71, 1327,
- 71, 1332, 71, 71, 1324, 71, 1328, 1334, 71, 1329,
- 1336, 71, 1335, 71, 1338, 71, 71, 1331, 71, 71,
- 1333, 1340, 71, 1337, 1341, 71, 1342, 1343, 1339, 71,
- 1344, 71, 1345, 1347, 1346, 71, 71, 71, 1351, 1352,
- 1354, 1348, 71, 1349, 71, 71, 71, 1353, 71, 71,
-
- 1350, 71, 1358, 71, 71, 71, 71, 1355, 1362, 1363,
- 71, 1365, 1357, 71, 71, 71, 1364, 71, 1356, 71,
- 71, 71, 71, 71, 1359, 1360, 71, 1366, 71, 1361,
- 71, 1372, 1369, 1367, 71, 1370, 71, 1377, 71, 1368,
- 1371, 1376, 71, 1373, 71, 147, 1375, 1379, 1381, 71,
- 71, 1374, 71, 1382, 71, 71, 71, 1378, 71, 1384,
- 1385, 71, 71, 1380, 1392, 71, 1394, 1383, 71, 1386,
- 71, 1387, 71, 1388, 71, 1390, 1389, 71, 1391, 1393,
- 1397, 1395, 71, 71, 71, 1396, 71, 71, 1400, 71,
- 71, 1402, 71, 71, 1398, 71, 1407, 1408, 71, 71,
-
- 1399, 71, 1401, 1404, 71, 1411, 71, 1403, 1405, 71,
- 1406, 71, 71, 1412, 71, 71, 1409, 71, 1410, 71,
- 1414, 71, 1418, 1413, 1415, 71, 1419, 1416, 71, 71,
- 1420, 71, 1423, 1417, 71, 1428, 1426, 1422, 71, 1421,
- 1425, 71, 1429, 1427, 1424, 71, 1430, 71, 71, 71,
- 1431, 1432, 71, 71, 71, 71, 1434, 1433, 71, 71,
- 71, 1439, 71, 71, 71, 71, 1438, 71, 71, 1436,
- 1442, 1441, 1435, 1437, 1445, 71, 71, 1450, 1443, 1446,
- 71, 71, 1440, 1447, 71, 71, 1444, 1451, 1448, 71,
- 1454, 71, 71, 1453, 71, 1449, 71, 1458, 71, 1459,
-
- 1452, 1461, 71, 71, 71, 71, 71, 71, 71, 1464,
- 1455, 1463, 1456, 71, 1457, 71, 71, 71, 71, 71,
- 1472, 1462, 71, 1465, 1460, 1466, 71, 1467, 71, 1473,
- 1469, 71, 1468, 1471, 1474, 1475, 71, 71, 1470, 71,
- 1479, 1478, 1476, 1477, 71, 71, 71, 1481, 71, 71,
- 71, 1482, 71, 1484, 1488, 71, 1490, 1480, 71, 71,
- 71, 1485, 71, 1489, 1483, 1493, 1487, 1491, 71, 1486,
- 71, 71, 1492, 71, 1494, 1495, 71, 1499, 1500, 71,
- 71, 71, 71, 71, 71, 1504, 1505, 1503, 1496, 71,
- 71, 1497, 71, 1507, 71, 71, 1498, 71, 1501, 71,
-
- 1508, 71, 1502, 1509, 71, 71, 1510, 71, 1512, 1506,
- 1514, 1511, 71, 1515, 71, 71, 71, 71, 71, 1513,
- 71, 1519, 1516, 71, 1521, 71, 71, 1525, 71, 71,
- 71, 1520, 71, 71, 1518, 1517, 1522, 1528, 1530, 71,
- 1523, 71, 1526, 71, 1533, 1524, 71, 1527, 1529, 71,
- 1531, 71, 1534, 71, 71, 1536, 1539, 71, 71, 1538,
- 1535, 1532, 71, 71, 71, 71, 71, 1546, 71, 71,
- 71, 71, 1537, 1547, 71, 71, 1540, 1541, 1544, 1550,
- 1551, 1542, 1543, 71, 71, 1553, 71, 71, 71, 1548,
- 1545, 1549, 1554, 1555, 1552, 1557, 1559, 71, 71, 71,
-
- 1558, 71, 71, 1562, 1556, 71, 71, 1560, 1561, 71,
- 1564, 71, 1565, 71, 71, 71, 71, 1569, 71, 1570,
- 1566, 71, 71, 71, 71, 1584, 1581, 1576, 1571, 1563,
- 1568, 1567, 71, 71, 71, 1573, 71, 71, 1574, 1577,
- 1582, 1572, 1579, 71, 71, 1578, 71, 1580, 1583, 1586,
- 1575, 71, 1585, 71, 71, 71, 71, 1588, 1587, 71,
- 71, 1593, 1594, 1592, 71, 1596, 71, 71, 71, 1595,
- 71, 71, 1589, 71, 71, 1590, 1599, 71, 1598, 1591,
- 71, 71, 71, 71, 1608, 1600, 71, 71, 1601, 1597,
- 71, 71, 71, 71, 1602, 71, 1604, 1605, 1606, 71,
-
- 1607, 1603, 1613, 71, 71, 71, 1616, 1611, 71, 1615,
- 71, 1609, 1610, 71, 71, 71, 1612, 71, 71, 1614,
- 71, 71, 71, 1617, 1618, 1623, 1621, 71, 1631, 71,
- 1622, 1624, 1620, 71, 1625, 71, 1626, 1619, 1630, 1632,
- 71, 71, 1627, 1636, 71, 1633, 1629, 1628, 71, 71,
- 71, 1635, 71, 71, 71, 71, 71, 1639, 1640, 1634,
- 71, 71, 1637, 71, 71, 1643, 1649, 71, 1648, 1638,
- 1647, 1642, 1645, 1641, 71, 1646, 71, 71, 71, 1644,
- 71, 71, 71, 71, 1650, 71, 1658, 71, 71, 1651,
- 71, 1662, 1653, 1655, 71, 1652, 1654, 1660, 71, 1661,
-
- 71, 1657, 71, 1659, 71, 1663, 71, 1656, 1669, 1664,
- 71, 71, 1665, 1670, 71, 1675, 1666, 71, 146, 71,
- 1671, 71, 1668, 1667, 1674, 1672, 1677, 71, 1678, 71,
- 71, 71, 1680, 1673, 71, 1676, 1679, 71, 71, 1684,
- 71, 71, 1688, 1681, 1683, 71, 71, 71, 71, 1682,
- 1686, 71, 71, 1685, 1689, 71, 1687, 71, 71, 71,
- 1690, 1693, 71, 1692, 71, 1698, 71, 1700, 1701, 71,
- 1691, 1694, 1695, 71, 71, 71, 1696, 1703, 1697, 71,
- 1707, 71, 1702, 71, 71, 71, 71, 1699, 1711, 71,
- 71, 71, 71, 1704, 1706, 1713, 71, 1714, 1705, 71,
-
- 1709, 1715, 71, 1710, 1716, 1708, 71, 71, 1720, 71,
- 1712, 1717, 71, 71, 71, 1724, 71, 71, 71, 71,
- 71, 71, 1719, 71, 1726, 1722, 71, 71, 1731, 1718,
- 71, 1721, 1725, 1723, 71, 1727, 1739, 1733, 1728, 1729,
- 71, 1730, 1732, 1735, 71, 71, 1734, 71, 1736, 1737,
- 71, 1740, 1738, 1741, 71, 71, 71, 71, 1743, 71,
- 71, 71, 1744, 71, 71, 71, 71, 1742, 71, 71,
- 1749, 71, 71, 1753, 71, 1750, 71, 71, 1754, 1759,
- 1745, 1747, 1748, 1746, 1751, 71, 1752, 1758, 71, 71,
- 71, 1755, 1757, 71, 1756, 71, 71, 1760, 1764, 71,
-
- 1767, 1768, 71, 1769, 71, 71, 1762, 71, 1761, 1765,
- 71, 1766, 71, 1763, 1771, 71, 71, 1772, 1775, 71,
- 71, 1777, 71, 71, 1776, 1770, 1778, 71, 1773, 1779,
- 1780, 1774, 1781, 71, 71, 71, 1783, 1786, 71, 1784,
- 71, 71, 1785, 71, 71, 71, 1793, 1782, 71, 71,
- 71, 1798, 71, 71, 1791, 1795, 1787, 1788, 1789, 71,
- 1796, 71, 71, 1790, 1797, 1792, 1801, 71, 1794, 71,
- 1799, 71, 71, 1803, 1805, 71, 1802, 1800, 71, 1807,
- 71, 71, 71, 1810, 1811, 71, 71, 1813, 71, 71,
- 1804, 71, 71, 71, 1819, 71, 71, 1806, 1818, 71,
-
- 1808, 1815, 1816, 1809, 71, 71, 1812, 71, 71, 71,
- 1825, 71, 1817, 71, 1814, 1822, 1823, 1820, 71, 71,
- 1821, 1829, 1832, 1828, 71, 1824, 1833, 71, 71, 1827,
- 71, 1831, 71, 1834, 71, 1835, 71, 1826, 71, 1830,
- 71, 71, 71, 71, 71, 1836, 1840, 71, 1843, 1844,
- 71, 71, 71, 1839, 71, 71, 1847, 71, 1837, 1838,
- 1841, 71, 1852, 71, 71, 1846, 1851, 71, 71, 71,
- 1842, 1845, 1848, 1856, 1849, 71, 71, 1859, 71, 1850,
- 71, 1857, 1854, 1853, 1860, 1858, 71, 1855, 1863, 71,
- 71, 71, 1870, 71, 71, 71, 71, 1861, 71, 1867,
-
- 71, 71, 1862, 71, 1875, 1865, 1872, 1873, 71, 71,
- 1874, 1864, 1866, 71, 71, 1868, 1869, 71, 1871, 1880,
- 71, 1882, 1876, 1881, 71, 1877, 1883, 71, 1884, 1885,
- 1878, 71, 71, 71, 71, 71, 1889, 1879, 1887, 71,
- 71, 71, 71, 71, 1888, 1891, 71, 1894, 71, 1896,
- 71, 1890, 1892, 71, 71, 71, 71, 1886, 1897, 71,
- 71, 1900, 1898, 1901, 71, 1902, 1903, 71, 1893, 1906,
- 1895, 1904, 71, 1899, 71, 71, 71, 71, 71, 1905,
- 1907, 1908, 71, 1909, 71, 1912, 71, 1910, 71, 1911,
- 71, 1914, 71, 71, 71, 1918, 71, 71, 1913, 1917,
-
- 1915, 71, 1919, 71, 1916, 71, 1920, 71, 1921, 1922,
- 71, 71, 71, 71, 1924, 1929, 1927, 1923, 1928, 71,
- 71, 71, 71, 1931, 71, 1925, 71, 71, 1935, 71,
- 1926, 71, 71, 1930, 1932, 1934, 1937, 1939, 1933, 71,
- 1936, 1941, 71, 71, 71, 71, 1942, 71, 1947, 71,
- 1938, 71, 1940, 71, 71, 71, 1949, 71, 71, 1950,
- 1943, 1944, 1945, 1946, 1951, 71, 1952, 71, 1948, 71,
- 1955, 71, 71, 1954, 1953, 71, 71, 71, 71, 71,
- 1956, 71, 71, 71, 71, 1967, 71, 1958, 1959, 1960,
- 1963, 71, 71, 1957, 1962, 1966, 71, 1971, 71, 1970,
-
- 1968, 1965, 71, 1964, 1961, 71, 71, 1973, 1974, 71,
- 71, 1969, 71, 71, 1976, 71, 71, 1977, 1972, 71,
- 71, 1978, 1982, 1975, 1980, 71, 71, 1984, 1981, 1986,
- 71, 1979, 71, 71, 71, 1989, 71, 71, 1983, 1988,
- 1985, 1990, 1991, 71, 71, 1994, 71, 71, 71, 71,
- 71, 71, 1995, 71, 2000, 71, 1997, 71, 1987, 1996,
- 2004, 1992, 71, 2001, 1993, 2002, 71, 1999, 1998, 71,
- 71, 71, 2006, 71, 2005, 2009, 71, 2003, 71, 2007,
- 71, 2011, 71, 2012, 71, 2010, 71, 2008, 71, 71,
- 71, 2014, 2018, 2013, 71, 71, 2015, 2016, 2020, 71,
-
- 2017, 71, 71, 2021, 71, 71, 2023, 2024, 2022, 71,
- 2019, 71, 71, 71, 2025, 2027, 2026, 2030, 71, 71,
- 71, 2028, 2029, 2031, 71, 71, 71, 71, 71, 71,
- 2032, 71, 71, 2039, 2034, 2033, 2040, 2036, 2037, 2035,
- 71, 2041, 71, 71, 71, 71, 2042, 2038, 2044, 2050,
- 71, 71, 2045, 71, 71, 2052, 71, 71, 2046, 2043,
- 2049, 2054, 2047, 2051, 71, 71, 71, 144, 2057, 2055,
- 2048, 2059, 2053, 2058, 71, 2060, 71, 71, 2056, 2061,
- 71, 71, 2064, 71, 71, 2065, 2063, 71, 2062, 2069,
- 71, 71, 2070, 71, 71, 2073, 2068, 71, 71, 2066,
-
- 71, 71, 2074, 71, 2075, 2071, 2076, 71, 71, 2078,
- 2067, 71, 2072, 2077, 71, 71, 2083, 71, 2079, 71,
- 2080, 2081, 71, 2082, 71, 71, 2089, 71, 71, 2086,
- 71, 71, 71, 71, 2090, 71, 71, 2085, 2092, 71,
- 71, 71, 2084, 2087, 2088, 2096, 2091, 2094, 2099, 71,
- 71, 71, 2097, 71, 71, 2095, 71, 71, 2093, 2098,
- 71, 2100, 71, 71, 71, 2110, 71, 142, 71, 2101,
- 2102, 2111, 71, 71, 2107, 71, 2105, 2103, 71, 2109,
- 2104, 2106, 71, 2115, 2108, 2112, 71, 2113, 2114, 2116,
- 71, 2117, 71, 2118, 71, 2120, 71, 2123, 71, 2119,
-
- 71, 71, 71, 71, 71, 2121, 2124, 2125, 2122, 2129,
- 71, 2130, 71, 71, 2132, 71, 2128, 71, 2134, 71,
- 2126, 71, 71, 2127, 2137, 71, 71, 2136, 2138, 71,
- 71, 71, 2131, 71, 71, 2133, 2135, 71, 71, 2140,
- 2139, 71, 2143, 2144, 71, 2141, 2146, 71, 71, 71,
- 2150, 71, 2142, 2145, 2148, 71, 2147, 71, 2149, 2152,
- 71, 71, 2156, 71, 71, 2151, 71, 71, 71, 71,
- 2153, 71, 2154, 2160, 2161, 71, 71, 2165, 71, 71,
- 2155, 71, 2159, 71, 2157, 71, 2163, 2162, 2167, 2158,
- 71, 2164, 71, 71, 2172, 71, 71, 2168, 2174, 2166,
-
- 71, 71, 71, 2169, 2173, 2175, 2179, 71, 2170, 71,
- 71, 71, 2178, 71, 2180, 71, 2184, 71, 2171, 71,
- 2176, 71, 2177, 2182, 2186, 71, 2187, 2189, 71, 2191,
- 71, 71, 2181, 71, 2183, 71, 2192, 71, 2190, 71,
- 2188, 2185, 2193, 2195, 71, 71, 71, 2196, 2197, 71,
- 71, 2202, 71, 2194, 2198, 2199, 2203, 71, 2200, 71,
- 71, 2208, 71, 2204, 2201, 71, 2207, 71, 71, 2206,
- 71, 2209, 2205, 71, 71, 71, 2215, 71, 71, 2210,
- 71, 71, 71, 2217, 71, 71, 2226, 71, 2211, 2213,
- 2212, 2214, 2218, 2216, 2221, 71, 71, 2219, 2222, 2220,
-
- 71, 2223, 71, 2227, 71, 2224, 2228, 71, 71, 2230,
- 2231, 2229, 2225, 2232, 2233, 71, 71, 71, 71, 71,
- 71, 2235, 71, 71, 71, 2239, 71, 71, 71, 2241,
- 2236, 2234, 2240, 2242, 71, 71, 2237, 71, 71, 71,
- 2243, 71, 2238, 2246, 2247, 71, 2244, 2245, 71, 71,
- 71, 2248, 71, 2249, 71, 71, 2253, 2256, 71, 71,
- 2255, 2250, 71, 71, 2252, 2257, 71, 2261, 71, 2251,
- 2263, 2260, 71, 71, 2254, 71, 2258, 71, 2259, 2985,
- 2262, 71, 2265, 71, 71, 2268, 2266, 71, 2270, 2264,
- 71, 2269, 2272, 71, 71, 71, 2274, 71, 71, 71,
-
- 71, 71, 2271, 2267, 2273, 2278, 71, 71, 71, 71,
- 2282, 71, 2280, 2276, 2281, 2284, 2275, 2277, 2283, 71,
- 71, 71, 71, 2285, 2286, 71, 71, 71, 2291, 71,
- 2288, 71, 2279, 71, 71, 2293, 2296, 71, 71, 2290,
- 2292, 71, 2287, 71, 71, 2289, 71, 2299, 71, 2295,
- 71, 2294, 2300, 71, 71, 2301, 71, 2297, 2305, 71,
- 71, 2298, 2302, 2303, 2304, 71, 71, 71, 2310, 71,
- 71, 71, 2309, 2395, 2306, 2311, 2312, 71, 2308, 2307,
- 2313, 71, 2314, 71, 2315, 71, 71, 2317, 71, 71,
- 2319, 71, 2320, 2318, 71, 71, 71, 71, 2316, 2325,
-
- 71, 71, 2327, 71, 2328, 71, 2321, 2322, 71, 71,
- 71, 71, 71, 2324, 71, 71, 2323, 2331, 71, 2329,
- 2326, 2330, 71, 2332, 2337, 71, 71, 2334, 71, 71,
- 71, 71, 2333, 71, 2335, 2336, 71, 2338, 71, 2344,
- 71, 71, 2341, 71, 2339, 2343, 2340, 71, 2346, 2345,
- 71, 2347, 71, 2351, 2342, 71, 71, 2355, 71, 2348,
- 2353, 2354, 2356, 71, 71, 2349, 2352, 71, 2357, 71,
- 2350, 71, 2358, 71, 2359, 71, 71, 71, 71, 71,
- 2361, 71, 2360, 71, 71, 71, 2370, 2371, 71, 71,
- 2367, 71, 71, 2985, 2362, 2364, 2363, 2374, 71, 2366,
-
- 2365, 2373, 2369, 2368, 71, 2376, 71, 71, 71, 2377,
- 71, 2372, 71, 2375, 71, 2379, 71, 71, 2385, 71,
- 2386, 71, 71, 2387, 71, 2378, 71, 2380, 2381, 71,
- 71, 71, 2382, 2383, 71, 2384, 2391, 71, 71, 2389,
- 2388, 71, 2394, 2396, 71, 2390, 71, 71, 2397, 71,
- 2392, 2398, 71, 71, 2393, 71, 2400, 2399, 71, 71,
- 2401, 2402, 71, 2404, 71, 2409, 71, 2408, 71, 71,
- 2412, 71, 71, 2403, 71, 2405, 2413, 71, 2406, 2416,
- 71, 2415, 2407, 2410, 71, 71, 71, 2411, 71, 2414,
- 2420, 71, 71, 71, 71, 2424, 71, 2417, 2423, 71,
-
- 2421, 2422, 2426, 71, 2427, 2418, 2419, 71, 71, 71,
- 2431, 71, 2425, 71, 2432, 71, 2428, 2434, 71, 71,
- 71, 2430, 71, 71, 2429, 71, 2439, 71, 2441, 71,
- 71, 2437, 2435, 2436, 2438, 2442, 71, 2433, 2440, 71,
- 71, 2443, 71, 71, 71, 2445, 71, 71, 71, 71,
- 2446, 71, 2449, 2444, 2451, 2448, 2452, 71, 2454, 71,
- 2455, 71, 2447, 2450, 71, 71, 71, 71, 2460, 2680,
- 2457, 2456, 2453, 71, 71, 71, 2462, 71, 2461, 2465,
- 71, 71, 2466, 71, 2458, 2459, 2464, 71, 2468, 71,
- 71, 2470, 2463, 2469, 71, 2474, 2471, 71, 71, 2472,
-
- 2467, 71, 71, 2473, 71, 71, 2475, 71, 71, 2476,
- 71, 71, 71, 71, 2477, 2480, 2479, 2482, 71, 71,
- 71, 2483, 2478, 2481, 2485, 2484, 71, 71, 71, 71,
- 71, 2486, 71, 2491, 71, 71, 71, 2489, 2487, 2490,
- 2488, 71, 71, 2492, 2496, 71, 71, 71, 2493, 2500,
- 71, 2499, 71, 71, 71, 2494, 2498, 71, 2504, 2985,
- 2495, 2497, 2505, 71, 2507, 2501, 2508, 2502, 2509, 71,
- 71, 71, 71, 2503, 71, 2510, 71, 2511, 71, 71,
- 2513, 71, 2506, 2512, 71, 2515, 71, 71, 2518, 2519,
- 71, 71, 2514, 2520, 71, 2521, 71, 71, 2516, 71,
-
- 71, 2517, 2523, 2522, 2524, 71, 71, 71, 2528, 71,
- 2531, 2525, 2526, 2529, 71, 2532, 71, 71, 2527, 71,
- 2530, 2533, 71, 71, 71, 71, 2534, 2538, 71, 71,
- 2535, 71, 2539, 2540, 71, 2542, 71, 2536, 71, 71,
- 2541, 2546, 2543, 71, 2537, 2547, 71, 71, 71, 2549,
- 71, 71, 2548, 2545, 2550, 71, 2544, 71, 2555, 71,
- 71, 71, 71, 2554, 71, 2557, 2551, 2558, 71, 71,
- 2552, 2553, 71, 71, 2559, 71, 2561, 71, 2563, 71,
- 2560, 71, 2568, 71, 2556, 2562, 2566, 71, 2570, 71,
- 71, 71, 2576, 71, 2564, 2565, 71, 2567, 2572, 2573,
-
- 71, 2569, 2571, 71, 2574, 71, 71, 2577, 71, 2578,
- 2575, 71, 2579, 71, 2580, 71, 2581, 71, 71, 71,
- 2582, 2985, 2584, 2583, 2588, 71, 2585, 71, 71, 71,
- 2589, 2591, 71, 2593, 71, 71, 2592, 71, 2586, 2587,
- 2594, 2595, 71, 71, 71, 71, 2590, 2600, 71, 71,
- 71, 71, 2596, 2597, 2598, 2599, 71, 2604, 2602, 71,
- 2601, 71, 2605, 71, 2606, 2603, 2608, 71, 2607, 2609,
- 71, 2610, 71, 71, 71, 71, 71, 71, 71, 71,
- 2619, 2611, 71, 71, 2614, 71, 71, 2617, 2615, 2636,
- 2622, 71, 2613, 2985, 2620, 71, 2623, 71, 2612, 2618,
-
- 71, 2624, 2616, 71, 2621, 71, 2625, 71, 2626, 71,
- 2627, 2629, 71, 2628, 2630, 71, 2631, 71, 71, 71,
- 2639, 71, 71, 71, 2635, 2633, 2634, 2632, 2637, 71,
- 71, 71, 71, 2644, 2638, 71, 2642, 2646, 71, 71,
- 2640, 71, 71, 71, 2650, 71, 71, 71, 71, 71,
- 2643, 2641, 2653, 71, 71, 71, 2648, 71, 71, 2651,
- 2645, 2647, 2652, 2649, 2654, 2657, 2656, 71, 71, 2655,
- 2660, 71, 2658, 2662, 71, 2663, 71, 2661, 2665, 71,
- 2659, 71, 71, 71, 71, 71, 2670, 71, 71, 2664,
- 2669, 71, 71, 2674, 71, 2676, 71, 2666, 2667, 2668,
-
- 71, 2678, 2681, 71, 2671, 2682, 71, 71, 2675, 71,
- 2673, 2672, 71, 71, 2679, 2684, 71, 71, 71, 2689,
- 2677, 71, 71, 71, 2686, 71, 2687, 2693, 71, 71,
- 71, 71, 2683, 2694, 2691, 2685, 71, 2695, 2688, 2698,
- 2690, 2696, 2701, 2692, 71, 71, 2699, 71, 71, 71,
- 71, 2697, 2700, 71, 71, 2703, 71, 2706, 2704, 71,
- 2709, 71, 2702, 71, 2710, 71, 2713, 71, 71, 71,
- 2714, 71, 71, 2705, 71, 2711, 2707, 2708, 2712, 2715,
- 71, 71, 2716, 2718, 71, 2717, 2719, 71, 2720, 71,
- 71, 2722, 71, 71, 2724, 2721, 71, 71, 2727, 71,
-
- 2723, 2728, 71, 71, 2733, 71, 2732, 71, 71, 71,
- 71, 71, 71, 2729, 2731, 2725, 2783, 2736, 2726, 2737,
- 71, 2738, 71, 2730, 71, 71, 2741, 71, 2734, 2739,
- 2735, 71, 71, 2744, 71, 2743, 71, 71, 71, 2740,
- 71, 2745, 71, 2742, 71, 2748, 71, 71, 71, 71,
- 2750, 71, 71, 2985, 2749, 2751, 71, 2746, 2747, 71,
- 71, 71, 71, 71, 2765, 2752, 2760, 2756, 2753, 2754,
- 2755, 2763, 71, 2757, 2758, 71, 2762, 2764, 71, 2774,
- 2759, 71, 2761, 2766, 71, 2767, 71, 2768, 2769, 71,
- 71, 2770, 2771, 71, 71, 2772, 2773, 71, 71, 2775,
-
- 71, 2778, 71, 71, 2781, 71, 71, 2776, 2780, 71,
- 2784, 2777, 71, 2779, 71, 71, 71, 2789, 2785, 2790,
- 71, 2791, 71, 71, 2788, 71, 71, 2782, 71, 2786,
- 2787, 2793, 71, 2798, 2794, 2796, 71, 2795, 2792, 71,
- 2797, 71, 71, 71, 71, 2805, 71, 2800, 2802, 2803,
- 71, 2807, 71, 2799, 71, 2806, 2854, 2801, 2808, 71,
- 71, 2804, 2809, 71, 2810, 71, 2811, 71, 2812, 71,
- 2813, 71, 2814, 71, 71, 2816, 71, 71, 71, 71,
- 2819, 2821, 71, 2815, 71, 71, 2817, 71, 71, 2825,
- 2818, 71, 2827, 71, 71, 71, 71, 2824, 2820, 2822,
-
- 2823, 71, 71, 2831, 2829, 71, 2826, 2834, 2833, 71,
- 71, 71, 2828, 71, 2832, 2836, 71, 71, 71, 71,
- 71, 2830, 2841, 2835, 2843, 71, 2844, 71, 2845, 71,
- 2837, 2842, 71, 2839, 2838, 2840, 71, 71, 71, 71,
- 71, 2848, 71, 71, 71, 2847, 71, 2853, 71, 2856,
- 71, 71, 71, 2850, 2852, 2846, 71, 71, 2849, 2855,
- 71, 71, 71, 2851, 2857, 2858, 71, 2865, 2859, 71,
- 2868, 71, 2860, 71, 71, 2862, 71, 2861, 2863, 71,
- 2866, 2864, 2869, 2870, 71, 71, 2871, 2872, 71, 2867,
- 2873, 71, 71, 2874, 71, 2876, 2875, 71, 71, 2877,
-
- 2881, 71, 2878, 71, 2879, 71, 71, 2884, 71, 71,
- 2887, 71, 71, 2880, 71, 2882, 2890, 71, 71, 2891,
- 2885, 71, 71, 2883, 2894, 2895, 71, 2888, 2886, 2892,
- 71, 71, 2889, 71, 71, 2899, 71, 71, 71, 71,
- 2896, 2893, 71, 71, 71, 71, 2897, 2903, 71, 2905,
- 71, 71, 2902, 2898, 71, 71, 2985, 71, 2900, 2901,
- 2910, 2907, 2904, 2908, 2906, 71, 71, 2915, 71, 71,
- 2909, 2911, 71, 2917, 2912, 2913, 2985, 2916, 71, 71,
- 71, 2918, 71, 2919, 2914, 71, 2923, 2920, 2922, 71,
- 2921, 71, 71, 2924, 71, 71, 2925, 2926, 71, 2927,
-
- 71, 71, 71, 2932, 71, 71, 71, 2929, 2928, 71,
- 71, 2935, 2936, 71, 71, 71, 71, 71, 2934, 2939,
- 2930, 2931, 71, 2933, 2937, 2940, 71, 2938, 71, 2943,
- 2942, 2944, 71, 71, 2947, 2941, 71, 71, 2949, 71,
- 2950, 71, 71, 71, 71, 2945, 2951, 71, 2946, 2952,
- 2954, 71, 2955, 71, 71, 2948, 2956, 2957, 71, 71,
- 2958, 71, 2953, 2960, 71, 71, 2959, 2963, 71, 2961,
- 71, 71, 71, 71, 71, 2965, 2966, 71, 2969, 71,
- 2962, 2970, 71, 71, 2964, 71, 2973, 2974, 71, 71,
- 2975, 2967, 2968, 2971, 2976, 71, 2977, 71, 2972, 71,
-
- 71, 71, 71, 2983, 71, 2979, 2978, 2980, 2981, 2984,
- 71, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985,
- 2982, 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, 2985, 74,
- 74, 74, 74, 141, 141, 2985, 2985, 2985, 141, 141,
- 143, 143, 2985, 2985, 143, 2985, 143, 145, 2985, 2985,
- 2985, 2985, 2985, 145, 148, 148, 2985, 2985, 2985, 148,
- 148, 150, 2985, 2985, 2985, 2985, 2985, 150, 152, 152,
-
- 2985, 152, 152, 152, 152, 75, 75, 2985, 75, 75,
- 75, 75, 13, 2985, 2985, 2985, 2985, 2985, 2985, 2985,
- 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985,
- 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985,
- 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985,
- 2985, 2985, 2985
+ 18, 19, 20, 21, 22, 23, 22, 18, 18, 18,
+ 18, 18, 22, 24, 25, 26, 27, 28, 29, 30,
+ 18, 31, 32, 33, 34, 35, 36, 37, 38, 39,
+ 40, 41, 42, 43, 44, 45, 18, 18, 18, 46,
+ 48, 49, 50, 48, 49, 50, 53, 54, 53, 54,
+ 55, 51, 55, 85, 51, 85, 85, 56, 85, 56,
+ 58, 59, 60, 61, 85, 22, 58, 59, 60, 61,
+ 86, 22, 62, 64, 65, 66, 86, 97, 62, 64,
+ 65, 66, 87, 86, 67, 118, 88, 108, 85, 86,
+ 67, 19, 20, 21, 69, 70, 71, 75, 76, 77,
+
+ 78, 86, 22, 72, 120, 86, 119, 109, 86, 79,
+ 157, 157, 73, 19, 20, 21, 69, 70, 71, 75,
+ 76, 77, 78, 184, 22, 72, 81, 82, 83, 128,
+ 90, 79, 90, 90, 73, 90, 86, 84, 81, 82,
+ 83, 90, 91, 86, 86, 98, 92, 93, 86, 84,
+ 94, 156, 99, 86, 110, 95, 100, 86, 112, 101,
+ 86, 145, 134, 146, 96, 86, 113, 87, 111, 86,
+ 102, 88, 147, 114, 103, 86, 115, 104, 148, 105,
+ 106, 159, 178, 116, 159, 117, 86, 121, 86, 125,
+ 107, 86, 153, 126, 167, 122, 154, 86, 86, 135,
+
+ 155, 123, 129, 136, 86, 124, 130, 164, 164, 127,
+ 167, 223, 131, 137, 138, 132, 139, 86, 86, 174,
+ 174, 149, 133, 140, 170, 161, 141, 161, 161, 86,
+ 161, 150, 176, 142, 246, 151, 152, 143, 144, 90,
+ 86, 90, 90, 166, 90, 166, 166, 171, 166, 171,
+ 171, 169, 171, 85, 86, 85, 85, 90, 85, 90,
+ 90, 86, 90, 86, 85, 177, 179, 86, 90, 91,
+ 181, 86, 86, 86, 182, 86, 86, 86, 86, 194,
+ 86, 185, 187, 180, 86, 86, 86, 183, 188, 186,
+ 189, 190, 191, 86, 196, 86, 86, 193, 195, 192,
+
+ 197, 86, 86, 86, 198, 86, 199, 200, 205, 204,
+ 206, 202, 86, 86, 201, 207, 211, 86, 208, 203,
+ 86, 213, 86, 86, 86, 214, 216, 221, 86, 86,
+ 217, 209, 210, 222, 86, 225, 86, 227, 86, 86,
+ 86, 212, 86, 219, 229, 215, 218, 224, 220, 226,
+ 86, 86, 234, 86, 86, 231, 228, 230, 86, 232,
+ 86, 86, 233, 86, 86, 236, 242, 86, 248, 239,
+ 86, 86, 86, 235, 237, 86, 247, 243, 251, 241,
+ 238, 244, 86, 245, 240, 249, 86, 86, 250, 252,
+ 86, 253, 86, 255, 257, 261, 86, 86, 86, 260,
+
+ 86, 254, 256, 258, 167, 264, 157, 157, 262, 159,
+ 86, 265, 159, 164, 164, 259, 263, 161, 275, 161,
+ 161, 166, 161, 166, 166, 90, 166, 90, 90, 167,
+ 90, 171, 266, 171, 171, 86, 171, 169, 174, 174,
+ 267, 268, 86, 86, 86, 86, 86, 86, 86, 86,
+ 86, 86, 272, 86, 278, 175, 269, 274, 271, 273,
+ 270, 281, 280, 277, 276, 173, 86, 86, 282, 286,
+ 279, 284, 86, 285, 86, 86, 283, 287, 290, 86,
+ 86, 295, 288, 291, 86, 86, 86, 86, 292, 86,
+ 86, 298, 299, 86, 293, 294, 296, 302, 86, 289,
+
+ 86, 300, 304, 86, 297, 305, 86, 306, 86, 86,
+ 301, 86, 86, 86, 172, 86, 311, 312, 86, 313,
+ 308, 307, 314, 309, 315, 86, 303, 310, 321, 323,
+ 318, 320, 86, 319, 86, 86, 316, 325, 317, 86,
+ 322, 324, 327, 86, 328, 86, 86, 331, 86, 333,
+ 86, 332, 326, 86, 334, 86, 86, 86, 86, 329,
+ 86, 86, 86, 335, 337, 86, 330, 86, 339, 86,
+ 336, 86, 86, 86, 86, 341, 343, 86, 86, 348,
+ 86, 338, 342, 344, 349, 86, 86, 340, 345, 354,
+ 86, 350, 347, 346, 352, 86, 351, 86, 357, 86,
+
+ 86, 86, 353, 360, 86, 359, 86, 86, 86, 86,
+ 86, 363, 364, 167, 362, 355, 356, 86, 86, 358,
+ 366, 367, 86, 369, 368, 361, 86, 365, 370, 86,
+ 371, 373, 86, 86, 374, 86, 86, 86, 167, 86,
+ 377, 86, 86, 86, 86, 86, 384, 385, 382, 380,
+ 378, 375, 86, 86, 372, 86, 376, 388, 379, 86,
+ 386, 86, 381, 86, 387, 86, 86, 383, 86, 86,
+ 394, 86, 395, 86, 396, 397, 389, 393, 86, 390,
+ 86, 398, 392, 399, 391, 86, 86, 86, 401, 86,
+ 402, 86, 86, 86, 86, 405, 86, 86, 406, 86,
+
+ 86, 165, 412, 400, 409, 407, 408, 403, 404, 411,
+ 86, 413, 86, 410, 86, 86, 414, 86, 86, 416,
+ 86, 418, 86, 86, 86, 417, 86, 86, 86, 423,
+ 86, 86, 86, 415, 419, 424, 86, 422, 86, 86,
+ 420, 163, 426, 86, 421, 427, 86, 429, 425, 428,
+ 86, 433, 434, 431, 430, 436, 86, 86, 86, 435,
+ 86, 86, 86, 86, 449, 86, 443, 445, 454, 86,
+ 432, 86, 86, 455, 86, 446, 450, 447, 444, 86,
+ 437, 451, 86, 438, 452, 453, 86, 606, 439, 440,
+ 441, 442, 86, 448, 86, 456, 457, 86, 86, 458,
+
+ 86, 459, 86, 460, 462, 86, 461, 463, 86, 464,
+ 86, 86, 467, 465, 86, 466, 86, 471, 86, 86,
+ 86, 86, 472, 86, 473, 476, 477, 162, 488, 86,
+ 468, 470, 86, 474, 469, 86, 86, 86, 475, 86,
+ 478, 479, 481, 483, 482, 86, 490, 480, 484, 86,
+ 489, 86, 86, 491, 86, 86, 492, 503, 86, 86,
+ 86, 485, 493, 86, 486, 86, 487, 86, 494, 86,
+ 508, 167, 495, 505, 86, 506, 504, 507, 519, 510,
+ 496, 86, 497, 86, 498, 520, 509, 86, 86, 518,
+ 521, 86, 523, 522, 86, 86, 86, 499, 525, 841,
+
+ 500, 86, 501, 528, 502, 86, 86, 511, 512, 86,
+ 526, 86, 86, 524, 527, 86, 86, 513, 86, 514,
+ 515, 516, 529, 532, 517, 531, 530, 86, 86, 86,
+ 537, 540, 538, 533, 86, 534, 535, 86, 536, 86,
+ 541, 86, 86, 539, 545, 86, 86, 86, 549, 550,
+ 86, 86, 548, 543, 542, 86, 544, 86, 86, 86,
+ 86, 555, 547, 86, 86, 86, 556, 86, 86, 558,
+ 546, 559, 86, 552, 553, 551, 86, 554, 86, 561,
+ 86, 86, 634, 86, 557, 86, 560, 562, 564, 86,
+ 86, 563, 567, 572, 570, 566, 86, 86, 565, 573,
+
+ 574, 571, 86, 568, 86, 569, 86, 86, 576, 86,
+ 86, 577, 578, 86, 581, 579, 86, 86, 575, 583,
+ 86, 86, 584, 86, 580, 86, 586, 587, 86, 582,
+ 86, 86, 588, 86, 585, 86, 591, 86, 589, 86,
+ 592, 86, 593, 86, 86, 86, 86, 86, 599, 595,
+ 594, 590, 603, 86, 86, 602, 598, 600, 601, 596,
+ 86, 597, 86, 605, 86, 607, 86, 86, 86, 86,
+ 86, 86, 86, 617, 86, 609, 86, 610, 619, 86,
+ 86, 604, 612, 86, 86, 618, 624, 608, 616, 611,
+ 613, 615, 614, 86, 621, 86, 86, 86, 620, 627,
+
+ 86, 86, 630, 622, 629, 86, 623, 86, 86, 86,
+ 625, 86, 626, 86, 633, 86, 86, 636, 86, 86,
+ 628, 632, 86, 637, 639, 86, 631, 86, 86, 86,
+ 638, 86, 635, 653, 86, 641, 86, 667, 640, 86,
+ 642, 86, 643, 652, 86, 651, 86, 644, 656, 645,
+ 654, 660, 655, 86, 659, 646, 86, 647, 657, 86,
+ 648, 649, 658, 664, 86, 86, 86, 650, 663, 86,
+ 86, 670, 661, 86, 665, 662, 86, 672, 86, 86,
+ 666, 86, 86, 86, 86, 86, 669, 86, 668, 678,
+ 86, 674, 86, 673, 679, 86, 675, 86, 671, 683,
+
+ 167, 676, 685, 682, 684, 677, 680, 681, 86, 86,
+ 687, 86, 86, 86, 86, 86, 86, 86, 86, 692,
+ 694, 686, 696, 86, 86, 695, 689, 697, 690, 693,
+ 688, 699, 691, 86, 86, 86, 698, 86, 701, 86,
+ 86, 86, 86, 86, 705, 86, 700, 704, 713, 86,
+ 86, 710, 706, 702, 715, 703, 711, 86, 86, 707,
+ 86, 709, 708, 712, 714, 86, 716, 86, 717, 86,
+ 718, 86, 719, 86, 722, 86, 86, 720, 86, 721,
+ 723, 86, 86, 86, 86, 726, 86, 86, 727, 725,
+ 731, 730, 724, 86, 86, 86, 86, 732, 86, 86,
+
+ 734, 86, 736, 86, 737, 729, 86, 728, 86, 86,
+ 743, 86, 733, 86, 739, 738, 86, 86, 735, 740,
+ 86, 742, 746, 741, 744, 747, 86, 750, 86, 745,
+ 748, 86, 86, 86, 752, 86, 753, 751, 86, 86,
+ 755, 749, 756, 757, 86, 86, 86, 86, 86, 86,
+ 764, 86, 762, 760, 86, 86, 86, 86, 754, 86,
+ 758, 761, 770, 759, 765, 160, 768, 86, 86, 763,
+ 86, 769, 767, 766, 86, 86, 771, 772, 773, 774,
+ 86, 86, 86, 775, 779, 777, 86, 776, 781, 778,
+ 86, 780, 86, 86, 86, 782, 784, 86, 783, 86,
+
+ 86, 785, 86, 791, 86, 788, 86, 86, 86, 86,
+ 786, 86, 787, 794, 86, 793, 86, 796, 797, 789,
+ 790, 86, 800, 792, 798, 86, 801, 795, 86, 803,
+ 802, 86, 805, 86, 804, 86, 86, 86, 807, 799,
+ 86, 86, 809, 86, 86, 86, 86, 815, 86, 86,
+ 86, 86, 816, 86, 86, 86, 808, 86, 806, 810,
+ 817, 811, 812, 86, 813, 818, 814, 820, 86, 819,
+ 824, 86, 823, 86, 821, 822, 86, 86, 86, 86,
+ 86, 86, 825, 826, 829, 86, 86, 86, 86, 86,
+ 838, 86, 827, 836, 831, 839, 828, 830, 86, 832,
+
+ 86, 837, 86, 833, 834, 835, 86, 843, 86, 86,
+ 86, 86, 86, 86, 842, 86, 847, 840, 848, 849,
+ 850, 86, 844, 846, 86, 86, 851, 845, 86, 852,
+ 86, 853, 86, 167, 854, 86, 86, 86, 858, 856,
+ 859, 86, 855, 86, 857, 860, 86, 86, 86, 861,
+ 86, 863, 862, 866, 86, 86, 867, 869, 86, 870,
+ 864, 86, 86, 872, 868, 86, 874, 871, 865, 86,
+ 86, 86, 878, 86, 86, 86, 86, 875, 86, 86,
+ 880, 873, 879, 86, 86, 86, 86, 86, 898, 877,
+ 894, 86, 86, 881, 893, 876, 86, 895, 891, 883,
+
+ 897, 882, 86, 892, 884, 86, 899, 885, 896, 86,
+ 86, 886, 86, 86, 887, 86, 86, 904, 86, 920,
+ 900, 888, 889, 86, 890, 86, 902, 86, 901, 86,
+ 912, 158, 916, 903, 86, 905, 906, 913, 907, 86,
+ 915, 908, 917, 86, 86, 914, 909, 918, 86, 923,
+ 919, 86, 910, 911, 921, 86, 922, 86, 86, 86,
+ 924, 926, 86, 925, 86, 86, 927, 86, 86, 930,
+ 929, 928, 86, 86, 934, 86, 933, 86, 86, 86,
+ 937, 86, 86, 941, 943, 86, 86, 931, 86, 86,
+ 935, 932, 936, 939, 86, 938, 944, 962, 86, 942,
+
+ 947, 945, 86, 946, 940, 948, 86, 86, 950, 86,
+ 86, 86, 949, 951, 86, 952, 86, 954, 86, 955,
+ 86, 86, 86, 86, 953, 86, 86, 86, 958, 956,
+ 961, 86, 959, 964, 86, 963, 86, 86, 86, 86,
+ 957, 86, 86, 86, 86, 960, 966, 967, 969, 86,
+ 970, 86, 971, 965, 86, 86, 972, 86, 973, 977,
+ 968, 86, 979, 975, 978, 86, 86, 974, 976, 86,
+ 86, 86, 980, 86, 984, 986, 987, 86, 982, 86,
+ 86, 86, 985, 86, 86, 981, 989, 86, 86, 86,
+ 86, 86, 86, 86, 983, 997, 1000, 86, 995, 86,
+
+ 988, 990, 86, 991, 992, 86, 1001, 86, 994, 993,
+ 998, 1002, 999, 996, 86, 86, 86, 86, 1008, 86,
+ 1005, 1004, 1007, 86, 1003, 86, 86, 86, 86, 1006,
+ 86, 86, 1010, 1017, 1012, 1018, 1009, 1020, 86, 86,
+ 86, 86, 1022, 86, 86, 1011, 175, 1013, 86, 1015,
+ 1014, 1016, 1019, 1023, 86, 86, 86, 86, 1024, 86,
+ 1021, 1028, 1031, 1025, 86, 1030, 86, 1026, 86, 1032,
+ 86, 86, 86, 1035, 86, 1027, 1037, 86, 1029, 86,
+ 86, 86, 86, 86, 1034, 1040, 1039, 1043, 1033, 1042,
+ 1041, 167, 1036, 86, 1044, 86, 86, 86, 1038, 86,
+
+ 86, 1047, 86, 86, 1045, 86, 1059, 86, 1062, 86,
+ 86, 1060, 86, 86, 1050, 1046, 1048, 1064, 86, 86,
+ 1087, 86, 1051, 1049, 1052, 86, 86, 1061, 1053, 86,
+ 1054, 1078, 86, 1065, 1055, 1063, 1056, 1067, 86, 1069,
+ 1066, 1057, 86, 1068, 1070, 86, 1058, 1071, 86, 86,
+ 86, 86, 1073, 86, 1079, 86, 1072, 86, 1076, 86,
+ 86, 86, 86, 173, 1074, 1075, 1084, 1085, 1077, 1080,
+ 1083, 1082, 1081, 86, 1086, 86, 1088, 1089, 1091, 86,
+ 86, 86, 86, 86, 1090, 86, 86, 1101, 86, 1104,
+ 86, 1100, 86, 1092, 86, 1093, 86, 1105, 1103, 1102,
+
+ 1094, 86, 1095, 86, 1106, 1110, 86, 86, 1096, 1108,
+ 86, 1111, 1113, 1097, 1098, 1107, 86, 86, 86, 1114,
+ 1099, 86, 1109, 1117, 86, 86, 86, 86, 86, 86,
+ 1112, 1118, 86, 86, 1116, 86, 1115, 1120, 1123, 86,
+ 1126, 1121, 86, 1119, 86, 1127, 1125, 86, 1124, 1122,
+ 86, 86, 86, 86, 86, 86, 1128, 1135, 86, 1133,
+ 1131, 1132, 1130, 86, 86, 86, 86, 1129, 86, 1137,
+ 86, 1134, 86, 86, 1136, 1143, 86, 86, 1144, 1140,
+ 86, 1145, 86, 1147, 1138, 1139, 1141, 1142, 1148, 1146,
+ 1149, 86, 1151, 86, 86, 86, 1153, 1152, 86, 1154,
+
+ 86, 86, 86, 1155, 86, 86, 86, 1150, 1162, 86,
+ 1164, 86, 86, 1157, 86, 1156, 86, 1166, 1158, 1160,
+ 1161, 86, 1159, 86, 86, 86, 1165, 1168, 86, 1163,
+ 1170, 86, 86, 1171, 86, 1167, 86, 1173, 86, 1174,
+ 86, 1180, 86, 86, 1169, 1179, 1176, 1172, 1175, 1178,
+ 86, 86, 86, 86, 1177, 86, 1183, 86, 1184, 1181,
+ 86, 86, 86, 86, 86, 1188, 1190, 86, 1191, 1192,
+ 1182, 86, 86, 1185, 86, 86, 1189, 86, 1195, 1186,
+ 1193, 1187, 1194, 1198, 86, 1196, 86, 86, 86, 86,
+ 86, 1197, 1199, 1200, 86, 1201, 86, 1202, 86, 86,
+
+ 86, 1205, 1206, 86, 86, 86, 1211, 1212, 1203, 86,
+ 86, 1207, 86, 86, 1214, 1204, 1209, 1215, 86, 86,
+ 86, 1208, 1219, 86, 1210, 1213, 86, 86, 86, 86,
+ 86, 86, 1225, 86, 1217, 1218, 167, 1221, 1216, 86,
+ 86, 86, 86, 1232, 86, 1220, 1230, 86, 1222, 86,
+ 1224, 172, 1229, 1227, 1234, 1223, 1226, 1228, 1231, 1235,
+ 86, 86, 86, 86, 1237, 86, 1236, 1233, 1238, 86,
+ 86, 86, 86, 86, 86, 86, 1241, 86, 1247, 86,
+ 86, 1244, 86, 1239, 1240, 86, 86, 1242, 86, 167,
+ 1245, 1251, 1243, 86, 1248, 86, 1246, 86, 1253, 1257,
+
+ 1249, 1250, 86, 1258, 1261, 86, 86, 1254, 1252, 1255,
+ 1259, 86, 1256, 1260, 86, 86, 86, 86, 1263, 86,
+ 1262, 86, 86, 86, 1267, 86, 1266, 1270, 86, 86,
+ 1264, 1273, 86, 86, 1265, 1269, 1271, 86, 1274, 86,
+ 1268, 86, 1275, 86, 1277, 1278, 86, 1272, 86, 1276,
+ 86, 86, 1279, 86, 86, 86, 86, 86, 86, 86,
+ 86, 1280, 1285, 1281, 86, 1283, 1284, 86, 1286, 1282,
+ 1290, 1295, 86, 1287, 1291, 86, 1289, 86, 1288, 86,
+ 1292, 1294, 86, 86, 86, 86, 86, 1293, 86, 1300,
+ 1296, 1298, 86, 1297, 1302, 86, 1307, 1301, 86, 1303,
+
+ 86, 1306, 1299, 1316, 86, 1304, 1305, 86, 86, 86,
+ 1375, 1314, 1308, 1315, 86, 1309, 1310, 86, 1317, 1318,
+ 1311, 1320, 86, 86, 86, 86, 1312, 86, 1321, 1322,
+ 1313, 1319, 86, 1323, 86, 1325, 86, 86, 86, 1326,
+ 86, 1327, 86, 86, 86, 86, 1324, 1335, 1332, 1330,
+ 86, 86, 1344, 86, 1336, 1337, 1329, 1328, 1333, 86,
+ 86, 86, 1331, 1334, 86, 1338, 1345, 1346, 1339, 86,
+ 86, 86, 86, 1340, 86, 1341, 1348, 1342, 86, 1343,
+ 86, 1347, 1350, 1351, 1352, 86, 1349, 1354, 86, 1353,
+ 86, 86, 86, 1356, 86, 86, 86, 1362, 86, 1357,
+
+ 1358, 86, 1355, 86, 86, 1363, 1364, 86, 86, 1361,
+ 1365, 1359, 1366, 1360, 86, 1367, 86, 1368, 86, 1372,
+ 86, 86, 86, 1371, 1374, 86, 86, 1377, 86, 1376,
+ 86, 86, 1369, 1380, 86, 86, 1373, 1382, 86, 1379,
+ 1384, 1370, 86, 1383, 86, 86, 86, 1378, 1387, 86,
+ 86, 1381, 86, 86, 86, 1389, 86, 86, 86, 1391,
+ 86, 1397, 1393, 86, 1394, 1385, 1386, 1392, 86, 86,
+ 1388, 1395, 1396, 1390, 1399, 86, 86, 1398, 86, 86,
+ 86, 1401, 86, 1400, 1402, 86, 1403, 1404, 86, 1409,
+ 86, 86, 1410, 1408, 1406, 86, 1405, 1407, 86, 86,
+
+ 1412, 86, 86, 86, 1411, 167, 86, 1416, 86, 86,
+ 1413, 1417, 86, 1421, 1415, 86, 1422, 86, 1424, 86,
+ 1418, 1414, 86, 1423, 86, 86, 86, 1428, 86, 1419,
+ 86, 86, 1431, 86, 86, 1420, 86, 86, 86, 1425,
+ 1436, 86, 1429, 1435, 86, 1426, 1427, 86, 1430, 1438,
+ 1440, 86, 86, 1432, 1434, 1441, 86, 86, 86, 1433,
+ 1437, 1443, 86, 86, 86, 1444, 1439, 165, 86, 1442,
+ 86, 86, 1445, 1449, 86, 1456, 1450, 1446, 1447, 1451,
+ 86, 1448, 1452, 1454, 86, 1453, 1457, 86, 1455, 86,
+ 86, 1458, 86, 1459, 86, 86, 86, 86, 86, 1462,
+
+ 1463, 86, 1465, 86, 86, 86, 1470, 86, 1461, 86,
+ 86, 1471, 86, 1460, 1464, 1467, 86, 1474, 1466, 86,
+ 86, 1468, 1469, 86, 1475, 86, 86, 1472, 86, 1473,
+ 86, 86, 86, 1477, 86, 1476, 1481, 1482, 86, 1480,
+ 1478, 1479, 86, 1483, 86, 1486, 1484, 1487, 86, 86,
+ 1489, 1485, 86, 1492, 1488, 1493, 86, 1491, 86, 86,
+ 1497, 86, 86, 1494, 86, 1495, 1496, 86, 86, 86,
+ 1490, 86, 86, 86, 1503, 86, 1499, 1498, 86, 1502,
+ 86, 86, 86, 1500, 1509, 86, 1501, 1506, 1505, 1510,
+ 86, 1511, 1507, 86, 1514, 1504, 1512, 86, 86, 86,
+
+ 1508, 86, 86, 86, 86, 1513, 1522, 1518, 86, 86,
+ 1517, 86, 86, 1525, 1523, 86, 86, 1515, 1516, 86,
+ 86, 86, 1519, 1528, 1520, 86, 1521, 1527, 86, 86,
+ 86, 86, 86, 86, 1526, 1529, 1542, 1524, 86, 1530,
+ 86, 1536, 86, 86, 1531, 1533, 1537, 1532, 1535, 86,
+ 1538, 1534, 1539, 86, 1540, 86, 86, 86, 86, 86,
+ 1549, 1541, 1543, 86, 1550, 1546, 1544, 86, 86, 1547,
+ 86, 1545, 1554, 86, 86, 1556, 86, 86, 86, 1555,
+ 86, 86, 1548, 1551, 86, 1559, 1553, 1552, 1560, 86,
+ 1558, 1557, 86, 1561, 86, 1565, 1566, 86, 1562, 86,
+
+ 86, 86, 86, 86, 1570, 1571, 86, 1569, 1573, 86,
+ 1563, 86, 86, 86, 1564, 1574, 86, 1567, 1575, 86,
+ 86, 1568, 86, 1578, 86, 86, 1572, 86, 1581, 1576,
+ 86, 86, 1577, 1580, 86, 86, 86, 1587, 86, 1585,
+ 1582, 86, 1579, 86, 86, 86, 1592, 1588, 86, 1586,
+ 1584, 1583, 86, 86, 86, 86, 1597, 86, 1590, 1589,
+ 1595, 86, 1593, 86, 1600, 1598, 86, 86, 1596, 1591,
+ 1594, 86, 86, 167, 1599, 1603, 86, 86, 1602, 1606,
+ 86, 1605, 86, 86, 86, 86, 86, 1614, 1601, 1607,
+ 86, 1604, 86, 86, 86, 1608, 1609, 1615, 1612, 1618,
+
+ 86, 86, 1610, 1611, 86, 1619, 1621, 86, 86, 1623,
+ 1613, 1625, 1622, 1616, 1617, 86, 86, 86, 1627, 86,
+ 86, 1620, 86, 86, 86, 86, 1632, 1630, 1624, 1629,
+ 1626, 86, 1633, 86, 86, 86, 86, 86, 86, 1628,
+ 1637, 86, 1638, 86, 86, 1645, 86, 1634, 1631, 1646,
+ 1636, 86, 1635, 86, 1639, 1640, 1642, 86, 1641, 1643,
+ 1647, 86, 86, 86, 1661, 86, 86, 1650, 1652, 1654,
+ 1649, 1644, 1653, 86, 86, 86, 1648, 86, 1656, 1655,
+ 86, 1657, 86, 1658, 86, 1662, 86, 1659, 1651, 86,
+ 86, 86, 1665, 1664, 1666, 1668, 1667, 1660, 86, 86,
+
+ 86, 86, 86, 1671, 86, 86, 1663, 1670, 86, 86,
+ 1672, 86, 86, 86, 86, 1681, 86, 86, 86, 86,
+ 86, 86, 1669, 86, 1678, 86, 1673, 1676, 1677, 1674,
+ 1679, 1675, 1680, 86, 1684, 86, 1682, 1683, 1686, 86,
+ 1688, 86, 1689, 86, 1685, 1687, 86, 86, 1690, 86,
+ 86, 86, 86, 86, 163, 86, 86, 1691, 1694, 1696,
+ 86, 1704, 86, 1703, 1697, 1693, 1695, 1698, 86, 1699,
+ 1692, 1700, 1705, 86, 86, 1702, 1701, 86, 86, 86,
+ 1706, 1708, 1709, 86, 86, 86, 86, 86, 86, 1712,
+ 1710, 1713, 1707, 86, 86, 1721, 86, 1716, 1711, 86,
+
+ 86, 86, 86, 1715, 1714, 1718, 1722, 86, 1719, 1720,
+ 86, 86, 1717, 86, 1723, 1724, 86, 1725, 86, 86,
+ 1731, 86, 86, 86, 1726, 1728, 86, 1727, 1734, 86,
+ 1735, 1733, 86, 86, 86, 1737, 1730, 1732, 1738, 1739,
+ 86, 1729, 1743, 86, 1736, 86, 86, 1744, 86, 1749,
+ 1740, 86, 86, 1752, 1741, 86, 1748, 1745, 1742, 86,
+ 1746, 1751, 86, 86, 86, 1754, 86, 86, 1747, 1753,
+ 1750, 86, 1755, 1758, 86, 86, 1762, 86, 1760, 86,
+ 86, 1757, 86, 1756, 1761, 1763, 86, 1759, 86, 86,
+ 86, 86, 86, 86, 1772, 86, 1766, 86, 1767, 1764,
+
+ 1777, 86, 1774, 1768, 1769, 1765, 1770, 1771, 86, 1775,
+ 1776, 86, 86, 86, 86, 86, 1773, 1782, 86, 86,
+ 86, 1786, 86, 86, 86, 86, 86, 1781, 86, 1788,
+ 1779, 1778, 1780, 1789, 86, 1784, 86, 86, 1785, 1790,
+ 1783, 1791, 167, 86, 1787, 86, 1792, 1796, 86, 1793,
+ 86, 86, 1800, 86, 1794, 86, 86, 86, 1795, 86,
+ 86, 86, 1798, 1802, 1797, 86, 86, 1807, 86, 1801,
+ 1799, 1803, 1804, 86, 1810, 162, 1805, 1808, 1811, 86,
+ 86, 1806, 86, 1812, 1809, 1813, 86, 1814, 86, 1816,
+ 1817, 86, 86, 86, 86, 86, 1819, 1815, 86, 86,
+
+ 86, 1820, 86, 86, 1818, 86, 86, 86, 1825, 86,
+ 1826, 86, 86, 1821, 86, 1827, 1830, 86, 1823, 1828,
+ 1824, 1822, 1834, 1831, 1829, 86, 86, 1838, 86, 1835,
+ 1836, 1839, 1833, 86, 86, 86, 1832, 86, 86, 160,
+ 86, 1837, 1844, 86, 86, 1847, 1848, 86, 1849, 86,
+ 86, 1842, 86, 1841, 1840, 1851, 86, 1845, 1843, 1846,
+ 86, 1852, 86, 1855, 86, 86, 1857, 86, 86, 1856,
+ 1850, 1858, 86, 1853, 1859, 1861, 86, 1864, 86, 86,
+ 86, 86, 1863, 1854, 86, 1860, 86, 1865, 1867, 1866,
+ 86, 86, 86, 1874, 86, 86, 86, 86, 86, 86,
+
+ 1876, 1862, 1868, 1869, 1870, 1877, 86, 86, 1880, 1871,
+ 1878, 1872, 1873, 1881, 86, 1875, 1879, 1882, 86, 86,
+ 1886, 86, 86, 86, 86, 1888, 86, 1883, 1885, 86,
+ 86, 1891, 1892, 86, 86, 1894, 86, 86, 86, 1884,
+ 86, 86, 86, 86, 1899, 86, 1889, 1896, 1887, 1897,
+ 86, 1890, 1900, 86, 1893, 86, 1902, 86, 86, 86,
+ 1906, 86, 1895, 1898, 1901, 1903, 1904, 86, 1910, 86,
+ 1913, 1905, 1909, 86, 86, 86, 86, 1908, 1914, 86,
+ 1912, 1907, 1915, 86, 86, 86, 86, 86, 1917, 1911,
+ 1916, 86, 86, 86, 1921, 1918, 86, 1924, 1925, 1920,
+
+ 1926, 86, 86, 86, 86, 1919, 86, 1929, 86, 86,
+ 1922, 86, 1934, 86, 86, 86, 1933, 1928, 86, 1923,
+ 86, 1927, 86, 1930, 1938, 86, 86, 86, 1931, 86,
+ 1936, 1932, 1939, 1935, 1940, 1941, 86, 1937, 86, 86,
+ 1943, 1948, 1942, 1945, 86, 1944, 86, 86, 1946, 86,
+ 1952, 1949, 86, 1947, 86, 86, 86, 1954, 1955, 86,
+ 86, 1956, 86, 1958, 86, 86, 1957, 1950, 86, 1951,
+ 1953, 1962, 86, 1963, 86, 1959, 1964, 1966, 1967, 86,
+ 1960, 1965, 86, 86, 86, 1961, 86, 86, 86, 1971,
+ 86, 1969, 86, 86, 1968, 86, 1973, 1976, 86, 1970,
+
+ 1972, 1978, 1974, 86, 1975, 167, 86, 86, 86, 86,
+ 1979, 86, 1985, 86, 1983, 1977, 1984, 1982, 1980, 86,
+ 1981, 1986, 86, 1987, 86, 1989, 86, 86, 86, 86,
+ 158, 86, 1990, 1991, 86, 1992, 1993, 86, 86, 1988,
+ 86, 1995, 1994, 86, 1997, 86, 1996, 86, 86, 2001,
+ 86, 86, 1998, 2000, 86, 86, 2002, 1999, 86, 2003,
+ 2004, 2005, 2006, 86, 86, 86, 86, 86, 86, 86,
+ 2013, 2007, 2011, 2008, 2012, 86, 86, 86, 86, 86,
+ 2018, 2017, 86, 2009, 86, 2010, 2015, 86, 86, 86,
+ 2022, 2019, 86, 2014, 86, 86, 2016, 2021, 86, 2024,
+
+ 2020, 2023, 86, 2026, 86, 2025, 86, 2027, 2028, 86,
+ 86, 2030, 86, 2029, 86, 2034, 86, 2036, 2031, 2032,
+ 2033, 86, 86, 86, 2037, 2038, 86, 86, 86, 2035,
+ 86, 2039, 86, 2043, 2040, 86, 2041, 86, 86, 2044,
+ 86, 86, 86, 86, 86, 86, 86, 86, 2042, 2046,
+ 2047, 2051, 2048, 2055, 86, 86, 2045, 2050, 2054, 86,
+ 86, 86, 2056, 2053, 2052, 86, 2059, 2049, 2058, 86,
+ 86, 86, 2062, 86, 2061, 2057, 2064, 86, 2063, 2060,
+ 2065, 86, 86, 86, 86, 86, 2066, 2070, 86, 86,
+ 2072, 2068, 86, 2074, 86, 2069, 86, 86, 86, 2067,
+
+ 2077, 2076, 2078, 2071, 86, 86, 2073, 86, 2082, 2079,
+ 86, 86, 86, 86, 86, 2075, 2083, 86, 2085, 2088,
+ 86, 86, 2089, 2080, 86, 2084, 86, 2081, 2092, 86,
+ 86, 2087, 2086, 86, 86, 2093, 86, 86, 2094, 2090,
+ 86, 2096, 2098, 86, 86, 2100, 2091, 2095, 86, 2097,
+ 86, 2101, 2099, 86, 86, 2104, 86, 2102, 2103, 86,
+ 86, 2107, 2109, 2105, 86, 86, 2106, 2110, 86, 2111,
+ 86, 86, 86, 86, 86, 86, 2112, 2108, 2114, 2115,
+ 86, 2118, 2113, 86, 2116, 2117, 2119, 86, 86, 86,
+ 86, 86, 86, 2120, 86, 86, 86, 2128, 2121, 2122,
+
+ 2129, 86, 2123, 2125, 2124, 2130, 2126, 2131, 86, 86,
+ 2127, 86, 86, 86, 2133, 86, 2139, 86, 86, 167,
+ 2132, 2141, 86, 86, 2138, 86, 2135, 2140, 86, 2143,
+ 2136, 86, 2134, 2144, 2147, 86, 86, 2149, 2137, 2148,
+ 86, 2146, 2142, 86, 2145, 2150, 86, 86, 2191, 2151,
+ 86, 86, 2154, 86, 86, 2152, 2153, 86, 2155, 2158,
+ 2159, 86, 86, 2160, 86, 2163, 2161, 86, 86, 86,
+ 2165, 86, 2156, 2164, 2166, 86, 86, 86, 2168, 86,
+ 86, 2167, 2162, 2157, 86, 86, 86, 2170, 86, 2169,
+ 2171, 86, 86, 2174, 86, 86, 86, 2172, 86, 2177,
+
+ 86, 2183, 86, 2175, 2173, 2181, 2176, 86, 86, 86,
+ 2178, 2179, 2184, 86, 2186, 86, 2180, 86, 86, 86,
+ 2182, 86, 2185, 2190, 2193, 86, 86, 2188, 86, 2194,
+ 86, 86, 86, 86, 86, 86, 2189, 2192, 86, 2187,
+ 2204, 86, 86, 2205, 86, 2195, 2201, 2196, 86, 86,
+ 86, 2199, 2206, 2197, 2200, 2198, 2202, 2203, 2208, 86,
+ 2210, 2207, 86, 2209, 2211, 86, 2212, 86, 86, 86,
+ 2215, 86, 2218, 86, 86, 86, 86, 2213, 86, 2219,
+ 2216, 2214, 86, 2217, 2224, 86, 86, 2220, 2225, 86,
+ 2223, 2227, 86, 86, 86, 2221, 2222, 2229, 86, 86,
+
+ 2232, 86, 2233, 86, 2231, 2226, 86, 86, 86, 2230,
+ 86, 2228, 86, 2239, 86, 86, 2235, 2238, 2241, 86,
+ 2234, 86, 2236, 86, 86, 86, 2244, 86, 2245, 2237,
+ 2243, 2247, 86, 86, 2240, 86, 2251, 86, 86, 2242,
+ 86, 86, 86, 2246, 2248, 86, 2255, 86, 2249, 2256,
+ 86, 86, 2258, 86, 2250, 86, 2254, 86, 2252, 2261,
+ 86, 86, 86, 2253, 2257, 86, 2259, 86, 2260, 2263,
+ 86, 2264, 86, 2268, 86, 2262, 86, 2271, 86, 2265,
+ 2270, 86, 2274, 2266, 86, 2269, 2275, 86, 86, 2276,
+ 86, 86, 2272, 2267, 2273, 86, 2280, 86, 86, 86,
+
+ 2285, 2278, 2282, 2283, 86, 86, 86, 2287, 86, 86,
+ 2288, 2279, 2277, 86, 2284, 86, 86, 86, 86, 2292,
+ 2289, 2281, 2291, 86, 86, 2286, 2293, 2294, 86, 2298,
+ 2299, 86, 2295, 2290, 3136, 86, 86, 2296, 2297, 86,
+ 86, 86, 2303, 2300, 2304, 86, 2305, 167, 86, 2302,
+ 86, 2301, 2307, 86, 2306, 86, 2312, 86, 86, 86,
+ 86, 86, 86, 86, 86, 86, 3136, 2319, 2308, 2310,
+ 2309, 2311, 2314, 2313, 2315, 2316, 2317, 2318, 86, 86,
+ 2321, 2323, 86, 2320, 86, 2324, 2325, 86, 86, 86,
+ 2328, 2322, 2326, 2327, 2329, 86, 86, 2331, 86, 86,
+
+ 86, 86, 2333, 86, 2330, 86, 86, 86, 2337, 86,
+ 2338, 86, 86, 2332, 86, 2334, 86, 2340, 2341, 2335,
+ 2345, 86, 86, 2339, 2342, 2336, 2343, 86, 86, 86,
+ 86, 2348, 86, 2344, 2347, 86, 86, 86, 86, 86,
+ 86, 2350, 2346, 2354, 86, 86, 86, 2357, 2349, 2351,
+ 2356, 86, 2353, 86, 86, 86, 86, 2352, 2360, 2362,
+ 2355, 2358, 2359, 2363, 2364, 86, 86, 2361, 2365, 86,
+ 86, 2367, 86, 86, 86, 2368, 86, 2370, 2371, 2366,
+ 2372, 86, 2374, 86, 86, 86, 86, 2376, 86, 86,
+ 86, 86, 86, 2373, 2375, 86, 2380, 2384, 86, 2369,
+
+ 2382, 86, 2377, 2378, 86, 2386, 2379, 2385, 86, 2383,
+ 86, 86, 86, 2387, 86, 86, 86, 2388, 2381, 2390,
+ 2393, 86, 86, 2395, 86, 86, 2398, 86, 2392, 86,
+ 86, 2394, 2389, 2399, 2391, 86, 86, 86, 86, 2402,
+ 2397, 2404, 2396, 2403, 86, 86, 86, 86, 86, 86,
+ 2408, 2407, 86, 86, 2400, 2401, 2406, 86, 86, 86,
+ 3136, 2411, 2412, 2405, 2414, 86, 2409, 2410, 2415, 86,
+ 2416, 86, 2417, 86, 2418, 86, 86, 2419, 2413, 86,
+ 86, 2422, 86, 2423, 2421, 86, 86, 86, 86, 2428,
+ 86, 86, 2430, 86, 2420, 2431, 86, 2424, 2425, 86,
+
+ 86, 86, 86, 86, 2427, 86, 2434, 2426, 86, 86,
+ 2429, 2432, 86, 2433, 2435, 2440, 86, 2437, 2441, 86,
+ 86, 86, 86, 2436, 86, 2438, 86, 167, 2439, 86,
+ 2448, 86, 86, 86, 2444, 2449, 86, 86, 2446, 2447,
+ 2443, 86, 86, 3136, 2455, 2442, 2445, 2450, 2451, 2452,
+ 86, 86, 86, 2459, 86, 2457, 2456, 2458, 2453, 86,
+ 2454, 2460, 86, 86, 2461, 86, 2462, 86, 2463, 2464,
+ 2465, 86, 86, 86, 86, 86, 86, 86, 86, 86,
+ 86, 2474, 86, 86, 86, 2496, 2472, 2467, 86, 2478,
+ 2466, 86, 2469, 2468, 2479, 86, 2471, 2470, 2473, 86,
+
+ 2475, 2476, 2477, 86, 2480, 2482, 86, 86, 2481, 2484,
+ 86, 86, 2483, 86, 86, 86, 86, 86, 86, 86,
+ 2487, 2493, 86, 2494, 86, 2485, 2495, 86, 86, 2486,
+ 2488, 86, 2489, 2491, 2490, 86, 2500, 2492, 2499, 86,
+ 86, 86, 86, 2504, 2505, 86, 2497, 2503, 86, 86,
+ 2498, 2506, 2507, 86, 86, 86, 86, 86, 86, 2501,
+ 2502, 86, 86, 2509, 86, 86, 2513, 2508, 2511, 86,
+ 2518, 86, 2517, 86, 2510, 2521, 86, 2512, 2514, 86,
+ 2519, 2515, 86, 2522, 2516, 86, 2525, 86, 86, 2524,
+ 86, 2520, 86, 86, 2530, 86, 86, 2523, 86, 86,
+
+ 86, 2526, 86, 2533, 86, 2527, 86, 2532, 2531, 2534,
+ 86, 2537, 2528, 2529, 2536, 86, 86, 86, 2539, 2535,
+ 2541, 86, 86, 2542, 86, 2538, 2543, 2544, 86, 2540,
+ 86, 86, 86, 2549, 86, 86, 86, 2545, 2551, 86,
+ 2547, 2548, 86, 2546, 86, 86, 86, 2552, 86, 2553,
+ 2550, 2555, 86, 86, 86, 2557, 2556, 86, 86, 2554,
+ 86, 2558, 2559, 2561, 86, 2562, 2564, 86, 2560, 2565,
+ 86, 2567, 2563, 2566, 167, 86, 86, 86, 2571, 3136,
+ 2568, 86, 86, 2573, 86, 86, 2572, 86, 2576, 86,
+ 2577, 86, 2575, 86, 2569, 2570, 2579, 86, 86, 2581,
+
+ 2574, 2580, 86, 86, 2582, 86, 2578, 2583, 2584, 86,
+ 2586, 86, 86, 86, 86, 2587, 86, 2588, 86, 86,
+ 86, 2593, 2589, 2585, 2594, 2595, 2591, 86, 86, 2590,
+ 86, 86, 86, 2597, 86, 2598, 86, 86, 86, 86,
+ 2592, 2600, 2601, 2596, 86, 86, 2599, 86, 2606, 86,
+ 86, 86, 2603, 2604, 2605, 86, 2602, 86, 2607, 2611,
+ 86, 86, 86, 2615, 86, 86, 86, 86, 86, 2608,
+ 2613, 2609, 2619, 86, 2610, 3136, 2612, 2614, 2620, 86,
+ 2622, 2617, 2623, 2624, 2616, 86, 86, 2618, 86, 86,
+ 2625, 86, 86, 2626, 86, 86, 86, 2627, 2621, 86,
+
+ 2630, 86, 86, 2628, 86, 2633, 2635, 86, 2629, 2636,
+ 86, 2637, 86, 2631, 86, 86, 2632, 86, 2638, 86,
+ 2634, 86, 2639, 2640, 86, 86, 2642, 2644, 86, 2647,
+ 86, 2643, 2645, 86, 86, 2641, 2648, 86, 2649, 86,
+ 86, 86, 86, 2650, 86, 2646, 86, 2651, 2652, 2654,
+ 86, 86, 2655, 2656, 86, 2658, 86, 2657, 86, 2659,
+ 2662, 2653, 2660, 2663, 86, 86, 86, 86, 2665, 2664,
+ 86, 86, 2661, 2666, 86, 86, 2670, 2671, 86, 86,
+ 86, 2674, 86, 86, 2673, 86, 86, 86, 86, 2677,
+ 2667, 2668, 2675, 2676, 86, 2669, 86, 2679, 86, 2680,
+
+ 86, 2683, 86, 2672, 2678, 2681, 2682, 86, 2687, 86,
+ 86, 86, 86, 86, 86, 2689, 86, 2710, 2684, 86,
+ 3136, 2686, 2685, 2690, 2688, 2691, 86, 2693, 2694, 2697,
+ 86, 86, 2692, 2695, 86, 2696, 86, 2698, 86, 2699,
+ 86, 2700, 86, 2701, 86, 86, 2704, 2702, 86, 2703,
+ 86, 86, 86, 2709, 86, 2712, 86, 2706, 86, 2714,
+ 86, 86, 2716, 86, 86, 2713, 2715, 86, 86, 2711,
+ 2707, 2705, 2708, 2717, 86, 3136, 2718, 2719, 2721, 86,
+ 86, 86, 86, 2725, 2722, 86, 86, 86, 2726, 86,
+ 2723, 2729, 2720, 86, 86, 2728, 86, 2724, 2727, 2730,
+
+ 2731, 86, 2732, 86, 86, 86, 86, 2733, 86, 86,
+ 86, 2741, 86, 86, 2736, 86, 3136, 86, 2737, 2739,
+ 2744, 2734, 2735, 86, 2742, 86, 2746, 86, 2745, 2740,
+ 86, 2751, 86, 2738, 2743, 2748, 2747, 86, 2749, 2752,
+ 86, 2750, 2753, 86, 86, 86, 86, 86, 2758, 86,
+ 86, 2757, 86, 2754, 86, 2759, 86, 2760, 2761, 86,
+ 86, 86, 86, 86, 86, 2755, 2756, 2762, 2763, 2765,
+ 2767, 2769, 86, 86, 86, 86, 86, 2770, 86, 2766,
+ 2771, 2764, 2774, 2772, 86, 2773, 86, 2768, 86, 2775,
+ 2777, 86, 86, 86, 86, 86, 86, 2780, 86, 86,
+
+ 86, 2778, 86, 2781, 86, 2779, 2776, 2784, 3136, 2785,
+ 86, 2782, 2787, 86, 86, 2783, 2789, 86, 86, 2788,
+ 2790, 86, 86, 2791, 2786, 2792, 86, 86, 2797, 86,
+ 2793, 86, 2796, 2799, 2794, 86, 86, 2801, 2795, 86,
+ 86, 2804, 86, 86, 2806, 86, 86, 86, 2809, 86,
+ 86, 2798, 2807, 2802, 2800, 2810, 86, 2812, 86, 2803,
+ 86, 86, 86, 2805, 86, 86, 2811, 2808, 2817, 86,
+ 2815, 2814, 2821, 86, 86, 86, 86, 2813, 2822, 86,
+ 2823, 2819, 2816, 2818, 86, 2820, 2826, 2829, 2824, 2827,
+ 86, 86, 86, 86, 2828, 86, 86, 2832, 86, 86,
+
+ 86, 2831, 2835, 86, 2825, 2833, 2838, 86, 86, 86,
+ 86, 86, 86, 2830, 2843, 86, 86, 86, 2834, 86,
+ 2836, 2837, 2839, 2846, 86, 2842, 2845, 2840, 2847, 86,
+ 2851, 86, 86, 2849, 86, 2844, 2841, 2848, 86, 2850,
+ 2852, 86, 2853, 86, 86, 2855, 86, 86, 86, 2854,
+ 86, 86, 2860, 2861, 86, 86, 86, 2856, 2867, 86,
+ 2865, 86, 2866, 86, 86, 2864, 86, 86, 86, 2857,
+ 2858, 86, 2859, 2862, 3136, 2863, 2870, 2871, 86, 2872,
+ 86, 2874, 86, 86, 2875, 86, 2868, 2869, 2873, 86,
+ 86, 2878, 86, 2877, 2876, 86, 86, 86, 86, 86,
+
+ 2879, 86, 2882, 86, 86, 2884, 86, 86, 86, 2880,
+ 2883, 2885, 86, 86, 86, 86, 2881, 86, 86, 2894,
+ 2886, 2897, 2895, 2898, 2887, 2889, 2888, 86, 2890, 2893,
+ 2891, 2892, 86, 86, 86, 2896, 2901, 86, 2902, 86,
+ 86, 2904, 86, 2923, 2903, 86, 2900, 2905, 86, 2912,
+ 2906, 2907, 2899, 86, 2908, 2909, 86, 86, 2910, 2911,
+ 86, 86, 2913, 86, 86, 86, 86, 2919, 86, 86,
+ 86, 2918, 86, 86, 2914, 86, 2922, 2921, 2915, 3136,
+ 2916, 86, 86, 2927, 86, 2917, 2928, 86, 2924, 86,
+ 2926, 2929, 86, 2925, 2920, 86, 86, 2934, 2932, 2930,
+
+ 2931, 2933, 2935, 86, 2936, 86, 86, 86, 86, 86,
+ 86, 2944, 2940, 2941, 2943, 86, 86, 86, 2946, 86,
+ 2938, 2937, 2945, 2947, 86, 86, 86, 2939, 2942, 2971,
+ 2948, 2949, 86, 2950, 86, 2951, 86, 2952, 86, 2953,
+ 86, 2954, 86, 2955, 86, 2956, 86, 86, 2958, 86,
+ 86, 86, 86, 86, 86, 86, 2957, 2963, 86, 2959,
+ 86, 86, 86, 2960, 86, 2967, 86, 2966, 2964, 2969,
+ 86, 86, 2961, 2962, 2965, 2968, 86, 2973, 86, 2976,
+ 2970, 2975, 86, 86, 86, 86, 86, 86, 2978, 2974,
+ 86, 86, 2972, 2982, 86, 86, 2977, 86, 2985, 86,
+
+ 2983, 2987, 86, 2979, 2980, 86, 2981, 2988, 86, 2984,
+ 2986, 2989, 86, 86, 2991, 86, 86, 2992, 86, 86,
+ 86, 86, 2990, 2998, 2997, 86, 86, 3000, 86, 86,
+ 2994, 2996, 86, 86, 86, 2993, 86, 86, 86, 86,
+ 2999, 2995, 3001, 86, 86, 86, 3007, 3002, 86, 3004,
+ 3003, 3006, 86, 3011, 3015, 3008, 3014, 86, 3010, 3005,
+ 3009, 3016, 86, 86, 3013, 86, 3012, 86, 3017, 3018,
+ 86, 3019, 86, 86, 86, 86, 3022, 86, 86, 3023,
+ 3024, 3027, 3020, 86, 86, 3021, 86, 86, 86, 3032,
+ 86, 3030, 86, 3026, 86, 86, 3029, 3028, 3035, 86,
+
+ 86, 86, 3025, 3038, 86, 86, 3039, 3033, 3031, 3040,
+ 3036, 86, 86, 3034, 3042, 3043, 86, 86, 3037, 86,
+ 86, 86, 3048, 86, 3047, 86, 3044, 3049, 86, 3045,
+ 3041, 86, 86, 86, 86, 86, 3046, 86, 3053, 86,
+ 3055, 86, 86, 86, 86, 86, 3050, 3052, 3060, 3061,
+ 86, 3051, 3054, 86, 3057, 3058, 3056, 3068, 3059, 3062,
+ 86, 3066, 86, 86, 86, 3063, 86, 3069, 3064, 3067,
+ 86, 86, 3065, 86, 86, 3070, 3071, 3074, 3072, 3075,
+ 86, 86, 86, 86, 3077, 86, 3076, 86, 86, 86,
+ 86, 3078, 3083, 3073, 86, 3080, 86, 86, 86, 86,
+
+ 3086, 3079, 3087, 86, 86, 86, 86, 86, 3081, 3082,
+ 3085, 3090, 86, 3084, 3088, 3091, 86, 3089, 86, 3094,
+ 3093, 3095, 86, 3092, 86, 3096, 86, 3098, 86, 3100,
+ 86, 3101, 86, 86, 86, 3105, 86, 3102, 3136, 86,
+ 3103, 3108, 86, 3099, 3106, 86, 86, 3107, 3097, 86,
+ 86, 86, 86, 3104, 86, 86, 3109, 3110, 86, 3112,
+ 3114, 86, 86, 3116, 86, 3111, 86, 3117, 86, 3120,
+ 3113, 3115, 3121, 86, 3118, 86, 86, 3124, 3125, 86,
+ 86, 3127, 86, 3119, 86, 3122, 86, 3126, 3128, 86,
+ 86, 3129, 86, 86, 3123, 3130, 3136, 3131, 3134, 86,
+
+ 3135, 86, 3136, 3136, 3136, 3132, 3136, 3136, 3136, 3136,
+ 3136, 3136, 3133, 47, 47, 47, 47, 47, 47, 47,
+ 52, 52, 52, 52, 52, 52, 52, 57, 57, 57,
+ 57, 57, 57, 57, 63, 63, 63, 63, 63, 63,
+ 63, 68, 68, 68, 68, 68, 68, 68, 74, 74,
+ 74, 74, 74, 74, 74, 80, 80, 80, 80, 80,
+ 80, 80, 89, 89, 3136, 89, 89, 89, 89, 157,
+ 157, 3136, 3136, 3136, 157, 157, 159, 159, 3136, 3136,
+ 159, 3136, 159, 161, 3136, 3136, 3136, 3136, 3136, 161,
+ 164, 164, 3136, 3136, 3136, 164, 164, 166, 3136, 3136,
+
+ 3136, 3136, 3136, 166, 168, 168, 3136, 168, 168, 168,
+ 168, 171, 3136, 3136, 3136, 3136, 3136, 171, 174, 174,
+ 3136, 3136, 3136, 174, 174, 90, 90, 3136, 90, 90,
+ 90, 90, 17, 3136, 3136, 3136, 3136, 3136, 3136, 3136,
+ 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136,
+ 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136,
+ 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136,
+ 3136, 3136, 3136
} ;
-static yyconst flex_int16_t yy_chk[5854] =
+static yyconst flex_int16_t yy_chk[6174] =
{ 0,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
3, 3, 3, 4, 4, 4, 5, 5, 6, 6,
- 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, 2991, 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, 999, 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,
- 35, 52, 36, 37, 37, 33, 35, 38, 37, 35,
- 42, 69, 38, 63, 63, 38, 35, 84, 37, 37,
- 40, 37, 38, 80, 40, 69, 38, 38, 39, 39,
-
- 126, 39, 41, 41, 40, 80, 126, 41, 40, 40,
- 39, 41, 58, 89, 58, 58, 39, 58, 66, 86,
- 66, 66, 68, 66, 68, 68, 71, 68, 71, 71,
- 66, 71, 72, 86, 127, 89, 72, 71, 74, 77,
- 74, 74, 77, 74, 78, 88, 127, 85, 78, 74,
- 74, 82, 83, 87, 82, 83, 85, 92, 93, 87,
- 91, 94, 99, 88, 88, 87, 91, 87, 83, 95,
- 96, 92, 94, 94, 161, 102, 99, 97, 93, 91,
- 94, 97, 161, 105, 98, 106, 101, 95, 96, 98,
- 100, 150, 101, 100, 102, 103, 100, 112, 104, 106,
-
- 103, 104, 105, 109, 107, 104, 108, 105, 107, 100,
- 100, 101, 110, 108, 111, 113, 109, 112, 114, 110,
- 103, 104, 114, 115, 117, 116, 119, 111, 118, 118,
- 116, 122, 120, 113, 116, 121, 120, 123, 132, 125,
- 124, 115, 129, 124, 117, 120, 119, 128, 128, 129,
- 121, 120, 125, 130, 124, 131, 123, 122, 124, 132,
- 129, 133, 134, 135, 134, 128, 136, 137, 128, 130,
- 138, 136, 140, 134, 131, 135, 139, 133, 148, 137,
- 157, 139, 142, 142, 144, 134, 140, 144, 138, 146,
- 154, 146, 146, 154, 146, 149, 149, 151, 157, 151,
-
- 151, 152, 151, 152, 152, 155, 152, 158, 156, 159,
- 155, 162, 163, 152, 156, 160, 164, 159, 165, 166,
- 168, 164, 158, 156, 159, 167, 160, 163, 166, 169,
- 162, 167, 167, 171, 169, 170, 170, 175, 165, 171,
- 173, 172, 179, 172, 173, 168, 172, 174, 174, 173,
- 176, 147, 177, 178, 173, 176, 175, 177, 180, 183,
- 173, 173, 179, 172, 180, 178, 181, 182, 184, 185,
- 181, 186, 182, 183, 187, 188, 189, 189, 191, 187,
- 188, 185, 189, 184, 185, 190, 192, 180, 197, 186,
- 190, 193, 194, 194, 189, 195, 189, 193, 191, 196,
-
- 198, 195, 192, 199, 200, 196, 198, 195, 197, 199,
- 201, 206, 202, 203, 204, 205, 201, 202, 199, 203,
- 204, 207, 205, 208, 206, 200, 209, 207, 210, 211,
- 213, 212, 209, 214, 215, 213, 216, 211, 217, 220,
- 218, 222, 214, 208, 212, 218, 218, 221, 219, 215,
- 210, 221, 216, 219, 223, 224, 225, 220, 217, 226,
- 223, 227, 225, 222, 229, 228, 227, 228, 230, 233,
- 231, 232, 234, 224, 224, 230, 231, 232, 234, 226,
- 235, 236, 242, 229, 237, 237, 238, 238, 233, 243,
- 239, 240, 235, 245, 243, 236, 239, 240, 241, 244,
-
- 241, 246, 247, 248, 249, 242, 255, 250, 248, 246,
- 251, 244, 245, 250, 239, 252, 251, 241, 253, 254,
- 252, 255, 247, 253, 256, 254, 257, 249, 258, 259,
- 260, 262, 266, 261, 262, 264, 264, 259, 256, 261,
- 269, 263, 258, 263, 257, 265, 267, 267, 265, 270,
- 266, 268, 268, 275, 271, 260, 269, 271, 272, 273,
- 274, 285, 272, 276, 270, 278, 274, 275, 273, 276,
- 277, 278, 277, 279, 280, 280, 281, 279, 282, 283,
- 284, 281, 285, 286, 282, 287, 287, 288, 289, 290,
- 288, 291, 293, 290, 279, 295, 286, 296, 284, 283,
-
- 292, 292, 294, 296, 298, 294, 289, 295, 297, 291,
- 293, 297, 300, 301, 302, 303, 298, 305, 303, 302,
- 303, 300, 294, 299, 304, 306, 307, 304, 307, 307,
- 305, 301, 299, 308, 310, 299, 303, 306, 308, 308,
- 299, 299, 299, 299, 309, 311, 312, 309, 313, 314,
- 314, 310, 317, 315, 310, 312, 319, 313, 315, 318,
- 311, 316, 316, 320, 318, 321, 322, 317, 319, 323,
- 326, 324, 324, 327, 324, 323, 335, 335, 327, 329,
- 328, 322, 320, 324, 329, 321, 328, 330, 331, 332,
- 326, 331, 330, 331, 333, 334, 336, 333, 330, 337,
-
- 337, 338, 336, 332, 334, 339, 338, 343, 339, 341,
- 333, 342, 373, 333, 339, 333, 344, 347, 339, 345,
- 347, 348, 343, 350, 373, 351, 339, 340, 340, 341,
- 340, 344, 342, 345, 351, 348, 347, 354, 350, 352,
- 355, 353, 356, 340, 352, 352, 340, 353, 340, 358,
- 340, 349, 357, 349, 349, 360, 359, 356, 354, 355,
- 361, 357, 359, 349, 362, 349, 349, 349, 358, 363,
- 349, 364, 365, 366, 367, 363, 369, 368, 362, 363,
- 361, 360, 368, 372, 370, 371, 371, 374, 376, 367,
- 370, 369, 365, 366, 364, 377, 375, 379, 379, 378,
-
- 379, 374, 375, 372, 378, 380, 381, 382, 387, 387,
- 383, 377, 384, 376, 384, 385, 386, 388, 389, 385,
- 386, 390, 381, 382, 383, 380, 391, 392, 145, 393,
- 394, 399, 384, 389, 397, 386, 388, 390, 393, 394,
- 395, 392, 396, 397, 391, 395, 396, 398, 400, 393,
- 403, 393, 399, 398, 400, 401, 402, 404, 404, 401,
- 405, 402, 406, 406, 407, 408, 409, 409, 410, 407,
- 403, 411, 412, 405, 410, 411, 413, 414, 408, 415,
- 416, 416, 414, 417, 415, 418, 419, 412, 420, 416,
- 421, 423, 422, 421, 426, 417, 422, 413, 424, 424,
-
- 420, 425, 428, 423, 419, 418, 425, 427, 427, 430,
- 430, 431, 432, 433, 434, 426, 435, 437, 438, 439,
- 432, 440, 433, 442, 428, 450, 443, 440, 435, 442,
- 441, 443, 431, 439, 434, 437, 444, 437, 438, 441,
- 445, 446, 447, 448, 446, 450, 449, 452, 445, 453,
- 444, 445, 449, 452, 451, 454, 447, 451, 448, 455,
- 454, 456, 457, 453, 458, 459, 457, 460, 461, 458,
- 462, 452, 460, 463, 466, 468, 469, 467, 476, 468,
- 459, 455, 456, 470, 461, 473, 463, 476, 143, 462,
- 464, 464, 467, 471, 466, 469, 464, 471, 464, 470,
-
- 473, 475, 472, 474, 464, 478, 464, 472, 474, 464,
- 464, 472, 477, 480, 481, 483, 464, 475, 477, 479,
- 485, 478, 479, 477, 482, 482, 484, 484, 487, 486,
- 488, 489, 490, 491, 481, 485, 480, 490, 492, 493,
- 483, 486, 491, 487, 494, 501, 496, 497, 499, 488,
- 494, 497, 498, 489, 493, 496, 500, 492, 498, 502,
- 499, 503, 504, 505, 501, 506, 507, 505, 507, 508,
- 511, 500, 513, 502, 509, 509, 503, 508, 506, 510,
- 504, 512, 511, 514, 513, 510, 514, 512, 515, 516,
- 517, 518, 519, 520, 518, 517, 638, 522, 523, 523,
-
- 521, 519, 515, 529, 516, 521, 521, 638, 519, 520,
- 522, 519, 524, 524, 525, 526, 526, 527, 527, 528,
- 525, 532, 531, 530, 529, 528, 530, 531, 533, 534,
- 535, 536, 534, 537, 538, 535, 533, 539, 538, 541,
- 532, 540, 542, 539, 543, 540, 545, 542, 546, 544,
- 548, 545, 537, 547, 536, 544, 547, 541, 549, 549,
- 550, 547, 546, 553, 543, 547, 551, 552, 548, 554,
- 556, 551, 552, 557, 563, 559, 556, 553, 550, 559,
- 558, 560, 557, 558, 554, 561, 560, 562, 561, 564,
- 563, 565, 562, 566, 567, 568, 569, 569, 565, 567,
-
- 570, 559, 571, 572, 573, 574, 566, 564, 575, 570,
- 576, 695, 581, 573, 575, 568, 576, 574, 582, 572,
- 577, 571, 695, 577, 578, 578, 579, 578, 580, 579,
- 581, 583, 582, 580, 584, 585, 591, 583, 589, 584,
- 586, 585, 587, 586, 588, 590, 592, 587, 593, 588,
- 588, 589, 592, 594, 595, 591, 591, 596, 590, 595,
- 597, 597, 594, 598, 601, 599, 600, 593, 599, 602,
- 598, 605, 600, 603, 602, 607, 601, 596, 603, 603,
- 604, 604, 606, 599, 606, 608, 609, 608, 610, 611,
- 612, 613, 614, 615, 607, 617, 605, 615, 614, 616,
-
- 618, 619, 620, 622, 609, 621, 610, 611, 616, 612,
- 617, 613, 624, 625, 623, 618, 626, 621, 622, 619,
- 623, 620, 627, 628, 629, 625, 624, 628, 630, 631,
- 632, 633, 634, 635, 635, 626, 636, 637, 639, 641,
- 636, 627, 629, 642, 630, 141, 634, 631, 632, 632,
- 633, 643, 639, 640, 644, 641, 637, 649, 640, 646,
- 645, 644, 642, 647, 643, 645, 646, 648, 647, 650,
- 651, 652, 648, 653, 654, 649, 650, 656, 655, 651,
- 656, 658, 653, 655, 657, 652, 654, 659, 657, 660,
- 662, 661, 663, 663, 666, 658, 659, 664, 664, 665,
-
- 665, 668, 669, 666, 660, 661, 664, 670, 669, 671,
- 672, 662, 673, 671, 674, 675, 676, 678, 677, 679,
- 668, 675, 672, 680, 676, 677, 714, 670, 714, 681,
- 683, 689, 674, 686, 681, 678, 690, 673, 681, 691,
- 689, 681, 690, 680, 679, 683, 693, 693, 681, 692,
- 686, 681, 696, 692, 697, 691, 694, 694, 698, 699,
- 704, 701, 709, 702, 703, 699, 701, 717, 697, 705,
- 696, 717, 705, 706, 706, 708, 708, 709, 698, 700,
- 700, 700, 703, 700, 702, 704, 700, 707, 710, 710,
- 711, 700, 716, 712, 707, 711, 712, 700, 700, 713,
-
- 715, 718, 720, 719, 713, 721, 721, 725, 722, 727,
- 720, 716, 715, 723, 724, 724, 726, 749, 728, 730,
- 730, 718, 719, 722, 728, 725, 749, 723, 726, 729,
- 731, 727, 733, 734, 729, 731, 731, 733, 735, 734,
- 736, 737, 739, 738, 735, 736, 738, 737, 739, 740,
- 741, 741, 742, 742, 743, 744, 745, 740, 746, 747,
- 750, 745, 743, 748, 748, 746, 751, 752, 750, 756,
- 754, 755, 751, 744, 756, 757, 759, 760, 747, 754,
- 755, 759, 758, 761, 757, 758, 752, 762, 763, 764,
- 766, 760, 765, 765, 764, 764, 762, 767, 768, 769,
-
- 770, 763, 772, 770, 772, 766, 774, 768, 761, 773,
- 773, 770, 775, 776, 779, 777, 767, 775, 778, 780,
- 781, 782, 783, 769, 784, 786, 783, 774, 785, 781,
- 789, 786, 787, 788, 776, 777, 779, 790, 778, 780,
- 791, 787, 784, 792, 782, 788, 791, 785, 793, 789,
- 795, 790, 796, 793, 794, 794, 797, 792, 798, 799,
- 800, 796, 801, 802, 804, 803, 798, 805, 806, 807,
- 795, 803, 810, 805, 808, 807, 797, 813, 804, 799,
- 808, 801, 800, 802, 811, 809, 818, 812, 806, 809,
- 817, 810, 812, 814, 814, 815, 811, 816, 813, 818,
-
- 816, 815, 820, 819, 811, 821, 821, 822, 817, 819,
- 823, 824, 824, 825, 826, 823, 827, 827, 826, 828,
- 829, 830, 820, 831, 833, 822, 830, 836, 825, 834,
- 837, 839, 839, 840, 841, 842, 842, 840, 845, 843,
- 829, 828, 831, 834, 846, 70, 844, 836, 833, 841,
- 844, 837, 838, 845, 847, 838, 848, 838, 846, 847,
- 849, 838, 850, 838, 843, 849, 849, 851, 838, 852,
- 848, 851, 853, 838, 854, 855, 850, 853, 856, 854,
- 857, 865, 858, 864, 852, 859, 860, 853, 858, 855,
- 866, 859, 860, 862, 857, 861, 861, 863, 862, 856,
-
- 865, 868, 869, 863, 870, 864, 873, 869, 866, 867,
- 867, 873, 871, 868, 874, 867, 875, 867, 870, 872,
- 872, 876, 874, 867, 871, 877, 878, 878, 867, 867,
- 875, 881, 879, 883, 884, 867, 879, 881, 882, 885,
- 876, 882, 887, 886, 877, 885, 888, 884, 886, 889,
- 890, 891, 883, 892, 893, 888, 895, 891, 889, 894,
- 896, 887, 892, 897, 894, 898, 890, 902, 907, 899,
- 900, 905, 908, 893, 896, 901, 895, 898, 899, 900,
- 903, 901, 907, 897, 902, 909, 903, 905, 910, 911,
- 912, 913, 908, 914, 917, 921, 913, 918, 914, 917,
-
- 919, 919, 910, 920, 909, 912, 918, 911, 921, 920,
- 923, 924, 928, 927, 925, 925, 924, 924, 925, 926,
- 929, 930, 926, 932, 931, 933, 923, 927, 935, 932,
- 934, 940, 928, 937, 930, 936, 934, 941, 929, 931,
- 936, 939, 941, 935, 939, 933, 942, 937, 943, 944,
- 945, 942, 940, 946, 944, 945, 948, 949, 952, 952,
- 950, 951, 948, 953, 943, 946, 950, 951, 954, 956,
- 956, 955, 953, 949, 955, 957, 958, 959, 960, 961,
- 964, 960, 962, 963, 967, 964, 954, 969, 962, 963,
- 967, 965, 961, 957, 966, 958, 965, 959, 970, 966,
-
- 971, 974, 972, 973, 973, 969, 971, 972, 975, 976,
- 974, 977, 978, 979, 977, 978, 980, 975, 970, 981,
- 982, 985, 983, 984, 979, 986, 988, 976, 983, 984,
- 986, 981, 987, 987, 980, 989, 985, 991, 990, 982,
- 992, 991, 993, 994, 995, 988, 997, 998, 998, 989,
- 990, 993, 1000, 1001, 1003, 1002, 1005, 1005, 992, 1003,
- 1006, 1004, 994, 1021, 1021, 997, 1000, 1002, 1001, 995,
- 1004, 1007, 1008, 1010, 1009, 1010, 1011, 1007, 1008, 1009,
- 1006, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1014,
- 1019, 64, 1022, 1023, 1017, 1024, 1012, 1013, 1025, 1026,
-
- 1015, 1031, 1027, 1018, 1025, 1016, 1022, 1027, 1031, 1019,
- 1024, 1023, 1029, 1029, 1032, 1030, 1027, 1034, 1027, 1026,
- 1030, 1027, 1033, 1035, 1036, 1033, 1037, 1039, 1032, 1036,
- 1040, 1038, 1035, 1042, 1042, 1034, 1038, 1043, 1039, 1044,
- 1045, 1046, 1043, 1047, 1044, 1037, 1046, 1047, 1048, 1040,
- 1049, 1050, 1051, 1053, 1054, 1052, 1056, 1048, 1055, 1057,
- 1045, 1054, 1060, 1058, 1061, 1049, 1050, 1052, 1053, 1062,
- 1055, 1051, 1059, 1063, 1066, 1056, 1068, 1060, 1059, 1065,
- 1057, 1058, 1063, 1067, 1061, 1065, 1070, 1069, 1066, 1062,
- 1072, 1067, 1069, 1073, 1071, 1074, 1068, 1078, 1070, 1071,
-
- 1071, 1075, 1075, 1077, 59, 1079, 1078, 1073, 1074, 1072,
- 1076, 1079, 1080, 1080, 1083, 1076, 1077, 1081, 1076, 1076,
- 1083, 1082, 1081, 1076, 1086, 1086, 1084, 1085, 1087, 1076,
- 1082, 1084, 1085, 1076, 1088, 1088, 1089, 1090, 1091, 1089,
- 1093, 1089, 1092, 1094, 1095, 1096, 1097, 1098, 1094, 1087,
- 1099, 1092, 1097, 1098, 1108, 1099, 1091, 1090, 1095, 1101,
- 1093, 1100, 1103, 1096, 1103, 1100, 1102, 1102, 1101, 1104,
- 1106, 1107, 1108, 1101, 1106, 1101, 1109, 1101, 1110, 1101,
- 1104, 1111, 1112, 1110, 1110, 1109, 1107, 1112, 1113, 1114,
- 1115, 1116, 1117, 1118, 1119, 1119, 1120, 1121, 1114, 1118,
-
- 1122, 1123, 1113, 1111, 1120, 1122, 1117, 1124, 1125, 1115,
- 1116, 1121, 1126, 1127, 1129, 1123, 1124, 1135, 1127, 1128,
- 1128, 1130, 1130, 1131, 1133, 1131, 1125, 1133, 1134, 1129,
- 1136, 1137, 1137, 1134, 1138, 1142, 1135, 1126, 1143, 1136,
- 1139, 1139, 1140, 1140, 1141, 1144, 1144, 1145, 1146, 1141,
- 1147, 1146, 1148, 1149, 1138, 1151, 1142, 1148, 1150, 1143,
- 1150, 1153, 1149, 1154, 1153, 1162, 1155, 1145, 1157, 1156,
- 1147, 1155, 1158, 1151, 1156, 1159, 1157, 1158, 1154, 1161,
- 1159, 1160, 1160, 1162, 1161, 1163, 1164, 1165, 1167, 1168,
- 1170, 1163, 1169, 1164, 1167, 1168, 1170, 1169, 1171, 1172,
-
- 1165, 1173, 1174, 1174, 1175, 1177, 1178, 1171, 1179, 1180,
- 1181, 1183, 1173, 1184, 1179, 1180, 1181, 1183, 1172, 1185,
- 1186, 1187, 1188, 1190, 1175, 1177, 1191, 1184, 1192, 1178,
- 1189, 1189, 1186, 1184, 1195, 1187, 1193, 1194, 1194, 1185,
- 1188, 1193, 1196, 1190, 1198, 54, 1192, 1196, 1199, 1200,
- 1201, 1191, 1202, 1199, 1199, 1203, 1204, 1195, 1205, 1201,
- 1202, 1212, 1207, 1198, 1207, 1208, 1209, 1200, 1213, 1203,
- 1206, 1204, 1209, 1205, 1211, 1206, 1205, 1210, 1206, 1208,
- 1212, 1210, 1214, 1215, 1216, 1211, 1217, 1218, 1215, 1220,
- 1221, 1217, 1222, 1224, 1213, 1223, 1223, 1224, 1225, 1226,
-
- 1214, 1228, 1216, 1220, 1229, 1227, 1230, 1218, 1221, 1231,
- 1222, 1227, 1232, 1228, 1233, 1242, 1225, 1234, 1226, 1235,
- 1230, 1237, 1234, 1229, 1231, 1236, 1235, 1232, 1238, 1240,
- 1236, 1239, 1239, 1233, 1241, 1244, 1242, 1238, 1243, 1237,
- 1241, 1244, 1245, 1243, 1240, 1246, 1246, 1251, 1245, 1247,
- 1247, 1249, 1249, 1250, 1252, 1253, 1251, 1250, 1254, 1255,
- 1256, 1256, 1257, 1258, 1260, 1259, 1255, 1261, 1266, 1253,
- 1259, 1258, 1252, 1254, 1262, 1264, 1265, 1265, 1260, 1262,
- 1262, 1267, 1257, 1263, 1268, 1269, 1261, 1266, 1263, 1263,
- 1269, 1270, 1271, 1268, 1274, 1264, 1272, 1273, 1275, 1274,
-
- 1267, 1276, 1277, 1273, 1280, 1278, 1281, 1276, 1282, 1279,
- 1270, 1278, 1271, 1283, 1272, 1279, 1284, 1285, 1286, 1287,
- 1287, 1277, 1289, 1280, 1275, 1281, 1288, 1282, 1293, 1288,
- 1284, 1294, 1283, 1286, 1289, 1290, 1290, 1291, 1285, 1292,
- 1294, 1293, 1291, 1292, 1295, 1296, 1299, 1296, 1298, 1300,
- 1301, 1296, 1305, 1298, 1302, 1302, 1304, 1295, 1303, 1306,
- 1307, 1299, 1304, 1303, 1296, 1307, 1301, 1305, 1310, 1300,
- 1308, 1309, 1306, 1311, 1308, 1309, 1312, 1313, 1314, 1314,
- 1316, 1318, 1319, 1313, 1320, 1320, 1321, 1319, 1310, 1322,
- 1328, 1311, 1321, 1324, 1324, 1329, 1312, 1326, 1316, 1332,
-
- 1326, 1333, 1318, 1327, 1327, 1331, 1328, 1335, 1331, 1322,
- 1333, 1329, 1334, 1334, 1336, 1337, 1338, 1339, 1341, 1332,
- 1343, 1338, 1335, 1340, 1340, 1342, 1344, 1344, 1345, 1346,
- 1353, 1339, 1347, 1348, 1337, 1336, 1341, 1347, 1349, 1349,
- 1342, 1351, 1345, 1352, 1352, 1343, 1350, 1346, 1348, 1354,
- 1350, 1355, 1353, 1356, 1357, 1355, 1359, 1359, 1360, 1357,
- 1354, 1351, 1362, 1361, 1363, 1364, 1365, 1365, 1366, 1367,
- 1369, 1368, 1356, 1366, 1371, 1370, 1360, 1361, 1363, 1369,
- 1370, 1362, 1362, 1372, 1375, 1372, 1378, 1373, 1380, 1367,
- 1364, 1368, 1373, 1374, 1371, 1376, 1379, 1379, 1383, 1374,
-
- 1378, 1376, 1381, 1383, 1375, 1384, 1387, 1380, 1381, 1385,
- 1385, 1386, 1386, 1388, 1390, 1389, 1392, 1390, 1391, 1391,
- 1387, 1393, 1399, 1400, 1403, 1403, 1400, 1395, 1392, 1384,
- 1389, 1388, 1394, 1395, 1396, 1394, 1397, 1398, 1394, 1396,
- 1401, 1393, 1398, 1402, 1407, 1397, 1401, 1399, 1402, 1405,
- 1394, 1404, 1404, 1406, 1408, 1405, 1409, 1407, 1406, 1410,
- 1411, 1412, 1413, 1411, 1414, 1415, 1416, 1412, 1413, 1414,
- 1420, 1415, 1408, 1417, 1421, 1409, 1418, 1418, 1417, 1410,
- 1419, 1422, 1423, 1424, 1427, 1419, 1425, 1426, 1420, 1416,
- 1427, 1428, 1429, 1430, 1421, 1431, 1423, 1424, 1425, 1434,
-
- 1426, 1422, 1433, 1433, 1435, 1436, 1436, 1430, 1437, 1435,
- 1438, 1428, 1429, 1439, 1440, 1442, 1431, 1441, 1443, 1434,
- 1445, 1449, 1444, 1437, 1438, 1443, 1441, 1447, 1451, 1451,
- 1442, 1444, 1440, 1453, 1444, 1450, 1445, 1439, 1450, 1452,
- 1452, 1454, 1447, 1456, 1456, 1453, 1449, 1447, 1455, 1457,
- 1458, 1455, 1459, 1460, 1461, 1462, 1463, 1459, 1460, 1454,
- 1464, 1466, 1457, 1465, 1469, 1463, 1468, 1468, 1467, 1458,
- 1466, 1462, 1465, 1461, 1467, 1465, 1470, 1471, 1472, 1464,
- 1473, 1474, 1476, 1477, 1469, 1478, 1478, 1479, 1480, 1470,
- 1482, 1482, 1472, 1474, 1481, 1471, 1473, 1480, 1484, 1481,
-
- 1483, 1477, 1485, 1479, 1486, 1482, 1489, 1476, 1487, 1483,
- 1490, 1491, 1483, 1487, 1487, 1493, 1484, 1494, 53, 1492,
- 1489, 1493, 1486, 1485, 1492, 1490, 1495, 1495, 1496, 1501,
- 1502, 1497, 1498, 1491, 1496, 1494, 1497, 1499, 1498, 1503,
- 1504, 1510, 1506, 1499, 1502, 1503, 1508, 1505, 1506, 1501,
- 1505, 1511, 1513, 1504, 1508, 1512, 1505, 1522, 1514, 1515,
- 1510, 1513, 1516, 1512, 1517, 1518, 1518, 1519, 1520, 1521,
- 1511, 1514, 1515, 1519, 1520, 1523, 1516, 1522, 1517, 1524,
- 1526, 1525, 1521, 1527, 1528, 1529, 1526, 1518, 1531, 1531,
- 1532, 1533, 1534, 1523, 1525, 1533, 1535, 1534, 1524, 1536,
-
- 1528, 1535, 1537, 1529, 1536, 1527, 1538, 1540, 1541, 1541,
- 1532, 1537, 1542, 1543, 1544, 1545, 1545, 1547, 1546, 1554,
- 1550, 1551, 1540, 1548, 1547, 1543, 1549, 1561, 1552, 1538,
- 1553, 1542, 1546, 1544, 1552, 1548, 1561, 1554, 1549, 1550,
- 1555, 1551, 1553, 1556, 1556, 1557, 1555, 1560, 1557, 1558,
- 1558, 1562, 1560, 1563, 1563, 1564, 1565, 1562, 1565, 1566,
- 1567, 1568, 1566, 1569, 1570, 1571, 1572, 1564, 1575, 1576,
- 1571, 1574, 1573, 1575, 1577, 1572, 1581, 1578, 1576, 1580,
- 1567, 1569, 1570, 1568, 1573, 1580, 1574, 1579, 1579, 1582,
- 1583, 1576, 1578, 1584, 1577, 1586, 1585, 1581, 1585, 1587,
-
- 1587, 1588, 1588, 1589, 1589, 1590, 1583, 1593, 1582, 1586,
- 1594, 1586, 1601, 1584, 1591, 1591, 1592, 1592, 1595, 1595,
- 1596, 1597, 1603, 1598, 1596, 1590, 1598, 1597, 1593, 1600,
- 1601, 1594, 1602, 1604, 1609, 1600, 1604, 1607, 1602, 1605,
- 1605, 1606, 1606, 1607, 1608, 1610, 1611, 1603, 1612, 1616,
- 1615, 1616, 1611, 1621, 1609, 1614, 1608, 1608, 1608, 1617,
- 1614, 1614, 1618, 1608, 1615, 1610, 1619, 1620, 1612, 1622,
- 1617, 1624, 1619, 1621, 1623, 1623, 1620, 1618, 1625, 1625,
- 1626, 1627, 1628, 1628, 1629, 1629, 1630, 1633, 1633, 1634,
- 1622, 1638, 1635, 1637, 1640, 1640, 1641, 1624, 1639, 1645,
-
- 1626, 1635, 1637, 1627, 1639, 1642, 1630, 1644, 1643, 1646,
- 1646, 1647, 1638, 1648, 1634, 1643, 1644, 1641, 1650, 1652,
- 1642, 1651, 1654, 1650, 1653, 1645, 1655, 1651, 1654, 1648,
- 1657, 1653, 1655, 1656, 1656, 1657, 1658, 1647, 1659, 1652,
- 1660, 1661, 1663, 1662, 1664, 1658, 1662, 1665, 1665, 1666,
- 1668, 1667, 1669, 1661, 1671, 1666, 1669, 1672, 1659, 1660,
- 1663, 1673, 1674, 1674, 1675, 1668, 1673, 1676, 1678, 1679,
- 1664, 1667, 1669, 1679, 1671, 1680, 1681, 1682, 1682, 1672,
- 1683, 1680, 1676, 1675, 1683, 1681, 1684, 1678, 1685, 1685,
- 1686, 1687, 1692, 1688, 1689, 1690, 1691, 1684, 1692, 1689,
-
- 1697, 1694, 1684, 1693, 1697, 1687, 1694, 1695, 1695, 1696,
- 1696, 1686, 1688, 1699, 1700, 1690, 1691, 1701, 1693, 1702,
- 1702, 1704, 1699, 1703, 1703, 1700, 1704, 1704, 1705, 1706,
- 1700, 1707, 1709, 1708, 1705, 1706, 1710, 1701, 1708, 1712,
- 1714, 1713, 1710, 1715, 1709, 1713, 1719, 1716, 1717, 1718,
- 1721, 1712, 1714, 1716, 1722, 1718, 1723, 1707, 1719, 1729,
- 1725, 1723, 1721, 1725, 1726, 1726, 1727, 1727, 1715, 1730,
- 1717, 1728, 1728, 1722, 1731, 1730, 1732, 1733, 1734, 1729,
- 1731, 1732, 1738, 1733, 1736, 1738, 1739, 1734, 1742, 1736,
- 1740, 1740, 1743, 1746, 1744, 1745, 1745, 1750, 1739, 1744,
-
- 1742, 1747, 1746, 1748, 1743, 1751, 1747, 1752, 1748, 1749,
- 1749, 1753, 1754, 1755, 1751, 1756, 1754, 1750, 1755, 1757,
- 1760, 1756, 1759, 1759, 1764, 1752, 1761, 1762, 1762, 1765,
- 1753, 1763, 1766, 1757, 1759, 1761, 1764, 1766, 1760, 1767,
- 1763, 1770, 1770, 1772, 1773, 1774, 1772, 1776, 1778, 1777,
- 1765, 1779, 1767, 1786, 1778, 1780, 1780, 1781, 1783, 1781,
- 1773, 1774, 1776, 1777, 1782, 1782, 1783, 1785, 1779, 1787,
- 1787, 1788, 1789, 1786, 1785, 1790, 1791, 1792, 1793, 1794,
- 1788, 1797, 1800, 1798, 1795, 1799, 1799, 1790, 1791, 1792,
- 1795, 1801, 1803, 1789, 1794, 1798, 1802, 1803, 1804, 1802,
-
- 1800, 1797, 1806, 1795, 1793, 1808, 1807, 1806, 1807, 1809,
- 1810, 1801, 1812, 1814, 1809, 1815, 1816, 1810, 1804, 1818,
- 1817, 1812, 1817, 1808, 1815, 1820, 1821, 1820, 1816, 1822,
- 1822, 1814, 1823, 1825, 1824, 1825, 1826, 1827, 1818, 1824,
- 1821, 1826, 1827, 1828, 1829, 1830, 1832, 1831, 1833, 1835,
- 1839, 1830, 1831, 1836, 1837, 1837, 1833, 1840, 1823, 1832,
- 1841, 1828, 1838, 1838, 1829, 1839, 1841, 1836, 1835, 1842,
- 1843, 1844, 1843, 1846, 1842, 1845, 1845, 1840, 1851, 1844,
- 1847, 1847, 1848, 1848, 1849, 1846, 1850, 1844, 1853, 1855,
- 1854, 1850, 1854, 1849, 1858, 1860, 1851, 1853, 1856, 1857,
-
- 1853, 1865, 1864, 1856, 1856, 1868, 1858, 1860, 1857, 1861,
- 1855, 1862, 1869, 1866, 1861, 1864, 1862, 1867, 1867, 1870,
- 1871, 1865, 1866, 1868, 1872, 1874, 1875, 1876, 1877, 1885,
- 1869, 1878, 1879, 1877, 1871, 1870, 1878, 1874, 1875, 1872,
- 1882, 1879, 1884, 1886, 1887, 1888, 1882, 1876, 1884, 1890,
- 1890, 1889, 1885, 1893, 1891, 1892, 1892, 1894, 1886, 1882,
- 1889, 1894, 1887, 1891, 1895, 1896, 1902, 48, 1897, 1895,
- 1888, 1898, 1893, 1897, 1897, 1899, 1900, 1898, 1896, 1900,
- 1901, 1899, 1905, 1905, 1906, 1906, 1902, 1907, 1901, 1908,
- 1908, 1909, 1909, 1910, 1911, 1912, 1907, 1913, 1923, 1906,
-
- 1920, 1912, 1913, 1914, 1914, 1910, 1915, 1915, 1916, 1917,
- 1906, 1924, 1911, 1916, 1919, 1917, 1924, 1921, 1919, 1925,
- 1920, 1921, 1926, 1923, 1927, 1928, 1930, 1930, 1929, 1927,
- 1931, 1932, 1934, 1933, 1931, 1935, 1936, 1926, 1933, 1938,
- 1937, 1939, 1925, 1928, 1929, 1937, 1932, 1935, 1940, 1940,
- 1943, 1944, 1938, 1942, 1945, 1936, 1946, 1947, 1934, 1939,
- 1948, 1942, 1949, 1950, 1952, 1953, 1953, 43, 1954, 1943,
- 1944, 1954, 1955, 1956, 1949, 1957, 1947, 1945, 1961, 1952,
- 1946, 1948, 1958, 1958, 1950, 1955, 1962, 1956, 1957, 1959,
- 1959, 1960, 1960, 1961, 1963, 1963, 1964, 1965, 1965, 1962,
-
- 1969, 1966, 1968, 1970, 1971, 1964, 1966, 1968, 1964, 1972,
- 1972, 1973, 1973, 1974, 1975, 1975, 1971, 1976, 1977, 1977,
- 1969, 1978, 1979, 1970, 1980, 1980, 1982, 1979, 1981, 1981,
- 1983, 1984, 1974, 1985, 1989, 1976, 1978, 1987, 1991, 1983,
- 1982, 14, 1987, 1988, 1988, 1984, 1990, 1990, 1992, 1994,
- 1994, 1996, 1985, 1989, 1992, 1993, 1991, 1997, 1993, 1995,
- 1995, 1998, 1999, 1999, 2001, 1994, 2002, 2003, 2006, 2004,
- 1996, 2007, 1997, 2004, 2005, 2005, 2008, 2010, 2010, 2011,
- 1998, 2012, 2003, 2013, 2001, 2014, 2007, 2006, 2012, 2002,
- 2015, 2008, 2016, 2017, 2017, 2018, 2019, 2013, 2019, 2011,
-
- 2022, 2023, 2020, 2014, 2018, 2020, 2023, 2025, 2015, 2024,
- 2026, 2028, 2022, 2027, 2024, 2029, 2028, 2035, 2016, 2031,
- 2020, 2032, 2020, 2026, 2031, 2033, 2032, 2034, 2039, 2036,
- 2040, 2037, 2025, 2034, 2027, 2036, 2037, 2038, 2035, 2042,
- 2033, 2029, 2038, 2040, 2041, 2043, 2044, 2041, 2042, 2045,
- 2046, 2047, 2051, 2039, 2043, 2044, 2048, 2047, 2045, 2049,
- 2053, 2055, 2048, 2049, 2046, 2054, 2054, 2055, 2057, 2053,
- 2056, 2056, 2051, 2059, 2063, 2060, 2061, 2061, 2062, 2056,
- 2065, 2066, 2068, 2063, 2067, 2072, 2074, 2074, 2057, 2059,
- 2057, 2060, 2065, 2062, 2068, 2070, 2071, 2066, 2070, 2067,
-
- 2073, 2071, 2075, 2075, 2079, 2072, 2077, 2077, 2078, 2079,
- 2080, 2078, 2073, 2081, 2082, 2082, 2080, 2083, 2085, 2081,
- 2084, 2084, 2086, 2087, 2088, 2088, 2091, 2095, 2090, 2091,
- 2085, 2083, 2090, 2092, 2092, 2093, 2086, 2094, 2098, 2096,
- 2093, 2101, 2087, 2096, 2097, 2097, 2094, 2095, 2100, 2102,
- 2103, 2098, 2104, 2100, 2105, 2106, 2104, 2107, 2109, 2108,
- 2106, 2101, 2111, 2107, 2103, 2108, 2112, 2113, 2115, 2102,
- 2115, 2112, 2114, 2113, 2105, 2118, 2109, 2121, 2111, 13,
- 2114, 2119, 2119, 2120, 2122, 2122, 2120, 2124, 2125, 2118,
- 2126, 2124, 2127, 2127, 2125, 2128, 2131, 2131, 2133, 2135,
-
- 2139, 2136, 2126, 2121, 2128, 2139, 2140, 2141, 2149, 2142,
- 2143, 2143, 2141, 2135, 2142, 2147, 2133, 2136, 2145, 2145,
- 2150, 2147, 2148, 2148, 2149, 2151, 2153, 2154, 2155, 2155,
- 2151, 2157, 2140, 2159, 2160, 2158, 2162, 2162, 2163, 2154,
- 2157, 2158, 2150, 2164, 2169, 2153, 2166, 2166, 2177, 2160,
- 2168, 2159, 2167, 2167, 2170, 2168, 2172, 2163, 2172, 2171,
- 2173, 2164, 2169, 2170, 2171, 2174, 2175, 2176, 2177, 2184,
- 2178, 2268, 2176, 2268, 2173, 2178, 2179, 2179, 2175, 2174,
- 2180, 2180, 2181, 2181, 2182, 2182, 2183, 2184, 2185, 2186,
- 2186, 2187, 2187, 2185, 2188, 2189, 2190, 2191, 2183, 2192,
-
- 2192, 2193, 2194, 2194, 2195, 2195, 2188, 2189, 2196, 2197,
- 2198, 2199, 2200, 2191, 2202, 2203, 2190, 2198, 2206, 2196,
- 2193, 2197, 2201, 2199, 2204, 2204, 2207, 2201, 2205, 2208,
- 2209, 2210, 2200, 2213, 2202, 2203, 2214, 2205, 2211, 2211,
- 2212, 2216, 2208, 2217, 2206, 2210, 2207, 2218, 2213, 2212,
- 2219, 2214, 2220, 2219, 2209, 2221, 2222, 2223, 2223, 2216,
- 2221, 2222, 2224, 2224, 2230, 2217, 2220, 2225, 2225, 2231,
- 2218, 2227, 2227, 2229, 2229, 2232, 2234, 2235, 2236, 2237,
- 2231, 2238, 2230, 2239, 2240, 2241, 2241, 2243, 2243, 2244,
- 2238, 2250, 2245, 0, 2232, 2235, 2234, 2246, 2246, 2237,
-
- 2236, 2245, 2240, 2239, 2248, 2249, 2249, 2251, 2252, 2250,
- 2254, 2244, 2253, 2248, 2255, 2252, 2257, 2256, 2258, 2258,
- 2259, 2259, 2261, 2260, 2262, 2251, 2263, 2253, 2254, 2260,
- 2265, 2264, 2255, 2256, 2266, 2257, 2264, 2267, 2273, 2262,
- 2261, 2276, 2267, 2269, 2269, 2263, 2270, 2275, 2270, 2277,
- 2265, 2271, 2271, 2278, 2266, 2280, 2275, 2273, 2279, 2281,
- 2276, 2277, 2284, 2279, 2285, 2286, 2286, 2285, 2287, 2288,
- 2289, 2289, 2290, 2278, 2292, 2280, 2290, 2293, 2281, 2294,
- 2294, 2293, 2284, 2287, 2295, 2297, 2298, 2288, 2301, 2292,
- 2299, 2299, 2302, 2305, 2303, 2304, 2304, 2295, 2303, 2307,
-
- 2301, 2302, 2306, 2306, 2307, 2297, 2298, 2308, 2309, 2310,
- 2311, 2311, 2305, 2316, 2316, 2317, 2308, 2318, 2318, 2319,
- 2320, 2310, 2321, 2324, 2309, 2322, 2323, 2323, 2326, 2326,
- 2329, 2321, 2319, 2320, 2322, 2329, 2330, 2317, 2324, 2331,
- 2332, 2330, 2333, 2334, 2336, 2332, 2335, 2614, 2338, 2339,
- 2333, 2340, 2336, 2331, 2339, 2335, 2340, 2341, 2342, 2342,
- 2343, 2343, 2334, 2338, 2344, 2345, 2346, 2347, 2348, 2614,
- 2345, 2344, 2341, 2349, 2348, 2350, 2350, 2351, 2349, 2353,
- 2353, 2352, 2354, 2354, 2346, 2347, 2352, 2357, 2358, 2358,
- 2359, 2360, 2351, 2359, 2361, 2363, 2360, 2360, 2362, 2361,
-
- 2357, 2363, 2364, 2362, 2365, 2366, 2364, 2367, 2368, 2365,
- 2369, 2370, 2372, 2375, 2366, 2369, 2368, 2372, 2373, 2377,
- 2379, 2373, 2367, 2370, 2377, 2375, 2378, 2380, 2381, 2387,
- 2382, 2378, 2383, 2383, 2384, 2388, 2393, 2381, 2379, 2382,
- 2380, 2389, 2391, 2384, 2390, 2390, 2395, 2392, 2387, 2394,
- 2394, 2393, 2397, 2399, 2400, 2388, 2392, 2402, 2400, 0,
- 2389, 2391, 2401, 2401, 2403, 2395, 2404, 2397, 2405, 2407,
- 2403, 2410, 2404, 2399, 2405, 2406, 2406, 2407, 2408, 2411,
- 2410, 2413, 2402, 2408, 2414, 2413, 2415, 2417, 2417, 2418,
- 2418, 2427, 2411, 2419, 2419, 2421, 2421, 2423, 2414, 2422,
-
- 2432, 2415, 2423, 2422, 2425, 2425, 2429, 2428, 2430, 2433,
- 2433, 2427, 2428, 2430, 2430, 2435, 2435, 2438, 2429, 2440,
- 2432, 2436, 2436, 2437, 2442, 2446, 2437, 2443, 2443, 2448,
- 2438, 2444, 2444, 2445, 2445, 2447, 2447, 2440, 2449, 2450,
- 2446, 2451, 2448, 2457, 2442, 2452, 2452, 2451, 2453, 2456,
- 2458, 2459, 2453, 2450, 2456, 2456, 2449, 2460, 2461, 2462,
- 2472, 2463, 2477, 2460, 2461, 2463, 2457, 2464, 2464, 2467,
- 2458, 2459, 2469, 2470, 2467, 2473, 2470, 2474, 2473, 2476,
- 2469, 2475, 2477, 2480, 2462, 2472, 2475, 2478, 2479, 2479,
- 2481, 2483, 2484, 2484, 2474, 2474, 2492, 2476, 2481, 2482,
-
- 2489, 2478, 2480, 2491, 2482, 2482, 2485, 2485, 2486, 2486,
- 2483, 2487, 2487, 2488, 2488, 2490, 2489, 2493, 2494, 2495,
- 2490, 0, 2492, 2491, 2497, 2497, 2493, 2498, 2499, 2502,
- 2498, 2501, 2501, 2503, 2503, 2504, 2502, 2511, 2494, 2495,
- 2504, 2506, 2506, 2507, 2508, 2509, 2499, 2512, 2512, 2514,
- 2515, 2517, 2507, 2508, 2509, 2511, 2513, 2516, 2514, 2518,
- 2513, 2522, 2516, 2516, 2517, 2515, 2522, 2526, 2518, 2523,
- 2523, 2525, 2525, 2527, 2528, 2530, 2531, 2534, 2535, 2536,
- 2537, 2526, 2539, 2541, 2530, 2543, 2537, 2535, 2531, 2559,
- 2543, 2544, 2528, 0, 2539, 2559, 2544, 2546, 2527, 2536,
-
- 2545, 2545, 2534, 2548, 2541, 2555, 2546, 2556, 2548, 2549,
- 2549, 2551, 2551, 2549, 2552, 2552, 2553, 2553, 2554, 2557,
- 2562, 2562, 2563, 2560, 2557, 2555, 2556, 2554, 2560, 2561,
- 2564, 2565, 2566, 2567, 2561, 2568, 2565, 2569, 2569, 2567,
- 2563, 2572, 2571, 2573, 2575, 2575, 2577, 2582, 2579, 2578,
- 2566, 2564, 2579, 2581, 2585, 2580, 2572, 2583, 2587, 2577,
- 2568, 2571, 2578, 2573, 2580, 2583, 2582, 2584, 2592, 2581,
- 2586, 2586, 2584, 2589, 2589, 2590, 2590, 2587, 2594, 2594,
- 2585, 2596, 2597, 2598, 2602, 2599, 2601, 2601, 2603, 2592,
- 2599, 2604, 2606, 2606, 2607, 2608, 2608, 2596, 2597, 2598,
-
- 2611, 2612, 2615, 2615, 2602, 2616, 2616, 2612, 2607, 2613,
- 2604, 2603, 2617, 2619, 2613, 2618, 2618, 2620, 2621, 2622,
- 2611, 2623, 2624, 2625, 2619, 2622, 2620, 2626, 2626, 2632,
- 2627, 2633, 2617, 2627, 2624, 2618, 2628, 2628, 2621, 2634,
- 2623, 2632, 2637, 2625, 2638, 2634, 2635, 2635, 2637, 2636,
- 2640, 2633, 2636, 2641, 2642, 2640, 2648, 2643, 2641, 2644,
- 2645, 2645, 2638, 2643, 2647, 2647, 2651, 2651, 2654, 2649,
- 2652, 2652, 2666, 2642, 2653, 2648, 2644, 2644, 2649, 2653,
- 2655, 2664, 2654, 2656, 2656, 2655, 2657, 2657, 2658, 2658,
- 2659, 2661, 2661, 2667, 2666, 2659, 2668, 2669, 2669, 2672,
-
- 2664, 2671, 2671, 2673, 2677, 2674, 2675, 2675, 2678, 2740,
- 2677, 2679, 2680, 2672, 2674, 2667, 2740, 2680, 2668, 2683,
- 2683, 2685, 2685, 2673, 2686, 2687, 2688, 2690, 2678, 2686,
- 2679, 2689, 2688, 2691, 2691, 2690, 2692, 2694, 2695, 2687,
- 2696, 2692, 2697, 2689, 2698, 2696, 2701, 2700, 2702, 2703,
- 2698, 2705, 2704, 0, 2697, 2700, 2706, 2694, 2695, 2707,
- 2717, 2708, 2711, 2712, 2717, 2701, 2708, 2705, 2702, 2703,
- 2704, 2715, 2715, 2706, 2706, 2727, 2712, 2716, 2716, 2727,
- 2707, 2733, 2711, 2721, 2721, 2723, 2723, 2724, 2724, 2730,
- 2724, 2725, 2725, 2734, 2725, 2726, 2726, 2731, 2726, 2729,
-
- 2729, 2733, 2739, 2735, 2736, 2736, 2741, 2730, 2735, 2742,
- 2741, 2731, 2745, 2734, 2743, 2746, 2747, 2747, 2742, 2748,
- 2748, 2749, 2749, 2750, 2746, 2752, 2751, 2739, 2755, 2743,
- 2745, 2751, 2756, 2754, 2752, 2753, 2757, 2752, 2750, 2754,
- 2753, 2753, 2760, 2758, 2759, 2761, 2761, 2756, 2758, 2759,
- 2762, 2765, 2765, 2755, 2831, 2762, 2831, 2757, 2768, 2768,
- 2780, 2760, 2769, 2769, 2770, 2770, 2771, 2771, 2772, 2772,
- 2773, 2773, 2774, 2774, 2776, 2777, 2777, 2778, 2779, 2782,
- 2780, 2783, 2783, 2776, 2784, 2786, 2778, 2785, 2787, 2787,
- 2779, 2788, 2789, 2789, 2792, 2794, 2796, 2786, 2782, 2784,
-
- 2785, 2793, 2795, 2795, 2793, 2798, 2788, 2799, 2798, 2800,
- 2801, 2802, 2792, 2799, 2796, 2801, 2803, 2804, 2817, 2815,
- 2806, 2794, 2815, 2800, 2818, 2818, 2819, 2819, 2820, 2820,
- 2802, 2817, 2822, 2804, 2803, 2806, 2823, 2824, 2825, 2826,
- 2828, 2824, 2830, 2829, 2832, 2823, 2835, 2830, 2833, 2833,
- 2836, 2834, 2838, 2826, 2829, 2822, 2837, 2840, 2825, 2832,
- 2839, 2841, 2842, 2828, 2834, 2835, 2846, 2842, 2836, 2847,
- 2848, 2848, 2837, 2849, 2854, 2839, 2855, 2838, 2840, 2859,
- 2846, 2841, 2849, 2850, 2850, 2851, 2851, 2852, 2852, 2847,
- 2853, 2853, 2856, 2854, 2857, 2856, 2855, 2858, 2860, 2857,
-
- 2861, 2862, 2858, 2863, 2859, 2865, 2861, 2864, 2864, 2866,
- 2867, 2867, 2869, 2860, 2871, 2862, 2874, 2874, 2875, 2875,
- 2865, 2876, 2877, 2863, 2878, 2879, 2880, 2869, 2866, 2876,
- 2878, 2879, 2871, 2881, 2882, 2883, 2883, 2885, 2888, 2886,
- 2880, 2877, 2891, 2889, 2892, 2893, 2881, 2889, 2894, 2892,
- 2895, 2896, 2888, 2882, 2900, 2897, 0, 2901, 2885, 2886,
- 2897, 2894, 2891, 2895, 2893, 2902, 2898, 2903, 2903, 2910,
- 2896, 2898, 2904, 2905, 2900, 2901, 0, 2904, 2907, 2905,
- 2906, 2906, 2908, 2907, 2902, 2909, 2911, 2908, 2910, 2917,
- 2909, 2913, 2911, 2912, 2912, 2916, 2913, 2914, 2914, 2916,
-
- 2918, 2919, 2920, 2921, 2922, 2923, 2930, 2918, 2917, 2921,
- 2925, 2925, 2927, 2927, 2929, 2928, 2931, 2932, 2923, 2929,
- 2919, 2920, 2937, 2922, 2928, 2930, 2934, 2928, 2933, 2933,
- 2932, 2934, 2935, 2938, 2938, 2931, 2939, 2940, 2940, 2941,
- 2941, 2942, 2943, 2944, 2951, 2935, 2942, 2946, 2937, 2943,
- 2945, 2945, 2946, 2949, 2947, 2939, 2947, 2948, 2948, 2950,
- 2949, 2953, 2944, 2951, 2952, 2956, 2950, 2955, 2955, 2952,
- 2958, 2959, 2960, 2961, 2965, 2958, 2959, 2962, 2962, 2966,
- 2953, 2964, 2964, 2969, 2956, 2967, 2967, 2968, 2968, 2979,
- 2969, 2960, 2961, 2965, 2971, 2971, 2972, 2972, 2966, 2973,
-
- 2975, 2980, 2978, 2981, 2981, 2975, 2973, 2978, 2979, 2982,
- 2982, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 2980, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2987, 2987,
- 2987, 2987, 2987, 2987, 2987, 2988, 2988, 2988, 2988, 2988,
- 2988, 2988, 2989, 2989, 2989, 2989, 2989, 2989, 2989, 2990,
- 2990, 2990, 2990, 2990, 2990, 2990, 2992, 2992, 0, 2992,
- 2992, 2992, 2992, 2993, 2993, 0, 0, 0, 2993, 2993,
- 2994, 2994, 0, 0, 2994, 0, 2994, 2995, 0, 0,
- 0, 0, 0, 2995, 2996, 2996, 0, 0, 0, 2996,
- 2996, 2997, 0, 0, 0, 0, 0, 2997, 2998, 2998,
-
- 0, 2998, 2998, 2998, 2998, 2999, 2999, 0, 2999, 2999,
- 2999, 2999, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985,
- 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985,
- 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985,
- 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985,
- 2985, 2985, 2985
+ 5, 3, 6, 24, 4, 24, 24, 5, 24, 6,
+ 7, 7, 7, 7, 24, 7, 8, 8, 8, 8,
+ 33, 8, 7, 9, 9, 9, 26, 26, 8, 10,
+ 10, 10, 19, 29, 9, 33, 19, 29, 3144, 35,
+ 10, 11, 11, 11, 11, 11, 11, 13, 13, 13,
+
+ 13, 34, 13, 11, 35, 99, 34, 29, 38, 13,
+ 51, 51, 11, 12, 12, 12, 12, 12, 12, 14,
+ 14, 14, 14, 99, 14, 12, 15, 15, 15, 38,
+ 23, 14, 23, 23, 12, 23, 46, 15, 16, 16,
+ 16, 23, 23, 25, 27, 27, 25, 25, 40, 16,
+ 25, 46, 27, 30, 30, 25, 27, 31, 31, 27,
+ 43, 43, 40, 43, 25, 28, 31, 87, 30, 32,
+ 28, 87, 43, 32, 28, 94, 32, 28, 43, 28,
+ 28, 56, 94, 32, 56, 32, 36, 36, 37, 37,
+ 28, 45, 45, 37, 2566, 36, 45, 39, 41, 41,
+
+ 45, 36, 39, 41, 124, 36, 39, 67, 67, 37,
+ 73, 124, 39, 41, 41, 39, 41, 44, 42, 84,
+ 84, 44, 39, 42, 73, 62, 42, 62, 62, 92,
+ 62, 44, 92, 42, 142, 44, 44, 42, 42, 70,
+ 142, 70, 70, 72, 70, 72, 72, 79, 72, 79,
+ 79, 70, 79, 86, 95, 86, 86, 89, 86, 89,
+ 89, 93, 89, 96, 86, 93, 95, 97, 89, 89,
+ 97, 98, 100, 103, 98, 101, 102, 104, 105, 106,
+ 107, 100, 102, 96, 109, 106, 108, 98, 102, 101,
+ 102, 103, 103, 111, 107, 110, 115, 105, 106, 104,
+
+ 108, 112, 118, 114, 109, 113, 110, 110, 114, 113,
+ 115, 111, 116, 122, 110, 116, 117, 128, 116, 112,
+ 119, 118, 117, 120, 121, 119, 120, 122, 126, 123,
+ 120, 116, 116, 123, 125, 126, 127, 128, 129, 131,
+ 130, 117, 133, 121, 130, 119, 120, 125, 121, 127,
+ 132, 134, 134, 135, 137, 132, 129, 131, 138, 132,
+ 139, 136, 133, 140, 143, 136, 140, 144, 144, 137,
+ 141, 145, 148, 135, 136, 146, 143, 140, 145, 139,
+ 136, 140, 147, 141, 138, 144, 149, 151, 144, 145,
+ 152, 146, 150, 148, 150, 152, 153, 156, 154, 151,
+
+ 155, 147, 149, 150, 1041, 155, 158, 158, 153, 160,
+ 182, 156, 160, 165, 165, 150, 154, 162, 182, 162,
+ 162, 167, 162, 167, 167, 168, 167, 168, 168, 170,
+ 168, 172, 170, 172, 172, 176, 172, 168, 175, 175,
+ 176, 177, 178, 179, 180, 183, 181, 177, 184, 185,
+ 186, 189, 180, 187, 185, 174, 177, 181, 179, 180,
+ 178, 188, 187, 184, 183, 173, 190, 188, 188, 192,
+ 186, 190, 191, 191, 194, 192, 189, 193, 194, 193,
+ 195, 195, 193, 194, 196, 197, 198, 199, 194, 200,
+ 201, 198, 199, 205, 194, 194, 196, 202, 203, 193,
+
+ 204, 200, 203, 202, 197, 204, 206, 205, 207, 208,
+ 201, 209, 210, 213, 171, 214, 209, 210, 211, 211,
+ 207, 206, 211, 207, 211, 212, 202, 208, 215, 217,
+ 212, 214, 219, 213, 215, 217, 211, 218, 211, 216,
+ 216, 217, 220, 218, 221, 222, 224, 223, 220, 225,
+ 221, 224, 219, 223, 226, 225, 227, 228, 229, 221,
+ 226, 230, 231, 227, 229, 232, 222, 233, 231, 234,
+ 228, 235, 239, 237, 236, 233, 235, 238, 242, 240,
+ 244, 230, 234, 236, 240, 240, 241, 232, 237, 245,
+ 243, 241, 239, 238, 243, 245, 242, 246, 247, 248,
+
+ 249, 250, 244, 250, 247, 249, 251, 252, 255, 257,
+ 258, 253, 254, 166, 252, 246, 246, 253, 254, 248,
+ 256, 257, 259, 259, 258, 251, 256, 255, 260, 260,
+ 261, 262, 263, 264, 263, 265, 261, 262, 266, 267,
+ 265, 268, 269, 270, 271, 282, 272, 273, 270, 268,
+ 266, 263, 272, 273, 261, 274, 264, 276, 267, 275,
+ 274, 277, 269, 276, 275, 278, 279, 271, 280, 281,
+ 282, 284, 283, 285, 284, 285, 277, 281, 283, 278,
+ 286, 286, 280, 287, 279, 288, 287, 289, 289, 290,
+ 290, 291, 293, 292, 294, 293, 295, 296, 294, 298,
+
+ 300, 164, 300, 288, 297, 295, 296, 291, 292, 299,
+ 297, 301, 302, 298, 306, 299, 302, 301, 303, 303,
+ 304, 305, 307, 308, 309, 304, 314, 305, 310, 310,
+ 312, 315, 311, 302, 306, 311, 317, 309, 313, 319,
+ 307, 163, 313, 322, 308, 314, 316, 316, 312, 315,
+ 318, 319, 320, 318, 317, 322, 321, 324, 320, 321,
+ 325, 328, 326, 329, 328, 454, 324, 326, 332, 330,
+ 318, 323, 327, 332, 332, 327, 329, 327, 325, 334,
+ 323, 330, 331, 323, 331, 331, 335, 454, 323, 323,
+ 323, 323, 333, 327, 336, 333, 334, 337, 341, 334,
+
+ 343, 335, 339, 336, 338, 338, 337, 339, 340, 340,
+ 342, 344, 343, 341, 345, 342, 346, 347, 350, 358,
+ 351, 348, 348, 347, 348, 351, 352, 161, 358, 356,
+ 344, 346, 352, 348, 345, 353, 354, 365, 350, 355,
+ 353, 354, 355, 356, 355, 357, 360, 354, 357, 359,
+ 359, 362, 360, 361, 361, 366, 362, 365, 367, 363,
+ 368, 357, 363, 369, 357, 372, 357, 371, 363, 375,
+ 371, 378, 363, 367, 374, 368, 366, 369, 375, 372,
+ 363, 364, 364, 380, 364, 376, 371, 377, 667, 374,
+ 376, 376, 378, 377, 379, 382, 384, 364, 380, 667,
+
+ 364, 381, 364, 383, 364, 373, 385, 373, 373, 383,
+ 381, 386, 388, 379, 382, 391, 389, 373, 390, 373,
+ 373, 373, 384, 387, 373, 386, 385, 392, 393, 387,
+ 391, 394, 392, 387, 396, 388, 389, 394, 390, 395,
+ 395, 397, 398, 393, 399, 400, 401, 402, 403, 403,
+ 399, 403, 402, 397, 396, 404, 398, 405, 406, 408,
+ 481, 408, 401, 407, 409, 410, 409, 411, 413, 410,
+ 400, 411, 415, 405, 406, 404, 414, 407, 412, 412,
+ 416, 417, 481, 418, 409, 419, 411, 413, 415, 421,
+ 422, 414, 418, 421, 419, 417, 420, 424, 416, 422,
+
+ 423, 420, 425, 418, 429, 418, 423, 426, 425, 427,
+ 428, 426, 427, 430, 430, 428, 431, 433, 424, 432,
+ 432, 434, 433, 438, 429, 435, 435, 436, 437, 431,
+ 439, 440, 437, 436, 434, 441, 440, 443, 438, 444,
+ 441, 442, 442, 445, 446, 447, 449, 451, 447, 443,
+ 442, 439, 451, 448, 450, 450, 446, 448, 449, 444,
+ 452, 445, 453, 453, 456, 456, 457, 458, 459, 460,
+ 461, 464, 463, 466, 465, 458, 467, 459, 468, 466,
+ 470, 452, 461, 472, 468, 467, 472, 457, 465, 460,
+ 463, 464, 463, 469, 470, 471, 473, 474, 469, 475,
+
+ 476, 477, 478, 471, 477, 475, 471, 479, 478, 480,
+ 473, 482, 474, 483, 480, 485, 488, 483, 484, 486,
+ 476, 479, 487, 484, 486, 492, 478, 489, 493, 494,
+ 485, 495, 482, 494, 505, 488, 496, 505, 487, 499,
+ 489, 490, 490, 493, 497, 492, 500, 490, 497, 490,
+ 495, 500, 496, 498, 499, 490, 501, 490, 498, 502,
+ 490, 490, 498, 503, 504, 506, 507, 490, 502, 503,
+ 508, 508, 501, 509, 503, 501, 510, 510, 511, 512,
+ 504, 513, 514, 515, 516, 517, 507, 518, 506, 516,
+ 522, 512, 519, 511, 517, 526, 513, 520, 509, 522,
+
+ 523, 514, 524, 520, 523, 515, 518, 519, 524, 525,
+ 526, 527, 528, 529, 530, 531, 532, 534, 533, 531,
+ 533, 525, 535, 535, 537, 534, 528, 536, 529, 532,
+ 527, 538, 530, 536, 539, 540, 537, 538, 540, 541,
+ 542, 544, 543, 545, 544, 546, 539, 543, 549, 549,
+ 548, 547, 545, 541, 551, 542, 547, 547, 556, 545,
+ 551, 546, 545, 548, 550, 550, 552, 552, 553, 553,
+ 554, 557, 555, 559, 557, 558, 554, 555, 555, 556,
+ 558, 560, 561, 562, 563, 561, 564, 565, 562, 560,
+ 566, 565, 559, 567, 568, 569, 566, 567, 570, 572,
+
+ 569, 573, 571, 575, 572, 564, 577, 563, 571, 576,
+ 576, 574, 568, 578, 574, 573, 581, 579, 570, 574,
+ 580, 575, 579, 574, 577, 580, 582, 584, 585, 578,
+ 581, 586, 587, 584, 586, 588, 587, 585, 590, 589,
+ 588, 582, 589, 590, 591, 592, 593, 595, 594, 596,
+ 597, 597, 595, 593, 599, 598, 600, 601, 587, 602,
+ 591, 594, 603, 592, 598, 159, 601, 609, 603, 596,
+ 604, 602, 600, 599, 605, 610, 604, 605, 606, 606,
+ 607, 606, 608, 607, 611, 609, 612, 608, 613, 610,
+ 611, 612, 614, 615, 613, 614, 616, 617, 615, 618,
+
+ 619, 616, 616, 620, 621, 619, 622, 624, 623, 620,
+ 617, 626, 618, 623, 629, 622, 625, 625, 626, 619,
+ 619, 627, 628, 621, 627, 630, 629, 624, 628, 631,
+ 630, 632, 632, 633, 631, 631, 634, 635, 634, 627,
+ 636, 637, 636, 638, 639, 640, 641, 642, 643, 647,
+ 645, 644, 643, 642, 646, 648, 635, 650, 633, 637,
+ 644, 638, 639, 649, 640, 645, 641, 647, 652, 646,
+ 651, 653, 650, 654, 648, 649, 651, 655, 658, 657,
+ 656, 659, 652, 653, 656, 660, 661, 663, 662, 664,
+ 664, 665, 654, 662, 658, 665, 655, 657, 666, 659,
+
+ 668, 663, 669, 660, 660, 661, 670, 669, 671, 673,
+ 672, 678, 675, 674, 668, 676, 673, 666, 674, 675,
+ 676, 677, 670, 672, 679, 680, 677, 671, 681, 678,
+ 682, 679, 683, 684, 680, 687, 689, 685, 684, 682,
+ 685, 686, 681, 688, 683, 686, 690, 691, 697, 687,
+ 695, 689, 688, 692, 692, 693, 693, 694, 694, 695,
+ 690, 699, 700, 698, 693, 701, 700, 697, 691, 698,
+ 702, 703, 704, 706, 705, 707, 708, 701, 704, 709,
+ 706, 699, 705, 712, 719, 718, 715, 724, 724, 703,
+ 719, 721, 722, 707, 718, 702, 723, 721, 712, 709,
+
+ 723, 708, 710, 715, 710, 725, 725, 710, 722, 726,
+ 727, 710, 728, 729, 710, 735, 733, 730, 739, 739,
+ 726, 710, 710, 730, 710, 732, 728, 734, 727, 736,
+ 732, 157, 736, 729, 731, 731, 731, 733, 731, 740,
+ 735, 731, 737, 738, 742, 734, 731, 737, 737, 742,
+ 738, 748, 731, 731, 740, 741, 741, 743, 744, 747,
+ 743, 745, 745, 744, 746, 749, 746, 750, 752, 749,
+ 748, 747, 751, 753, 753, 754, 752, 757, 755, 756,
+ 756, 758, 759, 760, 762, 762, 85, 750, 781, 760,
+ 754, 751, 755, 758, 761, 757, 763, 781, 765, 761,
+
+ 766, 763, 763, 765, 759, 767, 766, 768, 769, 771,
+ 770, 767, 768, 770, 769, 771, 772, 773, 773, 774,
+ 774, 775, 776, 777, 772, 778, 779, 782, 777, 775,
+ 780, 780, 778, 783, 784, 782, 788, 786, 787, 783,
+ 776, 790, 794, 789, 793, 779, 786, 787, 789, 791,
+ 790, 792, 791, 784, 795, 796, 792, 799, 793, 797,
+ 788, 798, 798, 795, 797, 797, 800, 794, 796, 801,
+ 802, 803, 799, 805, 803, 805, 806, 806, 801, 807,
+ 809, 808, 803, 810, 811, 800, 808, 812, 813, 814,
+ 815, 816, 817, 818, 802, 816, 819, 820, 814, 821,
+
+ 807, 809, 819, 810, 811, 822, 820, 823, 813, 812,
+ 817, 821, 818, 815, 824, 825, 828, 826, 827, 827,
+ 824, 823, 826, 829, 822, 830, 831, 832, 833, 825,
+ 834, 835, 829, 836, 831, 837, 828, 839, 838, 836,
+ 840, 837, 841, 839, 844, 830, 80, 832, 841, 834,
+ 833, 835, 838, 842, 843, 845, 846, 847, 843, 842,
+ 840, 846, 849, 844, 848, 848, 850, 845, 849, 850,
+ 851, 852, 854, 853, 859, 845, 855, 855, 847, 853,
+ 856, 857, 862, 860, 852, 858, 857, 860, 851, 859,
+ 858, 858, 854, 861, 861, 863, 864, 865, 856, 867,
+
+ 868, 864, 870, 871, 862, 873, 873, 874, 876, 876,
+ 877, 874, 875, 878, 868, 863, 865, 878, 879, 889,
+ 898, 898, 870, 867, 871, 872, 880, 875, 872, 882,
+ 872, 889, 881, 879, 872, 877, 872, 881, 884, 883,
+ 880, 872, 885, 882, 883, 883, 872, 884, 886, 890,
+ 887, 892, 886, 888, 890, 891, 885, 893, 888, 902,
+ 895, 894, 901, 75, 886, 887, 895, 896, 888, 891,
+ 894, 893, 892, 896, 897, 903, 899, 900, 902, 905,
+ 897, 899, 906, 900, 901, 907, 908, 906, 909, 909,
+ 913, 905, 910, 903, 904, 904, 911, 910, 908, 907,
+
+ 904, 912, 904, 914, 911, 915, 915, 916, 904, 913,
+ 917, 916, 919, 904, 904, 912, 920, 921, 919, 920,
+ 904, 922, 914, 923, 925, 934, 924, 932, 927, 923,
+ 917, 924, 928, 929, 922, 933, 921, 927, 930, 931,
+ 933, 928, 935, 925, 930, 934, 932, 936, 931, 929,
+ 937, 938, 939, 940, 941, 946, 935, 942, 944, 940,
+ 938, 939, 937, 942, 947, 949, 948, 936, 950, 946,
+ 952, 941, 951, 953, 944, 952, 956, 960, 953, 949,
+ 957, 956, 958, 958, 947, 948, 950, 951, 959, 957,
+ 960, 962, 963, 967, 959, 964, 964, 963, 963, 964,
+
+ 965, 966, 968, 965, 969, 971, 970, 962, 972, 973,
+ 974, 975, 976, 967, 972, 966, 974, 976, 968, 970,
+ 971, 977, 969, 980, 979, 981, 975, 979, 982, 973,
+ 981, 983, 984, 982, 985, 977, 986, 984, 989, 985,
+ 988, 992, 992, 990, 980, 991, 988, 983, 986, 990,
+ 993, 991, 994, 995, 989, 997, 995, 996, 996, 993,
+ 998, 999, 1000, 1001, 1004, 1000, 1002, 1009, 1003, 1004,
+ 994, 1010, 1002, 997, 1003, 1005, 1001, 1006, 1007, 998,
+ 1005, 999, 1006, 1011, 1007, 1009, 1014, 1012, 1015, 1011,
+ 1016, 1010, 1012, 1013, 1013, 1014, 1017, 1015, 1018, 1019,
+
+ 1020, 1018, 1019, 1021, 1022, 1023, 1024, 1025, 1016, 1027,
+ 1026, 1020, 1024, 1025, 1027, 1017, 1022, 1028, 1028, 1029,
+ 1030, 1021, 1032, 1031, 1023, 1026, 1032, 1033, 1034, 1035,
+ 1036, 1038, 1039, 1039, 1030, 1031, 1040, 1034, 1029, 1042,
+ 1044, 1045, 1043, 1047, 1047, 1033, 1045, 1048, 1035, 1046,
+ 1038, 74, 1044, 1042, 1049, 1036, 1040, 1043, 1046, 1050,
+ 1049, 1051, 1052, 1053, 1052, 1050, 1051, 1048, 1053, 1054,
+ 1055, 1056, 1057, 1058, 1059, 1060, 1056, 1061, 1063, 1063,
+ 1064, 1059, 1065, 1054, 1055, 1067, 1066, 1057, 1068, 68,
+ 1060, 1067, 1058, 1069, 1064, 1071, 1061, 1075, 1069, 1071,
+
+ 1065, 1066, 1072, 1072, 1075, 1073, 1076, 1069, 1068, 1069,
+ 1073, 1078, 1069, 1074, 1074, 1077, 1079, 1080, 1077, 1081,
+ 1076, 1082, 1084, 1083, 1081, 1085, 1080, 1084, 1086, 1091,
+ 1078, 1088, 1088, 1089, 1079, 1083, 1085, 1090, 1089, 1092,
+ 1082, 1093, 1090, 1094, 1092, 1093, 1095, 1086, 1096, 1091,
+ 1097, 1099, 1094, 1098, 1102, 1100, 1101, 1103, 1104, 1106,
+ 1107, 1095, 1100, 1096, 1105, 1098, 1099, 1108, 1101, 1097,
+ 1105, 1111, 1109, 1102, 1106, 1112, 1104, 1111, 1103, 1113,
+ 1107, 1109, 1115, 1114, 1116, 1117, 1119, 1108, 1121, 1116,
+ 1112, 1114, 1120, 1113, 1118, 1122, 1122, 1117, 1124, 1118,
+
+ 1118, 1121, 1115, 1126, 1125, 1119, 1120, 1123, 1179, 1126,
+ 1179, 1124, 1123, 1125, 1128, 1123, 1123, 1127, 1127, 1128,
+ 1123, 1130, 1129, 1131, 1132, 1134, 1123, 1130, 1131, 1132,
+ 1123, 1129, 1133, 1133, 1135, 1135, 1136, 1137, 1138, 1136,
+ 1139, 1136, 1140, 1141, 1142, 1143, 1134, 1144, 1141, 1139,
+ 1146, 1149, 1149, 1144, 1145, 1146, 1138, 1137, 1142, 1148,
+ 1145, 1147, 1140, 1143, 1155, 1147, 1150, 1150, 1148, 1150,
+ 1151, 1154, 1153, 1148, 1156, 1148, 1153, 1148, 1158, 1148,
+ 1159, 1151, 1155, 1156, 1157, 1161, 1154, 1158, 1160, 1157,
+ 1157, 1162, 1163, 1160, 1164, 1165, 1169, 1166, 1168, 1161,
+
+ 1162, 1171, 1159, 1166, 1167, 1167, 1168, 1170, 1172, 1165,
+ 1169, 1163, 1170, 1164, 1173, 1171, 1174, 1172, 1175, 1176,
+ 1176, 1177, 1182, 1175, 1178, 1178, 1181, 1182, 1183, 1181,
+ 1184, 1186, 1173, 1185, 1185, 1189, 1177, 1187, 1187, 1184,
+ 1189, 1174, 1188, 1188, 1190, 1191, 1199, 1183, 1192, 1192,
+ 1193, 1186, 1194, 1195, 1196, 1194, 1203, 1202, 1197, 1196,
+ 1198, 1203, 1198, 1204, 1199, 1190, 1191, 1197, 1201, 1205,
+ 1193, 1201, 1202, 1195, 1205, 1206, 1207, 1204, 1211, 1208,
+ 1214, 1207, 1210, 1206, 1208, 1209, 1209, 1210, 1212, 1216,
+ 1213, 1224, 1217, 1214, 1212, 1216, 1211, 1213, 1217, 1218,
+
+ 1219, 1220, 1221, 1222, 1218, 1226, 1219, 1223, 1223, 1227,
+ 1220, 1224, 1228, 1229, 1222, 1236, 1230, 1231, 1233, 1229,
+ 1226, 1221, 1230, 1231, 1233, 1234, 1235, 1236, 1237, 1227,
+ 1238, 1239, 1239, 1240, 1241, 1228, 1242, 1245, 1243, 1234,
+ 1244, 1244, 1237, 1243, 1246, 1234, 1235, 1248, 1238, 1246,
+ 1249, 1250, 1251, 1240, 1242, 1249, 1249, 1252, 1253, 1241,
+ 1245, 1251, 1254, 1255, 1263, 1252, 1248, 63, 1256, 1250,
+ 1257, 1259, 1253, 1256, 1265, 1263, 1256, 1254, 1255, 1257,
+ 1258, 1255, 1258, 1261, 1262, 1259, 1264, 1266, 1262, 1261,
+ 1267, 1264, 1264, 1265, 1268, 1269, 1270, 1271, 1272, 1268,
+
+ 1269, 1274, 1271, 1275, 1276, 1277, 1277, 1278, 1267, 1279,
+ 1280, 1278, 1282, 1266, 1270, 1274, 1283, 1281, 1272, 1284,
+ 1287, 1275, 1276, 1281, 1282, 1285, 1286, 1279, 1291, 1280,
+ 1289, 1288, 1294, 1284, 1296, 1283, 1288, 1289, 1290, 1287,
+ 1285, 1286, 1292, 1290, 1293, 1293, 1291, 1294, 1295, 1297,
+ 1296, 1292, 1298, 1299, 1295, 1300, 1305, 1298, 1307, 1299,
+ 1305, 1300, 1301, 1301, 1302, 1302, 1304, 1304, 1306, 1308,
+ 1297, 1309, 1310, 1311, 1311, 1312, 1307, 1306, 1315, 1310,
+ 1313, 1316, 1314, 1308, 1317, 1319, 1309, 1314, 1313, 1317,
+ 1317, 1318, 1315, 1320, 1320, 1312, 1318, 1318, 1321, 1322,
+
+ 1316, 1323, 1324, 1325, 1326, 1319, 1328, 1324, 1327, 1329,
+ 1323, 1330, 1328, 1331, 1329, 1332, 1335, 1321, 1322, 1331,
+ 1336, 1333, 1325, 1334, 1326, 1337, 1327, 1333, 1338, 1334,
+ 1340, 1339, 1348, 1341, 1332, 1335, 1348, 1330, 1344, 1336,
+ 1342, 1342, 1354, 1343, 1337, 1339, 1343, 1338, 1341, 1349,
+ 1344, 1340, 1345, 1345, 1346, 1346, 1347, 1350, 1351, 1355,
+ 1354, 1347, 1349, 1352, 1355, 1352, 1350, 1357, 1356, 1352,
+ 1358, 1351, 1359, 1359, 1360, 1361, 1362, 1363, 1367, 1360,
+ 1364, 1361, 1352, 1356, 1365, 1364, 1358, 1357, 1365, 1366,
+ 1363, 1362, 1368, 1366, 1369, 1370, 1371, 1371, 1367, 1373,
+
+ 1375, 1370, 1376, 1377, 1377, 1378, 1379, 1376, 1381, 1381,
+ 1368, 1378, 1383, 1385, 1369, 1383, 1386, 1373, 1384, 1384,
+ 1388, 1375, 1389, 1388, 1390, 1392, 1379, 1391, 1391, 1385,
+ 1393, 1394, 1386, 1390, 1395, 1396, 1397, 1397, 1398, 1395,
+ 1392, 1399, 1389, 1400, 1401, 1402, 1402, 1398, 1403, 1396,
+ 1394, 1393, 1404, 1406, 1409, 1405, 1407, 1407, 1400, 1399,
+ 1405, 1408, 1403, 1410, 1410, 1408, 1411, 1412, 1406, 1401,
+ 1404, 1413, 1414, 1418, 1409, 1413, 1415, 1419, 1412, 1417,
+ 1417, 1415, 1420, 1421, 1422, 1423, 1424, 1424, 1411, 1418,
+ 1428, 1414, 1425, 1426, 1427, 1419, 1420, 1425, 1422, 1428,
+
+ 1429, 1430, 1421, 1421, 1431, 1429, 1431, 1432, 1434, 1433,
+ 1423, 1435, 1432, 1426, 1427, 1433, 1437, 1435, 1438, 1438,
+ 1439, 1430, 1442, 1440, 1443, 1444, 1444, 1442, 1434, 1440,
+ 1437, 1445, 1445, 1446, 1447, 1448, 1451, 1449, 1453, 1439,
+ 1449, 1450, 1450, 1452, 1456, 1455, 1471, 1446, 1443, 1456,
+ 1448, 1455, 1447, 1454, 1451, 1452, 1454, 1457, 1453, 1454,
+ 1457, 1459, 1460, 1461, 1471, 1462, 1472, 1460, 1462, 1464,
+ 1459, 1454, 1463, 1463, 1465, 1464, 1457, 1466, 1466, 1465,
+ 1467, 1467, 1469, 1468, 1470, 1472, 1473, 1469, 1461, 1468,
+ 1474, 1477, 1475, 1474, 1476, 1478, 1477, 1470, 1475, 1479,
+
+ 1476, 1478, 1480, 1481, 1481, 1482, 1473, 1480, 1483, 1484,
+ 1482, 1485, 1488, 1486, 1487, 1491, 1492, 1493, 1489, 1490,
+ 1494, 1491, 1479, 1495, 1488, 1498, 1483, 1486, 1487, 1484,
+ 1489, 1485, 1490, 1501, 1494, 1499, 1492, 1493, 1497, 1497,
+ 1499, 1500, 1500, 1502, 1495, 1498, 1503, 1504, 1501, 1505,
+ 1513, 1506, 1507, 1509, 58, 1508, 1511, 1502, 1505, 1507,
+ 1514, 1515, 1515, 1514, 1508, 1504, 1506, 1508, 1517, 1509,
+ 1503, 1511, 1516, 1516, 1518, 1513, 1511, 1521, 1519, 1522,
+ 1517, 1519, 1520, 1520, 1523, 1525, 1524, 1526, 1527, 1523,
+ 1521, 1524, 1518, 1528, 1533, 1531, 1529, 1527, 1522, 1535,
+
+ 1530, 1531, 1534, 1526, 1525, 1529, 1532, 1532, 1529, 1530,
+ 1536, 1537, 1528, 1538, 1533, 1534, 1541, 1535, 1542, 1543,
+ 1543, 1544, 1545, 1546, 1536, 1538, 1548, 1537, 1546, 1547,
+ 1547, 1545, 1550, 1551, 1549, 1548, 1542, 1544, 1548, 1549,
+ 1552, 1541, 1553, 1555, 1547, 1556, 1557, 1553, 1553, 1559,
+ 1550, 1558, 1560, 1562, 1551, 1559, 1558, 1555, 1552, 1562,
+ 1556, 1561, 1561, 1567, 1563, 1564, 1565, 1568, 1557, 1563,
+ 1560, 1564, 1565, 1569, 1570, 1571, 1572, 1574, 1571, 1569,
+ 1576, 1568, 1572, 1567, 1571, 1574, 1577, 1570, 1578, 1579,
+ 1580, 1581, 1582, 1583, 1584, 1584, 1578, 1587, 1579, 1576,
+
+ 1588, 1588, 1585, 1580, 1581, 1577, 1582, 1583, 1585, 1586,
+ 1587, 1589, 1590, 1591, 1592, 1586, 1584, 1593, 1594, 1595,
+ 1596, 1598, 1598, 1593, 1599, 1600, 1605, 1592, 1601, 1600,
+ 1590, 1589, 1591, 1601, 1602, 1595, 1603, 1604, 1596, 1602,
+ 1594, 1603, 1607, 1608, 1599, 1610, 1604, 1609, 1609, 1605,
+ 1611, 1612, 1613, 1613, 1607, 1614, 1615, 1618, 1608, 1616,
+ 1617, 1619, 1611, 1615, 1610, 1621, 1622, 1620, 1623, 1614,
+ 1612, 1616, 1617, 1620, 1623, 57, 1618, 1621, 1624, 1624,
+ 1625, 1619, 1628, 1625, 1622, 1626, 1626, 1628, 1629, 1630,
+ 1631, 1631, 1632, 1635, 1633, 1630, 1633, 1629, 1634, 1636,
+
+ 1637, 1634, 1638, 1639, 1632, 1640, 1641, 1642, 1639, 1643,
+ 1640, 1644, 1646, 1635, 1645, 1641, 1644, 1647, 1637, 1642,
+ 1638, 1636, 1647, 1645, 1643, 1648, 1649, 1650, 1650, 1647,
+ 1648, 1651, 1646, 1652, 1654, 1655, 1645, 1651, 1656, 52,
+ 1657, 1649, 1657, 1658, 1659, 1659, 1660, 1660, 1661, 1661,
+ 1662, 1655, 1665, 1654, 1652, 1663, 1663, 1658, 1656, 1658,
+ 1664, 1664, 1666, 1667, 1667, 1668, 1669, 1673, 1670, 1668,
+ 1662, 1670, 1669, 1665, 1672, 1674, 1675, 1677, 1677, 1676,
+ 1672, 1674, 1676, 1666, 1679, 1673, 1678, 1678, 1680, 1679,
+ 1681, 1682, 1683, 1684, 1680, 1685, 1688, 1690, 1691, 1684,
+
+ 1687, 1675, 1681, 1681, 1681, 1687, 1687, 1695, 1690, 1681,
+ 1688, 1682, 1683, 1691, 1689, 1685, 1689, 1692, 1693, 1694,
+ 1696, 1696, 1697, 1692, 1698, 1698, 1699, 1693, 1695, 1700,
+ 1701, 1701, 1702, 1702, 1703, 1706, 1706, 1707, 1708, 1694,
+ 1710, 1715, 1711, 1714, 1712, 1718, 1699, 1708, 1697, 1710,
+ 1712, 1700, 1713, 1713, 1703, 1720, 1715, 1717, 1716, 1719,
+ 1719, 1721, 1707, 1711, 1714, 1716, 1717, 1723, 1724, 1725,
+ 1727, 1718, 1723, 1726, 1724, 1732, 1727, 1721, 1728, 1731,
+ 1726, 1720, 1729, 1729, 1728, 1730, 1733, 1734, 1731, 1725,
+ 1730, 1735, 1736, 1737, 1735, 1732, 1738, 1738, 1739, 1734,
+
+ 1740, 1741, 1742, 1743, 1739, 1733, 1740, 1743, 1745, 1746,
+ 1736, 1747, 1748, 1748, 1749, 1750, 1747, 1742, 1752, 1737,
+ 1753, 1741, 1762, 1743, 1753, 1755, 1754, 1760, 1745, 1758,
+ 1750, 1746, 1754, 1749, 1755, 1756, 1756, 1752, 1757, 1761,
+ 1758, 1762, 1757, 1759, 1759, 1758, 1763, 1764, 1760, 1765,
+ 1766, 1763, 1768, 1761, 1773, 1767, 1766, 1768, 1769, 1769,
+ 1770, 1770, 1771, 1773, 1774, 1775, 1771, 1764, 1782, 1765,
+ 1767, 1776, 1776, 1778, 1778, 1774, 1779, 1780, 1781, 1790,
+ 1774, 1779, 1779, 1780, 1781, 1775, 1783, 1784, 1787, 1785,
+ 1789, 1783, 1788, 1792, 1782, 1785, 1788, 1791, 1798, 1784,
+
+ 1787, 1793, 1789, 1791, 1790, 1794, 1795, 1793, 1797, 1799,
+ 1794, 1802, 1802, 1801, 1799, 1792, 1801, 1798, 1795, 1805,
+ 1797, 1803, 1803, 1804, 1804, 1806, 1807, 1810, 1808, 1809,
+ 47, 1806, 1807, 1808, 1815, 1809, 1810, 1812, 1814, 1805,
+ 1818, 1814, 1812, 1816, 1816, 1819, 1815, 1822, 1820, 1821,
+ 1821, 1827, 1818, 1820, 1823, 1824, 1822, 1819, 1825, 1823,
+ 1824, 1825, 1826, 1826, 1828, 1829, 1830, 1837, 1831, 1832,
+ 1833, 1827, 1831, 1828, 1832, 1834, 1833, 1835, 1836, 1839,
+ 1839, 1837, 1840, 1829, 1845, 1830, 1835, 1844, 1841, 1842,
+ 1842, 1839, 1843, 1834, 1847, 1853, 1836, 1841, 1846, 1844,
+
+ 1840, 1843, 1854, 1846, 1856, 1845, 1857, 1847, 1850, 1850,
+ 1852, 1853, 1859, 1852, 1866, 1858, 1860, 1860, 1854, 1856,
+ 1857, 1858, 1861, 1863, 1861, 1862, 1862, 1865, 1867, 1859,
+ 1869, 1863, 1868, 1868, 1865, 1870, 1866, 1871, 1872, 1869,
+ 1873, 1874, 1875, 1878, 1881, 1876, 1879, 18, 1867, 1871,
+ 1872, 1876, 1873, 1880, 1880, 1882, 1870, 1875, 1879, 1885,
+ 1889, 1884, 1881, 1878, 1876, 1883, 1884, 1874, 1883, 1887,
+ 1888, 1890, 1888, 1891, 1887, 1882, 1890, 1893, 1889, 1885,
+ 1891, 1895, 1896, 1897, 1899, 1898, 1893, 1898, 1901, 1904,
+ 1901, 1896, 1902, 1903, 1903, 1897, 1905, 1907, 1906, 1895,
+
+ 1906, 1905, 1907, 1899, 1908, 1909, 1902, 1910, 1911, 1908,
+ 1914, 1912, 1913, 1916, 1911, 1904, 1912, 1917, 1914, 1918,
+ 1918, 1919, 1919, 1909, 1920, 1913, 1921, 1910, 1922, 1925,
+ 1923, 1917, 1916, 1926, 1922, 1923, 1924, 1933, 1924, 1920,
+ 1928, 1926, 1927, 1927, 1929, 1929, 1921, 1925, 1931, 1926,
+ 1930, 1930, 1928, 1932, 1935, 1933, 1937, 1931, 1932, 1936,
+ 1939, 1936, 1938, 1935, 1940, 1947, 1935, 1938, 1938, 1939,
+ 1942, 1946, 1948, 1943, 1944, 1950, 1940, 1937, 1943, 1944,
+ 1951, 1948, 1942, 1952, 1946, 1947, 1949, 1949, 1953, 1954,
+ 1958, 1956, 1959, 1950, 1957, 1960, 1961, 1959, 1951, 1952,
+
+ 1960, 1964, 1953, 1956, 1954, 1961, 1957, 1964, 1966, 1967,
+ 1958, 1968, 1969, 1970, 1966, 1971, 1972, 1972, 1973, 1979,
+ 1964, 1974, 1974, 1975, 1971, 1976, 1968, 1973, 1977, 1976,
+ 1969, 1978, 1967, 1977, 1980, 2025, 1985, 1981, 1970, 1980,
+ 1980, 1979, 1975, 1981, 1978, 1982, 1983, 1984, 2025, 1983,
+ 1990, 1982, 1988, 1988, 1993, 1984, 1985, 1989, 1989, 1990,
+ 1991, 1991, 1992, 1992, 1994, 1995, 1993, 2003, 1996, 1997,
+ 1997, 1995, 1989, 1996, 1998, 1998, 1999, 2005, 2000, 2007,
+ 2009, 1999, 1994, 1989, 2000, 2002, 2004, 2003, 2008, 2002,
+ 2004, 2010, 2012, 2008, 2011, 2013, 2014, 2005, 2016, 2011,
+
+ 2015, 2017, 2017, 2009, 2007, 2015, 2010, 2019, 2018, 2020,
+ 2012, 2013, 2018, 2021, 2020, 2022, 2014, 2023, 2024, 2026,
+ 2016, 2029, 2019, 2024, 2027, 2027, 2030, 2022, 2031, 2029,
+ 2032, 2033, 2034, 2035, 2036, 2037, 2023, 2026, 2041, 2021,
+ 2040, 2040, 2039, 2041, 2044, 2030, 2036, 2031, 2043, 2042,
+ 2045, 2034, 2042, 2032, 2035, 2033, 2037, 2039, 2044, 2046,
+ 2046, 2043, 2049, 2045, 2047, 2047, 2048, 2048, 2050, 2051,
+ 2051, 2052, 2053, 2053, 2054, 2057, 2058, 2049, 2059, 2054,
+ 2052, 2050, 2056, 2052, 2060, 2060, 2062, 2056, 2061, 2061,
+ 2059, 2063, 2063, 2064, 2066, 2057, 2058, 2065, 2065, 2067,
+
+ 2068, 2068, 2069, 2069, 2067, 2062, 2070, 2071, 2072, 2066,
+ 2073, 2064, 2075, 2076, 2076, 2077, 2071, 2075, 2078, 2078,
+ 2070, 2079, 2072, 2081, 2080, 2084, 2081, 2082, 2082, 2073,
+ 2080, 2083, 2083, 2085, 2077, 2086, 2087, 2087, 2089, 2079,
+ 2090, 2091, 2092, 2082, 2084, 2094, 2092, 2095, 2085, 2093,
+ 2093, 2096, 2095, 2097, 2086, 2100, 2091, 2102, 2089, 2099,
+ 2099, 2103, 2101, 2090, 2094, 2104, 2096, 2105, 2097, 2101,
+ 2111, 2102, 2106, 2106, 2109, 2100, 2107, 2109, 2108, 2103,
+ 2108, 2112, 2111, 2104, 2113, 2107, 2112, 2114, 2115, 2113,
+ 2116, 2117, 2109, 2105, 2109, 2118, 2117, 2120, 2121, 2122,
+
+ 2123, 2115, 2120, 2121, 2124, 2126, 2123, 2125, 2128, 2129,
+ 2126, 2116, 2114, 2125, 2122, 2127, 2130, 2131, 2132, 2130,
+ 2127, 2118, 2129, 2133, 2135, 2124, 2131, 2132, 2134, 2136,
+ 2137, 2140, 2133, 2128, 17, 2136, 2137, 2134, 2135, 2138,
+ 2142, 2143, 2143, 2138, 2144, 2145, 2145, 2146, 2147, 2142,
+ 2144, 2140, 2146, 2149, 2145, 2150, 2151, 2151, 2152, 2156,
+ 2162, 2157, 2155, 2153, 2160, 2158, 0, 2160, 2147, 2149,
+ 2147, 2150, 2153, 2152, 2155, 2156, 2157, 2158, 2161, 2163,
+ 2162, 2164, 2164, 2161, 2165, 2165, 2167, 2167, 2169, 2168,
+ 2170, 2163, 2168, 2169, 2171, 2172, 2170, 2173, 2173, 2174,
+
+ 2171, 2175, 2175, 2176, 2172, 2177, 2178, 2179, 2179, 2181,
+ 2180, 2188, 2182, 2174, 2184, 2176, 2180, 2182, 2184, 2177,
+ 2188, 2185, 2189, 2181, 2185, 2178, 2186, 2186, 2187, 2195,
+ 2190, 2191, 2191, 2187, 2190, 2192, 2194, 2196, 2197, 2198,
+ 2199, 2194, 2189, 2198, 2203, 2200, 2205, 2201, 2192, 2195,
+ 2200, 2206, 2197, 2201, 2207, 2202, 2209, 2196, 2205, 2207,
+ 2199, 2202, 2203, 2208, 2209, 2213, 2210, 2206, 2210, 2208,
+ 2214, 2214, 2215, 2216, 2219, 2215, 2217, 2217, 2219, 2213,
+ 2220, 2221, 2222, 2222, 2228, 2223, 2220, 2226, 2226, 2230,
+ 2231, 2234, 2235, 2221, 2223, 2236, 2234, 2238, 2238, 2216,
+
+ 2236, 2244, 2228, 2230, 2237, 2242, 2231, 2240, 2240, 2237,
+ 2245, 2242, 2243, 2243, 2246, 2248, 2249, 2244, 2235, 2246,
+ 2250, 2250, 2252, 2253, 2254, 2255, 2257, 2257, 2249, 2253,
+ 2258, 2252, 2245, 2258, 2248, 2259, 2264, 2260, 2262, 2262,
+ 2255, 2264, 2254, 2263, 2263, 2265, 2267, 2266, 2268, 2271,
+ 2268, 2267, 2269, 2270, 2259, 2260, 2266, 2272, 2273, 2274,
+ 0, 2271, 2272, 2265, 2274, 2279, 2269, 2270, 2275, 2275,
+ 2276, 2276, 2277, 2277, 2278, 2278, 2280, 2279, 2273, 2281,
+ 2282, 2282, 2283, 2283, 2281, 2284, 2285, 2286, 2287, 2288,
+ 2288, 2289, 2290, 2290, 2280, 2291, 2291, 2284, 2285, 2294,
+
+ 2292, 2293, 2295, 2296, 2287, 2298, 2294, 2286, 2299, 2301,
+ 2289, 2292, 2297, 2293, 2295, 2300, 2300, 2297, 2301, 2302,
+ 2303, 2304, 2305, 2296, 2306, 2298, 2309, 2307, 2299, 2308,
+ 2308, 2313, 2310, 2311, 2304, 2309, 2314, 2315, 2306, 2307,
+ 2303, 2316, 2317, 0, 2316, 2302, 2305, 2310, 2311, 2313,
+ 2318, 2327, 2319, 2320, 2320, 2318, 2317, 2319, 2314, 2328,
+ 2315, 2321, 2321, 2322, 2322, 2324, 2324, 2326, 2326, 2327,
+ 2328, 2329, 2330, 2332, 2333, 2334, 2335, 2336, 2337, 2338,
+ 2339, 2338, 2345, 2340, 2341, 2362, 2336, 2330, 2342, 2342,
+ 2329, 2362, 2333, 2332, 2344, 2344, 2335, 2334, 2337, 2346,
+
+ 2339, 2340, 2341, 2349, 2345, 2347, 2347, 2351, 2346, 2350,
+ 2350, 2352, 2349, 2353, 2355, 2354, 2356, 2357, 2358, 2365,
+ 2353, 2359, 2359, 2360, 2360, 2351, 2361, 2361, 2363, 2352,
+ 2354, 2366, 2355, 2357, 2356, 2364, 2366, 2358, 2365, 2367,
+ 2368, 2370, 2369, 2370, 2371, 2371, 2363, 2369, 2375, 2372,
+ 2364, 2372, 2373, 2373, 2377, 2378, 2379, 2380, 2382, 2367,
+ 2368, 2381, 2383, 2377, 2386, 2389, 2381, 2375, 2379, 2387,
+ 2388, 2388, 2387, 2390, 2378, 2391, 2391, 2380, 2382, 2392,
+ 2389, 2383, 2394, 2392, 2386, 2395, 2396, 2396, 2397, 2395,
+ 2399, 2390, 2400, 2401, 2402, 2402, 2404, 2394, 2405, 2406,
+
+ 2408, 2397, 2412, 2406, 2420, 2399, 2410, 2405, 2404, 2407,
+ 2407, 2410, 2400, 2401, 2409, 2409, 2411, 2413, 2412, 2408,
+ 2414, 2414, 2419, 2419, 2422, 2411, 2420, 2421, 2421, 2413,
+ 2423, 2424, 2425, 2426, 2426, 2427, 2437, 2422, 2429, 2429,
+ 2424, 2425, 2432, 2423, 2433, 2434, 2435, 2432, 2436, 2433,
+ 2427, 2435, 2438, 2441, 2439, 2437, 2436, 2444, 2442, 2434,
+ 2443, 2438, 2439, 2442, 2448, 2443, 2445, 2445, 2441, 2446,
+ 2446, 2448, 2444, 2447, 2447, 2449, 2450, 2451, 2452, 0,
+ 2449, 2453, 2454, 2454, 2452, 2455, 2453, 2456, 2457, 2457,
+ 2458, 2458, 2456, 2461, 2450, 2451, 2462, 2462, 2463, 2464,
+
+ 2455, 2463, 2465, 2466, 2464, 2464, 2461, 2465, 2466, 2467,
+ 2468, 2469, 2470, 2471, 2472, 2469, 2468, 2470, 2473, 2474,
+ 2477, 2475, 2471, 2467, 2476, 2477, 2473, 2475, 2480, 2472,
+ 2476, 2478, 2481, 2480, 2483, 2481, 2485, 2486, 2487, 2488,
+ 2474, 2485, 2486, 2478, 2489, 2490, 2483, 2491, 2491, 2492,
+ 2496, 2497, 2488, 2489, 2490, 2498, 2487, 2500, 2492, 2499,
+ 2499, 2501, 2502, 2503, 2503, 2504, 2506, 2508, 2509, 2496,
+ 2501, 2497, 2509, 2511, 2498, 0, 2500, 2502, 2510, 2510,
+ 2512, 2506, 2513, 2514, 2504, 2516, 2512, 2508, 2513, 2514,
+ 2515, 2515, 2517, 2516, 2519, 2520, 2522, 2517, 2511, 2523,
+
+ 2522, 2524, 2527, 2519, 2526, 2526, 2528, 2528, 2520, 2529,
+ 2529, 2531, 2531, 2523, 2532, 2537, 2524, 2533, 2532, 2539,
+ 2527, 2538, 2533, 2535, 2535, 2542, 2538, 2540, 2543, 2543,
+ 2550, 2539, 2540, 2540, 2548, 2537, 2545, 2545, 2546, 2546,
+ 2547, 2552, 2556, 2547, 2559, 2542, 2558, 2548, 2550, 2553,
+ 2553, 2554, 2554, 2555, 2555, 2557, 2557, 2556, 2560, 2558,
+ 2561, 2552, 2559, 2562, 2562, 2563, 2561, 2568, 2567, 2563,
+ 2571, 2569, 2560, 2567, 2567, 2570, 2571, 2572, 2573, 2583,
+ 2574, 2575, 2575, 2572, 2574, 2580, 2581, 2578, 2586, 2581,
+ 2568, 2569, 2578, 2580, 2584, 2570, 2587, 2584, 2585, 2585,
+
+ 2588, 2587, 2589, 2573, 2583, 2586, 2586, 2590, 2591, 2591,
+ 2592, 2594, 2593, 2595, 2613, 2593, 2598, 2613, 2588, 2596,
+ 0, 2590, 2589, 2593, 2592, 2594, 2606, 2596, 2597, 2599,
+ 2599, 2604, 2595, 2597, 2597, 2598, 2600, 2600, 2601, 2601,
+ 2602, 2602, 2603, 2603, 2605, 2607, 2606, 2604, 2608, 2605,
+ 2609, 2614, 2610, 2612, 2612, 2616, 2616, 2608, 2617, 2618,
+ 2618, 2619, 2621, 2621, 2622, 2617, 2619, 2623, 2624, 2614,
+ 2609, 2607, 2610, 2622, 2626, 0, 2623, 2624, 2627, 2627,
+ 2628, 2629, 2630, 2631, 2628, 2632, 2633, 2634, 2631, 2631,
+ 2629, 2634, 2626, 2642, 2638, 2633, 2643, 2630, 2632, 2638,
+
+ 2639, 2639, 2641, 2641, 2644, 2646, 2647, 2642, 2650, 2652,
+ 2651, 2653, 2655, 2657, 2646, 2659, 0, 2653, 2647, 2651,
+ 2659, 2643, 2644, 2660, 2655, 2661, 2661, 2662, 2660, 2652,
+ 2664, 2667, 2667, 2650, 2657, 2664, 2662, 2665, 2665, 2668,
+ 2668, 2665, 2669, 2669, 2670, 2671, 2673, 2672, 2675, 2679,
+ 2676, 2673, 2677, 2670, 2675, 2676, 2680, 2677, 2678, 2678,
+ 2681, 2683, 2685, 2692, 2682, 2671, 2672, 2679, 2680, 2682,
+ 2684, 2686, 2686, 2688, 2693, 2689, 2684, 2688, 2690, 2683,
+ 2689, 2681, 2692, 2690, 2691, 2691, 2694, 2685, 2698, 2693,
+ 2696, 2696, 2699, 2700, 2701, 2702, 2703, 2700, 2706, 2704,
+
+ 2708, 2698, 2713, 2701, 2705, 2699, 2694, 2704, 0, 2705,
+ 2724, 2702, 2707, 2707, 2717, 2703, 2710, 2710, 2718, 2708,
+ 2711, 2711, 2719, 2713, 2706, 2715, 2715, 2720, 2722, 2722,
+ 2717, 2723, 2720, 2724, 2718, 2725, 2727, 2727, 2719, 2728,
+ 2729, 2730, 2730, 2733, 2734, 2736, 2739, 2735, 2737, 2737,
+ 2734, 2723, 2735, 2728, 2725, 2738, 2738, 2740, 2740, 2729,
+ 2741, 2742, 2743, 2733, 2745, 2747, 2739, 2736, 2744, 2746,
+ 2742, 2741, 2748, 2748, 2744, 2749, 2754, 2740, 2749, 2750,
+ 2750, 2746, 2743, 2745, 2755, 2747, 2756, 2759, 2754, 2757,
+ 2757, 2758, 2756, 2759, 2758, 2760, 2762, 2763, 2763, 2765,
+
+ 2764, 2762, 2766, 2767, 2755, 2764, 2768, 2768, 2766, 2771,
+ 2770, 2772, 2773, 2760, 2774, 2774, 2775, 2776, 2765, 2781,
+ 2767, 2767, 2770, 2778, 2778, 2773, 2776, 2771, 2779, 2779,
+ 2783, 2783, 2780, 2781, 2782, 2775, 2772, 2780, 2791, 2782,
+ 2784, 2784, 2785, 2785, 2786, 2788, 2788, 2793, 2794, 2786,
+ 2795, 2796, 2796, 2798, 2798, 2800, 2801, 2791, 2805, 2799,
+ 2802, 2802, 2803, 2803, 2805, 2801, 2806, 2815, 2807, 2793,
+ 2794, 2808, 2795, 2799, 0, 2800, 2808, 2811, 2811, 2813,
+ 2813, 2815, 2817, 2814, 2816, 2818, 2806, 2807, 2814, 2822,
+ 2816, 2819, 2819, 2818, 2817, 2820, 2823, 2824, 2825, 2826,
+
+ 2820, 2829, 2824, 2828, 2830, 2826, 2831, 2833, 2836, 2822,
+ 2825, 2828, 2834, 2835, 2837, 2840, 2823, 2839, 2842, 2837,
+ 2829, 2841, 2839, 2842, 2830, 2833, 2831, 2841, 2834, 2836,
+ 2835, 2835, 2844, 2845, 2876, 2840, 2848, 2848, 2849, 2849,
+ 2850, 2854, 2854, 2876, 2850, 2860, 2845, 2856, 2856, 2860,
+ 2857, 2857, 2844, 2857, 2858, 2858, 2863, 2858, 2859, 2859,
+ 2867, 2859, 2862, 2862, 2864, 2868, 2869, 2870, 2870, 2873,
+ 2874, 2869, 2875, 2877, 2863, 2879, 2875, 2874, 2864, 0,
+ 2867, 2880, 2881, 2881, 2884, 2868, 2882, 2882, 2877, 2886,
+ 2880, 2883, 2883, 2879, 2873, 2885, 2889, 2887, 2886, 2884,
+
+ 2885, 2886, 2887, 2887, 2888, 2890, 2891, 2892, 2893, 2894,
+ 2888, 2896, 2892, 2893, 2895, 2895, 2897, 2896, 2898, 2898,
+ 2890, 2889, 2897, 2899, 2899, 2900, 2931, 2891, 2894, 2931,
+ 2900, 2903, 2903, 2906, 2906, 2907, 2907, 2908, 2908, 2909,
+ 2909, 2910, 2910, 2911, 2911, 2912, 2912, 2914, 2915, 2915,
+ 2916, 2917, 2918, 2922, 2920, 2924, 2914, 2921, 2921, 2916,
+ 2926, 2923, 2930, 2917, 2925, 2925, 2932, 2924, 2922, 2927,
+ 2927, 2934, 2918, 2920, 2923, 2926, 2933, 2933, 2936, 2937,
+ 2930, 2936, 2938, 2939, 2940, 2937, 2941, 2944, 2939, 2934,
+ 2942, 2945, 2932, 2944, 2948, 2957, 2938, 2959, 2957, 2964,
+
+ 2945, 2960, 2960, 2940, 2941, 2965, 2942, 2961, 2961, 2948,
+ 2959, 2962, 2962, 2966, 2965, 2967, 2968, 2966, 2970, 2972,
+ 2971, 2973, 2964, 2973, 2972, 2974, 2975, 2975, 2977, 2976,
+ 2968, 2971, 2978, 2979, 2980, 2967, 2981, 2982, 2985, 2984,
+ 2974, 2970, 2976, 2983, 2991, 2993, 2982, 2977, 2986, 2979,
+ 2978, 2981, 2990, 2986, 2993, 2983, 2992, 2992, 2985, 2980,
+ 2984, 2994, 2994, 2998, 2991, 2999, 2990, 2995, 2995, 2996,
+ 2996, 2997, 2997, 3000, 3001, 3002, 3000, 3003, 3004, 3001,
+ 3002, 3005, 2998, 3006, 3007, 2999, 3008, 3005, 3009, 3010,
+ 3010, 3008, 3011, 3004, 3012, 3015, 3007, 3006, 3013, 3013,
+
+ 3017, 3022, 3003, 3020, 3020, 3021, 3021, 3011, 3009, 3022,
+ 3015, 3023, 3026, 3012, 3024, 3025, 3027, 3028, 3017, 3029,
+ 3024, 3025, 3030, 3030, 3029, 3033, 3026, 3031, 3031, 3027,
+ 3023, 3034, 3039, 3036, 3037, 3040, 3028, 3041, 3037, 3044,
+ 3040, 3042, 3043, 3045, 3046, 3050, 3033, 3036, 3045, 3046,
+ 3051, 3034, 3039, 3052, 3042, 3043, 3041, 3055, 3044, 3047,
+ 3047, 3053, 3053, 3055, 3054, 3050, 3056, 3056, 3051, 3054,
+ 3057, 3058, 3052, 3059, 3060, 3057, 3058, 3061, 3059, 3063,
+ 3063, 3064, 3068, 3061, 3065, 3065, 3064, 3067, 3069, 3070,
+ 3071, 3067, 3072, 3060, 3073, 3069, 3081, 3074, 3072, 3076,
+
+ 3076, 3068, 3078, 3078, 3082, 3079, 3080, 3083, 3070, 3071,
+ 3074, 3080, 3086, 3073, 3079, 3081, 3085, 3079, 3084, 3084,
+ 3083, 3085, 3088, 3082, 3090, 3086, 3089, 3089, 3091, 3091,
+ 3092, 3092, 3093, 3094, 3095, 3096, 3096, 3093, 0, 3097,
+ 3094, 3099, 3099, 3090, 3097, 3098, 3102, 3098, 3088, 3100,
+ 3101, 3104, 3107, 3095, 3103, 3111, 3100, 3101, 3109, 3103,
+ 3106, 3106, 3110, 3109, 3112, 3102, 3116, 3110, 3113, 3113,
+ 3104, 3107, 3115, 3115, 3111, 3117, 3118, 3118, 3119, 3119,
+ 3120, 3122, 3122, 3112, 3124, 3116, 3130, 3120, 3123, 3123,
+ 3126, 3124, 3129, 3131, 3117, 3126, 0, 3129, 3132, 3132,
+
+ 3133, 3133, 0, 0, 0, 3130, 0, 0, 0, 0,
+ 0, 0, 3131, 3137, 3137, 3137, 3137, 3137, 3137, 3137,
+ 3138, 3138, 3138, 3138, 3138, 3138, 3138, 3139, 3139, 3139,
+ 3139, 3139, 3139, 3139, 3140, 3140, 3140, 3140, 3140, 3140,
+ 3140, 3141, 3141, 3141, 3141, 3141, 3141, 3141, 3142, 3142,
+ 3142, 3142, 3142, 3142, 3142, 3143, 3143, 3143, 3143, 3143,
+ 3143, 3143, 3145, 3145, 0, 3145, 3145, 3145, 3145, 3146,
+ 3146, 0, 0, 0, 3146, 3146, 3147, 3147, 0, 0,
+ 3147, 0, 3147, 3148, 0, 0, 0, 0, 0, 3148,
+ 3149, 3149, 0, 0, 0, 3149, 3149, 3150, 0, 0,
+
+ 0, 0, 0, 3150, 3151, 3151, 0, 3151, 3151, 3151,
+ 3151, 3152, 0, 0, 0, 0, 0, 3152, 3153, 3153,
+ 0, 0, 0, 3153, 3153, 3154, 3154, 0, 3154, 3154,
+ 3154, 3154, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136,
+ 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136,
+ 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136,
+ 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136,
+ 3136, 3136, 3136
} ;
static yy_state_type yy_last_accepting_state;
@@ -2777,11 +2898,13 @@ struct inc_state {
int line;
YY_BUFFER_STATE buffer;
struct inc_state* next;
+ int inc_toplevel;
};
static struct inc_state* config_include_stack = NULL;
static int inc_depth = 0;
static int inc_prev = 0;
static int num_args = 0;
+static int inc_toplevel = 0;
void init_cfg_parse(void)
{
@@ -2789,14 +2912,15 @@ void init_cfg_parse(void)
inc_depth = 0;
inc_prev = 0;
num_args = 0;
+ inc_toplevel = 0;
}
-static void config_start_include(const char* filename)
+static void config_start_include(const char* filename, int toplevel)
{
FILE *input;
struct inc_state* s;
char* nm;
- if(inc_depth++ > 100000) {
+ if(inc_depth+1 > 100000) {
ub_c_error_msg("too many include files");
return;
}
@@ -2828,17 +2952,20 @@ static void config_start_include(const char* filename)
return;
}
LEXOUT(("switch_to_include_file(%s)\n", filename));
+ inc_depth++;
s->filename = cfg_parser->filename;
s->line = cfg_parser->line;
s->buffer = YY_CURRENT_BUFFER;
+ s->inc_toplevel = inc_toplevel;
s->next = config_include_stack;
config_include_stack = s;
cfg_parser->filename = nm;
cfg_parser->line = 1;
+ inc_toplevel = toplevel;
yy_switch_to_buffer(yy_create_buffer(input,YY_BUF_SIZE));
}
-static void config_start_include_glob(const char* filename)
+static void config_start_include_glob(const char* filename, int toplevel)
{
/* check for wildcards */
@@ -2871,19 +2998,19 @@ static void config_start_include_glob(const char* filename)
globfree(&g);
if(r == GLOB_NOMATCH)
return; /* no matches for pattern */
- config_start_include(filename); /* let original deal with it */
+ config_start_include(filename, toplevel); /* let original deal with it */
return;
}
/* process files found, if any */
for(i=(int)g.gl_pathc-1; i>=0; i--) {
- config_start_include(g.gl_pathv[i]);
+ config_start_include(g.gl_pathv[i], toplevel);
}
globfree(&g);
return;
}
#endif /* HAVE_GLOB */
- config_start_include(filename);
+ config_start_include(filename, toplevel);
}
static void config_end_include(void)
@@ -2897,6 +3024,7 @@ static void config_end_include(void)
yy_delete_buffer(YY_CURRENT_BUFFER);
yy_switch_to_buffer(s->buffer);
config_include_stack = s->next;
+ inc_toplevel = s->inc_toplevel;
free(s);
}
@@ -2910,7 +3038,7 @@ static void config_end_include(void)
#endif
#define YY_NO_INPUT 1
-#line 184 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 191 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
#ifndef YY_NO_UNPUT
#define YY_NO_UNPUT 1
#endif
@@ -2918,7 +3046,7 @@ static void config_end_include(void)
#define YY_NO_INPUT 1
#endif
-#line 2920 "<stdout>"
+#line 3048 "<stdout>"
#define INITIAL 0
#define quotedstring 1
@@ -2926,6 +3054,8 @@ static void config_end_include(void)
#define include 3
#define include_quoted 4
#define val 5
+#define include_toplevel 6
+#define include_toplevel_quoted 7
#ifndef YY_NO_UNISTD_H
/* Special case for "unistd.h", since it is non-ANSI. We include it way
@@ -3114,11 +3244,13 @@ YY_DECL
if ( ! (yy_start) )
(yy_start) = 1; /* first start state */
- if ( ! yyin )
+ if ( ! yyin ) {
yyin = stdin;
+ }
- if ( ! yyout )
+ if ( ! yyout ) {
yyout = stdout;
+ }
if ( ! YY_CURRENT_BUFFER ) {
yyensure_buffer_stack ();
@@ -3127,12 +3259,12 @@ YY_DECL
}
yy_load_buffer_state( );
- }
+ }
{
-#line 204 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 211 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-#line 3134 "<stdout>"
+#line 3266 "<stdout>"
while ( 1 ) /* loops until end-of-file is reached */
{
@@ -3165,13 +3297,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 >= 2986 )
+ if ( yy_current_state >= 3137 )
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] != 5813 );
+ while ( yy_base[yy_current_state] != 6133 );
yy_find_action:
yy_act = yy_accept[yy_current_state];
@@ -3197,1456 +3329,1523 @@ do_action: /* This label is used only to access EOF actions. */
case 1:
YY_RULE_SETUP
-#line 205 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 212 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
LEXOUT(("SP ")); /* ignore */ }
YY_BREAK
case 2:
YY_RULE_SETUP
-#line 207 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 214 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
/* note that flex makes the longest match and '.' is any but not nl */
LEXOUT(("comment(%s) ", yytext)); /* ignore */ }
YY_BREAK
case 3:
YY_RULE_SETUP
-#line 210 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 217 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(0, VAR_SERVER) }
YY_BREAK
case 4:
YY_RULE_SETUP
-#line 211 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 218 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_QNAME_MINIMISATION) }
YY_BREAK
case 5:
YY_RULE_SETUP
-#line 212 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 219 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_QNAME_MINIMISATION_STRICT) }
YY_BREAK
case 6:
YY_RULE_SETUP
-#line 213 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 220 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_NUM_THREADS) }
YY_BREAK
case 7:
YY_RULE_SETUP
-#line 214 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 221 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_VERBOSITY) }
YY_BREAK
case 8:
YY_RULE_SETUP
-#line 215 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 222 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_PORT) }
YY_BREAK
case 9:
YY_RULE_SETUP
-#line 216 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 223 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_RANGE) }
YY_BREAK
case 10:
YY_RULE_SETUP
-#line 217 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 224 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_PORT_PERMIT) }
YY_BREAK
case 11:
YY_RULE_SETUP
-#line 218 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 225 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_PORT_AVOID) }
YY_BREAK
case 12:
YY_RULE_SETUP
-#line 219 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 226 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_NUM_TCP) }
YY_BREAK
case 13:
YY_RULE_SETUP
-#line 220 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 227 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_INCOMING_NUM_TCP) }
YY_BREAK
case 14:
YY_RULE_SETUP
-#line 221 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 228 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DO_IP4) }
YY_BREAK
case 15:
YY_RULE_SETUP
-#line 222 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 229 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DO_IP6) }
YY_BREAK
case 16:
YY_RULE_SETUP
-#line 223 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_PREFER_IP6) }
+#line 230 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_PREFER_IP4) }
YY_BREAK
case 17:
YY_RULE_SETUP
-#line 224 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_DO_UDP) }
+#line 231 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_PREFER_IP6) }
YY_BREAK
case 18:
YY_RULE_SETUP
-#line 225 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_DO_TCP) }
+#line 232 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_DO_UDP) }
YY_BREAK
case 19:
YY_RULE_SETUP
-#line 226 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_TCP_UPSTREAM) }
+#line 233 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_DO_TCP) }
YY_BREAK
case 20:
YY_RULE_SETUP
-#line 227 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_TCP_MSS) }
+#line 234 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_TCP_UPSTREAM) }
YY_BREAK
case 21:
YY_RULE_SETUP
-#line 228 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_OUTGOING_TCP_MSS) }
+#line 235 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_TCP_MSS) }
YY_BREAK
case 22:
YY_RULE_SETUP
-#line 229 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_TCP_IDLE_TIMEOUT) }
+#line 236 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_OUTGOING_TCP_MSS) }
YY_BREAK
case 23:
YY_RULE_SETUP
-#line 230 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_EDNS_TCP_KEEPALIVE) }
+#line 237 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_TCP_IDLE_TIMEOUT) }
YY_BREAK
case 24:
YY_RULE_SETUP
-#line 231 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_EDNS_TCP_KEEPALIVE_TIMEOUT) }
+#line 238 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_EDNS_TCP_KEEPALIVE) }
YY_BREAK
case 25:
YY_RULE_SETUP
-#line 232 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_SSL_UPSTREAM) }
+#line 239 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_EDNS_TCP_KEEPALIVE_TIMEOUT) }
YY_BREAK
case 26:
YY_RULE_SETUP
-#line 233 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 240 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_SSL_UPSTREAM) }
YY_BREAK
case 27:
YY_RULE_SETUP
-#line 234 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_SSL_SERVICE_KEY) }
+#line 241 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_SSL_UPSTREAM) }
YY_BREAK
case 28:
YY_RULE_SETUP
-#line 235 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 242 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_SSL_SERVICE_KEY) }
YY_BREAK
case 29:
YY_RULE_SETUP
-#line 236 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_SSL_SERVICE_PEM) }
+#line 243 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_SSL_SERVICE_KEY) }
YY_BREAK
case 30:
YY_RULE_SETUP
-#line 237 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 244 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_SSL_SERVICE_PEM) }
YY_BREAK
case 31:
YY_RULE_SETUP
-#line 238 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_SSL_PORT) }
+#line 245 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_SSL_SERVICE_PEM) }
YY_BREAK
case 32:
YY_RULE_SETUP
-#line 239 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 246 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_SSL_PORT) }
YY_BREAK
case 33:
YY_RULE_SETUP
-#line 240 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_TLS_CERT_BUNDLE) }
+#line 247 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_SSL_PORT) }
YY_BREAK
case 34:
YY_RULE_SETUP
-#line 241 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 248 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_TLS_CERT_BUNDLE) }
YY_BREAK
case 35:
YY_RULE_SETUP
-#line 242 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_TLS_WIN_CERT) }
+#line 249 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_TLS_CERT_BUNDLE) }
YY_BREAK
case 36:
YY_RULE_SETUP
-#line 243 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_TLS_ADDITIONAL_PORT) }
+#line 250 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_TLS_WIN_CERT) }
YY_BREAK
case 37:
YY_RULE_SETUP
-#line 244 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 251 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_TLS_ADDITIONAL_PORT) }
YY_BREAK
case 38:
YY_RULE_SETUP
-#line 245 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 252 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_TLS_ADDITIONAL_PORT) }
YY_BREAK
case 39:
YY_RULE_SETUP
-#line 246 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 253 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_TLS_ADDITIONAL_PORT) }
YY_BREAK
case 40:
YY_RULE_SETUP
-#line 247 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_TLS_SESSION_TICKET_KEYS) }
+#line 254 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_TLS_ADDITIONAL_PORT) }
YY_BREAK
case 41:
YY_RULE_SETUP
-#line 248 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_TLS_CIPHERS) }
+#line 255 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_TLS_SESSION_TICKET_KEYS) }
YY_BREAK
case 42:
YY_RULE_SETUP
-#line 249 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_TLS_CIPHERSUITES) }
+#line 256 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_TLS_CIPHERS) }
YY_BREAK
case 43:
YY_RULE_SETUP
-#line 250 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_USE_SYSTEMD) }
+#line 257 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_TLS_CIPHERSUITES) }
YY_BREAK
case 44:
YY_RULE_SETUP
-#line 251 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_DO_DAEMONIZE) }
+#line 258 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_TLS_USE_SNI) }
YY_BREAK
case 45:
YY_RULE_SETUP
-#line 252 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_INTERFACE) }
+#line 259 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_USE_SYSTEMD) }
YY_BREAK
case 46:
YY_RULE_SETUP
-#line 253 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_INTERFACE) }
+#line 260 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_DO_DAEMONIZE) }
YY_BREAK
case 47:
YY_RULE_SETUP
-#line 254 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_OUTGOING_INTERFACE) }
+#line 261 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_INTERFACE) }
YY_BREAK
case 48:
YY_RULE_SETUP
-#line 255 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_INTERFACE_AUTOMATIC) }
+#line 262 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_INTERFACE) }
YY_BREAK
case 49:
YY_RULE_SETUP
-#line 256 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_SO_RCVBUF) }
+#line 263 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_OUTGOING_INTERFACE) }
YY_BREAK
case 50:
YY_RULE_SETUP
-#line 257 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_SO_SNDBUF) }
+#line 264 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_INTERFACE_AUTOMATIC) }
YY_BREAK
case 51:
YY_RULE_SETUP
-#line 258 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_SO_REUSEPORT) }
+#line 265 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_SO_RCVBUF) }
YY_BREAK
case 52:
YY_RULE_SETUP
-#line 259 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_IP_TRANSPARENT) }
+#line 266 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_SO_SNDBUF) }
YY_BREAK
case 53:
YY_RULE_SETUP
-#line 260 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_IP_FREEBIND) }
+#line 267 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_SO_REUSEPORT) }
YY_BREAK
case 54:
YY_RULE_SETUP
-#line 261 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_CHROOT) }
+#line 268 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_IP_TRANSPARENT) }
YY_BREAK
case 55:
YY_RULE_SETUP
-#line 262 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_USERNAME) }
+#line 269 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_IP_FREEBIND) }
YY_BREAK
case 56:
YY_RULE_SETUP
-#line 263 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_DIRECTORY) }
+#line 270 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_IP_DSCP) }
YY_BREAK
case 57:
YY_RULE_SETUP
-#line 264 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_LOGFILE) }
+#line 271 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_CHROOT) }
YY_BREAK
case 58:
YY_RULE_SETUP
-#line 265 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_PIDFILE) }
+#line 272 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_USERNAME) }
YY_BREAK
case 59:
YY_RULE_SETUP
-#line 266 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_ROOT_HINTS) }
+#line 273 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_DIRECTORY) }
YY_BREAK
case 60:
YY_RULE_SETUP
-#line 267 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_STREAM_WAIT_SIZE) }
+#line 274 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_LOGFILE) }
YY_BREAK
case 61:
YY_RULE_SETUP
-#line 268 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_EDNS_BUFFER_SIZE) }
+#line 275 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_PIDFILE) }
YY_BREAK
case 62:
YY_RULE_SETUP
-#line 269 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_MSG_BUFFER_SIZE) }
+#line 276 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_ROOT_HINTS) }
YY_BREAK
case 63:
YY_RULE_SETUP
-#line 270 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_MSG_CACHE_SIZE) }
+#line 277 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_STREAM_WAIT_SIZE) }
YY_BREAK
case 64:
YY_RULE_SETUP
-#line 271 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_MSG_CACHE_SLABS) }
+#line 278 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_EDNS_BUFFER_SIZE) }
YY_BREAK
case 65:
YY_RULE_SETUP
-#line 272 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_RRSET_CACHE_SIZE) }
+#line 279 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_MSG_BUFFER_SIZE) }
YY_BREAK
case 66:
YY_RULE_SETUP
-#line 273 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_RRSET_CACHE_SLABS) }
+#line 280 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_MSG_CACHE_SIZE) }
YY_BREAK
case 67:
YY_RULE_SETUP
-#line 274 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_CACHE_MAX_TTL) }
+#line 281 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_MSG_CACHE_SLABS) }
YY_BREAK
case 68:
YY_RULE_SETUP
-#line 275 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_CACHE_MAX_NEGATIVE_TTL) }
+#line 282 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_RRSET_CACHE_SIZE) }
YY_BREAK
case 69:
YY_RULE_SETUP
-#line 276 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_CACHE_MIN_TTL) }
+#line 283 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_RRSET_CACHE_SLABS) }
YY_BREAK
case 70:
YY_RULE_SETUP
-#line 277 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_INFRA_HOST_TTL) }
+#line 284 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_CACHE_MAX_TTL) }
YY_BREAK
case 71:
YY_RULE_SETUP
-#line 278 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_INFRA_LAME_TTL) }
+#line 285 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_CACHE_MAX_NEGATIVE_TTL) }
YY_BREAK
case 72:
YY_RULE_SETUP
-#line 279 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_INFRA_CACHE_SLABS) }
+#line 286 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_CACHE_MIN_TTL) }
YY_BREAK
case 73:
YY_RULE_SETUP
-#line 280 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_INFRA_CACHE_NUMHOSTS) }
+#line 287 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_INFRA_HOST_TTL) }
YY_BREAK
case 74:
YY_RULE_SETUP
-#line 281 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_INFRA_CACHE_LAME_SIZE) }
+#line 288 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_INFRA_LAME_TTL) }
YY_BREAK
case 75:
YY_RULE_SETUP
-#line 282 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_INFRA_CACHE_MIN_RTT) }
+#line 289 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_INFRA_CACHE_SLABS) }
YY_BREAK
case 76:
YY_RULE_SETUP
-#line 283 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_NUM_QUERIES_PER_THREAD) }
+#line 290 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_INFRA_CACHE_NUMHOSTS) }
YY_BREAK
case 77:
YY_RULE_SETUP
-#line 284 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_JOSTLE_TIMEOUT) }
+#line 291 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_INFRA_CACHE_LAME_SIZE) }
YY_BREAK
case 78:
YY_RULE_SETUP
-#line 285 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_DELAY_CLOSE) }
+#line 292 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_INFRA_CACHE_MIN_RTT) }
YY_BREAK
case 79:
YY_RULE_SETUP
-#line 286 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_TARGET_FETCH_POLICY) }
+#line 293 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_NUM_QUERIES_PER_THREAD) }
YY_BREAK
case 80:
YY_RULE_SETUP
-#line 287 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_HARDEN_SHORT_BUFSIZE) }
+#line 294 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_JOSTLE_TIMEOUT) }
YY_BREAK
case 81:
YY_RULE_SETUP
-#line 288 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_HARDEN_LARGE_QUERIES) }
+#line 295 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_DELAY_CLOSE) }
YY_BREAK
case 82:
YY_RULE_SETUP
-#line 289 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_HARDEN_GLUE) }
+#line 296 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_TARGET_FETCH_POLICY) }
YY_BREAK
case 83:
YY_RULE_SETUP
-#line 290 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_HARDEN_DNSSEC_STRIPPED) }
+#line 297 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_HARDEN_SHORT_BUFSIZE) }
YY_BREAK
case 84:
YY_RULE_SETUP
-#line 291 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_HARDEN_BELOW_NXDOMAIN) }
+#line 298 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_HARDEN_LARGE_QUERIES) }
YY_BREAK
case 85:
YY_RULE_SETUP
-#line 292 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_HARDEN_REFERRAL_PATH) }
+#line 299 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_HARDEN_GLUE) }
YY_BREAK
case 86:
YY_RULE_SETUP
-#line 293 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_HARDEN_ALGO_DOWNGRADE) }
+#line 300 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_HARDEN_DNSSEC_STRIPPED) }
YY_BREAK
case 87:
YY_RULE_SETUP
-#line 294 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_USE_CAPS_FOR_ID) }
+#line 301 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_HARDEN_BELOW_NXDOMAIN) }
YY_BREAK
case 88:
YY_RULE_SETUP
-#line 295 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_CAPS_WHITELIST) }
+#line 302 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_HARDEN_REFERRAL_PATH) }
YY_BREAK
case 89:
YY_RULE_SETUP
-#line 296 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_UNWANTED_REPLY_THRESHOLD) }
+#line 303 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_HARDEN_ALGO_DOWNGRADE) }
YY_BREAK
case 90:
YY_RULE_SETUP
-#line 297 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_PRIVATE_ADDRESS) }
+#line 304 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_USE_CAPS_FOR_ID) }
YY_BREAK
case 91:
YY_RULE_SETUP
-#line 298 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_PRIVATE_DOMAIN) }
+#line 305 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_CAPS_WHITELIST) }
YY_BREAK
case 92:
YY_RULE_SETUP
-#line 299 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_PREFETCH_KEY) }
+#line 306 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_UNWANTED_REPLY_THRESHOLD) }
YY_BREAK
case 93:
YY_RULE_SETUP
-#line 300 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_PREFETCH) }
+#line 307 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_PRIVATE_ADDRESS) }
YY_BREAK
case 94:
YY_RULE_SETUP
-#line 301 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_DENY_ANY) }
+#line 308 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_PRIVATE_DOMAIN) }
YY_BREAK
case 95:
YY_RULE_SETUP
-#line 302 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(0, VAR_STUB_ZONE) }
+#line 309 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_PREFETCH_KEY) }
YY_BREAK
case 96:
YY_RULE_SETUP
-#line 303 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_NAME) }
+#line 310 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_PREFETCH) }
YY_BREAK
case 97:
YY_RULE_SETUP
-#line 304 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_STUB_ADDR) }
+#line 311 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_DENY_ANY) }
YY_BREAK
case 98:
YY_RULE_SETUP
-#line 305 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_STUB_HOST) }
+#line 312 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(0, VAR_STUB_ZONE) }
YY_BREAK
case 99:
YY_RULE_SETUP
-#line 306 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_STUB_PRIME) }
+#line 313 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_NAME) }
YY_BREAK
case 100:
YY_RULE_SETUP
-#line 307 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_STUB_FIRST) }
+#line 314 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_STUB_ADDR) }
YY_BREAK
case 101:
YY_RULE_SETUP
-#line 308 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_STUB_NO_CACHE) }
+#line 315 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_STUB_HOST) }
YY_BREAK
case 102:
YY_RULE_SETUP
-#line 309 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_STUB_SSL_UPSTREAM) }
+#line 316 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_STUB_PRIME) }
YY_BREAK
case 103:
YY_RULE_SETUP
-#line 310 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_STUB_SSL_UPSTREAM) }
+#line 317 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_STUB_FIRST) }
YY_BREAK
case 104:
YY_RULE_SETUP
-#line 311 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(0, VAR_FORWARD_ZONE) }
+#line 318 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_STUB_NO_CACHE) }
YY_BREAK
case 105:
YY_RULE_SETUP
-#line 312 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_FORWARD_ADDR) }
+#line 319 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_STUB_SSL_UPSTREAM) }
YY_BREAK
case 106:
YY_RULE_SETUP
-#line 313 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_FORWARD_HOST) }
+#line 320 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_STUB_SSL_UPSTREAM) }
YY_BREAK
case 107:
YY_RULE_SETUP
-#line 314 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_FORWARD_FIRST) }
+#line 321 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(0, VAR_FORWARD_ZONE) }
YY_BREAK
case 108:
YY_RULE_SETUP
-#line 315 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_FORWARD_NO_CACHE) }
+#line 322 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_FORWARD_ADDR) }
YY_BREAK
case 109:
YY_RULE_SETUP
-#line 316 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) }
+#line 323 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_FORWARD_HOST) }
YY_BREAK
case 110:
YY_RULE_SETUP
-#line 317 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) }
+#line 324 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_FORWARD_FIRST) }
YY_BREAK
case 111:
YY_RULE_SETUP
-#line 318 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(0, VAR_AUTH_ZONE) }
+#line 325 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_FORWARD_NO_CACHE) }
YY_BREAK
case 112:
YY_RULE_SETUP
-#line 319 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(0, VAR_RPZ) }
+#line 326 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) }
YY_BREAK
case 113:
YY_RULE_SETUP
-#line 320 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_TAGS) }
+#line 327 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) }
YY_BREAK
case 114:
YY_RULE_SETUP
-#line 321 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_RPZ_ACTION_OVERRIDE) }
+#line 328 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(0, VAR_AUTH_ZONE) }
YY_BREAK
case 115:
YY_RULE_SETUP
-#line 322 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_RPZ_CNAME_OVERRIDE) }
+#line 329 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(0, VAR_RPZ) }
YY_BREAK
case 116:
YY_RULE_SETUP
-#line 323 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_RPZ_LOG) }
+#line 330 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_TAGS) }
YY_BREAK
case 117:
YY_RULE_SETUP
-#line 324 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_RPZ_LOG_NAME) }
+#line 331 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_RPZ_ACTION_OVERRIDE) }
YY_BREAK
case 118:
YY_RULE_SETUP
-#line 325 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_ZONEFILE) }
+#line 332 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_RPZ_CNAME_OVERRIDE) }
YY_BREAK
case 119:
YY_RULE_SETUP
-#line 326 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_MASTER) }
+#line 333 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_RPZ_LOG) }
YY_BREAK
case 120:
YY_RULE_SETUP
-#line 327 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_URL) }
+#line 334 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_RPZ_LOG_NAME) }
YY_BREAK
case 121:
YY_RULE_SETUP
-#line 328 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_ALLOW_NOTIFY) }
+#line 335 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_ZONEFILE) }
YY_BREAK
case 122:
YY_RULE_SETUP
-#line 329 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_FOR_DOWNSTREAM) }
+#line 336 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_MASTER) }
YY_BREAK
case 123:
YY_RULE_SETUP
-#line 330 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_FOR_UPSTREAM) }
+#line 337 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_URL) }
YY_BREAK
case 124:
YY_RULE_SETUP
-#line 331 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_FALLBACK_ENABLED) }
+#line 338 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_ALLOW_NOTIFY) }
YY_BREAK
case 125:
YY_RULE_SETUP
-#line 332 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(0, VAR_VIEW) }
+#line 339 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_FOR_DOWNSTREAM) }
YY_BREAK
case 126:
YY_RULE_SETUP
-#line 333 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_VIEW_FIRST) }
+#line 340 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_FOR_UPSTREAM) }
YY_BREAK
case 127:
YY_RULE_SETUP
-#line 334 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_DO_NOT_QUERY_ADDRESS) }
+#line 341 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_FALLBACK_ENABLED) }
YY_BREAK
case 128:
YY_RULE_SETUP
-#line 335 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_DO_NOT_QUERY_LOCALHOST) }
+#line 342 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(0, VAR_VIEW) }
YY_BREAK
case 129:
YY_RULE_SETUP
-#line 336 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(2, VAR_ACCESS_CONTROL) }
+#line 343 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_VIEW_FIRST) }
YY_BREAK
case 130:
YY_RULE_SETUP
-#line 337 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_SEND_CLIENT_SUBNET) }
+#line 344 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_DO_NOT_QUERY_ADDRESS) }
YY_BREAK
case 131:
YY_RULE_SETUP
-#line 338 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_CLIENT_SUBNET_ZONE) }
+#line 345 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_DO_NOT_QUERY_LOCALHOST) }
YY_BREAK
case 132:
YY_RULE_SETUP
-#line 339 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_CLIENT_SUBNET_ALWAYS_FORWARD) }
+#line 346 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(2, VAR_ACCESS_CONTROL) }
YY_BREAK
case 133:
YY_RULE_SETUP
-#line 340 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_CLIENT_SUBNET_OPCODE) }
+#line 347 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_SEND_CLIENT_SUBNET) }
YY_BREAK
case 134:
YY_RULE_SETUP
-#line 341 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_MAX_CLIENT_SUBNET_IPV4) }
+#line 348 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_CLIENT_SUBNET_ZONE) }
YY_BREAK
case 135:
YY_RULE_SETUP
-#line 342 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_MAX_CLIENT_SUBNET_IPV6) }
+#line 349 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_CLIENT_SUBNET_ALWAYS_FORWARD) }
YY_BREAK
case 136:
YY_RULE_SETUP
-#line 343 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_MIN_CLIENT_SUBNET_IPV4) }
+#line 350 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_CLIENT_SUBNET_OPCODE) }
YY_BREAK
case 137:
YY_RULE_SETUP
-#line 344 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_MIN_CLIENT_SUBNET_IPV6) }
+#line 351 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_MAX_CLIENT_SUBNET_IPV4) }
YY_BREAK
case 138:
YY_RULE_SETUP
-#line 345 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_MAX_ECS_TREE_SIZE_IPV4) }
+#line 352 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_MAX_CLIENT_SUBNET_IPV6) }
YY_BREAK
case 139:
YY_RULE_SETUP
-#line 346 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_MAX_ECS_TREE_SIZE_IPV6) }
+#line 353 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_MIN_CLIENT_SUBNET_IPV4) }
YY_BREAK
case 140:
YY_RULE_SETUP
-#line 347 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_HIDE_IDENTITY) }
+#line 354 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_MIN_CLIENT_SUBNET_IPV6) }
YY_BREAK
case 141:
YY_RULE_SETUP
-#line 348 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_HIDE_VERSION) }
+#line 355 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_MAX_ECS_TREE_SIZE_IPV4) }
YY_BREAK
case 142:
YY_RULE_SETUP
-#line 349 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_HIDE_TRUSTANCHOR) }
+#line 356 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_MAX_ECS_TREE_SIZE_IPV6) }
YY_BREAK
case 143:
YY_RULE_SETUP
-#line 350 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_IDENTITY) }
+#line 357 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_HIDE_IDENTITY) }
YY_BREAK
case 144:
YY_RULE_SETUP
-#line 351 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_VERSION) }
+#line 358 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_HIDE_VERSION) }
YY_BREAK
case 145:
YY_RULE_SETUP
-#line 352 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_MODULE_CONF) }
+#line 359 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_HIDE_TRUSTANCHOR) }
YY_BREAK
case 146:
YY_RULE_SETUP
-#line 353 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_DLV_ANCHOR) }
+#line 360 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_IDENTITY) }
YY_BREAK
case 147:
YY_RULE_SETUP
-#line 354 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_DLV_ANCHOR_FILE) }
+#line 361 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_VERSION) }
YY_BREAK
case 148:
YY_RULE_SETUP
-#line 355 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_TRUST_ANCHOR_FILE) }
+#line 362 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_MODULE_CONF) }
YY_BREAK
case 149:
YY_RULE_SETUP
-#line 356 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_AUTO_TRUST_ANCHOR_FILE) }
+#line 363 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_DLV_ANCHOR) }
YY_BREAK
case 150:
YY_RULE_SETUP
-#line 357 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_TRUSTED_KEYS_FILE) }
+#line 364 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_DLV_ANCHOR_FILE) }
YY_BREAK
case 151:
YY_RULE_SETUP
-#line 358 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_TRUST_ANCHOR) }
+#line 365 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_TRUST_ANCHOR_FILE) }
YY_BREAK
case 152:
YY_RULE_SETUP
-#line 359 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_TRUST_ANCHOR_SIGNALING) }
+#line 366 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_AUTO_TRUST_ANCHOR_FILE) }
YY_BREAK
case 153:
YY_RULE_SETUP
-#line 360 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_ROOT_KEY_SENTINEL) }
+#line 367 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_TRUSTED_KEYS_FILE) }
YY_BREAK
case 154:
YY_RULE_SETUP
-#line 361 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_VAL_OVERRIDE_DATE) }
+#line 368 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_TRUST_ANCHOR) }
YY_BREAK
case 155:
YY_RULE_SETUP
-#line 362 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_VAL_SIG_SKEW_MIN) }
+#line 369 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_TRUST_ANCHOR_SIGNALING) }
YY_BREAK
case 156:
YY_RULE_SETUP
-#line 363 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_VAL_SIG_SKEW_MAX) }
+#line 370 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_ROOT_KEY_SENTINEL) }
YY_BREAK
case 157:
YY_RULE_SETUP
-#line 364 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_BOGUS_TTL) }
+#line 371 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_VAL_OVERRIDE_DATE) }
YY_BREAK
case 158:
YY_RULE_SETUP
-#line 365 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_VAL_CLEAN_ADDITIONAL) }
+#line 372 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_VAL_SIG_SKEW_MIN) }
YY_BREAK
case 159:
YY_RULE_SETUP
-#line 366 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_VAL_PERMISSIVE_MODE) }
+#line 373 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_VAL_SIG_SKEW_MAX) }
YY_BREAK
case 160:
YY_RULE_SETUP
-#line 367 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_AGGRESSIVE_NSEC) }
+#line 374 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_BOGUS_TTL) }
YY_BREAK
case 161:
YY_RULE_SETUP
-#line 368 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_IGNORE_CD_FLAG) }
+#line 375 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_VAL_CLEAN_ADDITIONAL) }
YY_BREAK
case 162:
YY_RULE_SETUP
-#line 369 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_SERVE_EXPIRED) }
+#line 376 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_VAL_PERMISSIVE_MODE) }
YY_BREAK
case 163:
YY_RULE_SETUP
-#line 370 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_SERVE_EXPIRED_TTL) }
+#line 377 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_AGGRESSIVE_NSEC) }
YY_BREAK
case 164:
YY_RULE_SETUP
-#line 371 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_SERVE_EXPIRED_TTL_RESET) }
+#line 378 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_IGNORE_CD_FLAG) }
YY_BREAK
case 165:
YY_RULE_SETUP
-#line 372 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_SERVE_EXPIRED_REPLY_TTL) }
+#line 379 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_SERVE_EXPIRED) }
YY_BREAK
case 166:
YY_RULE_SETUP
-#line 373 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_SERVE_EXPIRED_CLIENT_TIMEOUT) }
+#line 380 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_SERVE_EXPIRED_TTL) }
YY_BREAK
case 167:
YY_RULE_SETUP
-#line 374 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_FAKE_DSA) }
+#line 381 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_SERVE_EXPIRED_TTL_RESET) }
YY_BREAK
case 168:
YY_RULE_SETUP
-#line 375 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_FAKE_SHA1) }
+#line 382 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_SERVE_EXPIRED_REPLY_TTL) }
YY_BREAK
case 169:
YY_RULE_SETUP
-#line 376 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_VAL_LOG_LEVEL) }
+#line 383 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_SERVE_EXPIRED_CLIENT_TIMEOUT) }
YY_BREAK
case 170:
YY_RULE_SETUP
-#line 377 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_KEY_CACHE_SIZE) }
+#line 384 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_FAKE_DSA) }
YY_BREAK
case 171:
YY_RULE_SETUP
-#line 378 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_KEY_CACHE_SLABS) }
+#line 385 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_FAKE_SHA1) }
YY_BREAK
case 172:
YY_RULE_SETUP
-#line 379 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
-{ YDVAR(1, VAR_NEG_CACHE_SIZE) }
+#line 386 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_VAL_LOG_LEVEL) }
YY_BREAK
case 173:
YY_RULE_SETUP
-#line 380 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 387 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_KEY_CACHE_SIZE) }
+ YY_BREAK
+case 174:
+YY_RULE_SETUP
+#line 388 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_KEY_CACHE_SLABS) }
+ YY_BREAK
+case 175:
+YY_RULE_SETUP
+#line 389 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_NEG_CACHE_SIZE) }
+ YY_BREAK
+case 176:
+YY_RULE_SETUP
+#line 390 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
YDVAR(1, VAR_VAL_NSEC3_KEYSIZE_ITERATIONS) }
YY_BREAK
-case 174:
+case 177:
YY_RULE_SETUP
-#line 382 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 392 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_ADD_HOLDDOWN) }
YY_BREAK
-case 175:
+case 178:
YY_RULE_SETUP
-#line 383 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 393 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DEL_HOLDDOWN) }
YY_BREAK
-case 176:
+case 179:
YY_RULE_SETUP
-#line 384 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 394 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_KEEP_MISSING) }
YY_BREAK
-case 177:
+case 180:
YY_RULE_SETUP
-#line 385 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 395 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_PERMIT_SMALL_HOLDDOWN) }
YY_BREAK
-case 178:
+case 181:
YY_RULE_SETUP
-#line 386 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 396 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_USE_SYSLOG) }
YY_BREAK
-case 179:
+case 182:
YY_RULE_SETUP
-#line 387 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 397 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_LOG_IDENTITY) }
YY_BREAK
-case 180:
+case 183:
YY_RULE_SETUP
-#line 388 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 398 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_LOG_TIME_ASCII) }
YY_BREAK
-case 181:
+case 184:
YY_RULE_SETUP
-#line 389 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 399 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_LOG_QUERIES) }
YY_BREAK
-case 182:
+case 185:
YY_RULE_SETUP
-#line 390 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 400 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_LOG_REPLIES) }
YY_BREAK
-case 183:
+case 186:
YY_RULE_SETUP
-#line 391 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 401 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_LOG_TAG_QUERYREPLY) }
YY_BREAK
-case 184:
+case 187:
YY_RULE_SETUP
-#line 392 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 402 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_LOG_LOCAL_ACTIONS) }
YY_BREAK
-case 185:
+case 188:
YY_RULE_SETUP
-#line 393 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 403 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_LOG_SERVFAIL) }
YY_BREAK
-case 186:
+case 189:
YY_RULE_SETUP
-#line 394 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 404 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(2, VAR_LOCAL_ZONE) }
YY_BREAK
-case 187:
+case 190:
YY_RULE_SETUP
-#line 395 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 405 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_LOCAL_DATA) }
YY_BREAK
-case 188:
+case 191:
YY_RULE_SETUP
-#line 396 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 406 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_LOCAL_DATA_PTR) }
YY_BREAK
-case 189:
+case 192:
YY_RULE_SETUP
-#line 397 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 407 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_UNBLOCK_LAN_ZONES) }
YY_BREAK
-case 190:
+case 193:
YY_RULE_SETUP
-#line 398 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 408 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_INSECURE_LAN_ZONES) }
YY_BREAK
-case 191:
+case 194:
YY_RULE_SETUP
-#line 399 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 409 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_STATISTICS_INTERVAL) }
YY_BREAK
-case 192:
+case 195:
YY_RULE_SETUP
-#line 400 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 410 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_STATISTICS_CUMULATIVE) }
YY_BREAK
-case 193:
+case 196:
YY_RULE_SETUP
-#line 401 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 411 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_EXTENDED_STATISTICS) }
YY_BREAK
-case 194:
+case 197:
YY_RULE_SETUP
-#line 402 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 412 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_SHM_ENABLE) }
YY_BREAK
-case 195:
+case 198:
YY_RULE_SETUP
-#line 403 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 413 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_SHM_KEY) }
YY_BREAK
-case 196:
+case 199:
YY_RULE_SETUP
-#line 404 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 414 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(0, VAR_REMOTE_CONTROL) }
YY_BREAK
-case 197:
+case 200:
YY_RULE_SETUP
-#line 405 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 415 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_ENABLE) }
YY_BREAK
-case 198:
+case 201:
YY_RULE_SETUP
-#line 406 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 416 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_INTERFACE) }
YY_BREAK
-case 199:
+case 202:
YY_RULE_SETUP
-#line 407 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 417 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_PORT) }
YY_BREAK
-case 200:
+case 203:
YY_RULE_SETUP
-#line 408 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 418 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_USE_CERT) }
YY_BREAK
-case 201:
+case 204:
YY_RULE_SETUP
-#line 409 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 419 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_SERVER_KEY_FILE) }
YY_BREAK
-case 202:
+case 205:
YY_RULE_SETUP
-#line 410 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 420 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_SERVER_CERT_FILE) }
YY_BREAK
-case 203:
+case 206:
YY_RULE_SETUP
-#line 411 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 421 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_KEY_FILE) }
YY_BREAK
-case 204:
+case 207:
YY_RULE_SETUP
-#line 412 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 422 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_CERT_FILE) }
YY_BREAK
-case 205:
+case 208:
YY_RULE_SETUP
-#line 413 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 423 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_PYTHON_SCRIPT) }
YY_BREAK
-case 206:
+case 209:
YY_RULE_SETUP
-#line 414 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 424 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(0, VAR_PYTHON) }
YY_BREAK
-case 207:
+case 210:
YY_RULE_SETUP
-#line 415 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 425 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_DYNLIB_FILE) }
+ YY_BREAK
+case 211:
+YY_RULE_SETUP
+#line 426 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(0, VAR_DYNLIB) }
+ YY_BREAK
+case 212:
+YY_RULE_SETUP
+#line 427 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DOMAIN_INSECURE) }
YY_BREAK
-case 208:
+case 213:
YY_RULE_SETUP
-#line 416 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 428 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_MINIMAL_RESPONSES) }
YY_BREAK
-case 209:
+case 214:
YY_RULE_SETUP
-#line 417 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 429 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_RRSET_ROUNDROBIN) }
YY_BREAK
-case 210:
+case 215:
YY_RULE_SETUP
-#line 418 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 430 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_UNKNOWN_SERVER_TIME_LIMIT) }
YY_BREAK
-case 211:
+case 216:
YY_RULE_SETUP
-#line 419 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 431 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_MAX_UDP_SIZE) }
YY_BREAK
-case 212:
+case 217:
YY_RULE_SETUP
-#line 420 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 432 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNS64_PREFIX) }
YY_BREAK
-case 213:
+case 218:
YY_RULE_SETUP
-#line 421 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 433 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNS64_SYNTHALL) }
YY_BREAK
-case 214:
+case 219:
YY_RULE_SETUP
-#line 422 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 434 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNS64_IGNORE_AAAA) }
YY_BREAK
-case 215:
+case 220:
YY_RULE_SETUP
-#line 423 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 435 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DEFINE_TAG) }
YY_BREAK
-case 216:
+case 221:
YY_RULE_SETUP
-#line 424 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 436 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(2, VAR_LOCAL_ZONE_TAG) }
YY_BREAK
-case 217:
+case 222:
YY_RULE_SETUP
-#line 425 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 437 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(2, VAR_ACCESS_CONTROL_TAG) }
YY_BREAK
-case 218:
+case 223:
YY_RULE_SETUP
-#line 426 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 438 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(3, VAR_ACCESS_CONTROL_TAG_ACTION) }
YY_BREAK
-case 219:
+case 224:
YY_RULE_SETUP
-#line 427 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 439 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(3, VAR_ACCESS_CONTROL_TAG_DATA) }
YY_BREAK
-case 220:
+case 225:
YY_RULE_SETUP
-#line 428 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 440 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(2, VAR_ACCESS_CONTROL_VIEW) }
YY_BREAK
-case 221:
+case 226:
YY_RULE_SETUP
-#line 429 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 441 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(3, VAR_LOCAL_ZONE_OVERRIDE) }
YY_BREAK
-case 222:
+case 227:
YY_RULE_SETUP
-#line 430 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 442 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(0, VAR_DNSTAP) }
YY_BREAK
-case 223:
+case 228:
YY_RULE_SETUP
-#line 431 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 443 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_ENABLE) }
YY_BREAK
-case 224:
+case 229:
YY_RULE_SETUP
-#line 432 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 444 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_DNSTAP_BIDIRECTIONAL) }
+ YY_BREAK
+case 230:
+YY_RULE_SETUP
+#line 445 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_SOCKET_PATH) }
YY_BREAK
-case 225:
+case 231:
YY_RULE_SETUP
-#line 433 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 446 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_DNSTAP_IP) }
+ YY_BREAK
+case 232:
+YY_RULE_SETUP
+#line 447 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_DNSTAP_TLS) }
+ YY_BREAK
+case 233:
+YY_RULE_SETUP
+#line 448 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_DNSTAP_TLS_SERVER_NAME) }
+ YY_BREAK
+case 234:
+YY_RULE_SETUP
+#line 449 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_DNSTAP_TLS_CERT_BUNDLE) }
+ YY_BREAK
+case 235:
+YY_RULE_SETUP
+#line 450 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{
+ YDVAR(1, VAR_DNSTAP_TLS_CLIENT_KEY_FILE) }
+ YY_BREAK
+case 236:
+YY_RULE_SETUP
+#line 452 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{
+ YDVAR(1, VAR_DNSTAP_TLS_CLIENT_CERT_FILE) }
+ YY_BREAK
+case 237:
+YY_RULE_SETUP
+#line 454 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_SEND_IDENTITY) }
YY_BREAK
-case 226:
+case 238:
YY_RULE_SETUP
-#line 434 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 455 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_SEND_VERSION) }
YY_BREAK
-case 227:
+case 239:
YY_RULE_SETUP
-#line 435 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 456 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_IDENTITY) }
YY_BREAK
-case 228:
+case 240:
YY_RULE_SETUP
-#line 436 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 457 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_VERSION) }
YY_BREAK
-case 229:
+case 241:
YY_RULE_SETUP
-#line 437 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 458 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_QUERY_MESSAGES) }
YY_BREAK
-case 230:
+case 242:
YY_RULE_SETUP
-#line 439 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 460 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_RESPONSE_MESSAGES) }
YY_BREAK
-case 231:
+case 243:
YY_RULE_SETUP
-#line 441 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 462 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_CLIENT_QUERY_MESSAGES) }
YY_BREAK
-case 232:
+case 244:
YY_RULE_SETUP
-#line 443 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 464 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_CLIENT_RESPONSE_MESSAGES) }
YY_BREAK
-case 233:
+case 245:
YY_RULE_SETUP
-#line 445 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 466 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_QUERY_MESSAGES) }
YY_BREAK
-case 234:
+case 246:
YY_RULE_SETUP
-#line 447 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 468 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MESSAGES) }
YY_BREAK
-case 235:
+case 247:
YY_RULE_SETUP
-#line 449 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 470 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DISABLE_DNSSEC_LAME_CHECK) }
YY_BREAK
-case 236:
+case 248:
YY_RULE_SETUP
-#line 450 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 471 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_IP_RATELIMIT) }
YY_BREAK
-case 237:
+case 249:
YY_RULE_SETUP
-#line 451 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 472 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_RATELIMIT) }
YY_BREAK
-case 238:
+case 250:
YY_RULE_SETUP
-#line 452 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 473 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_IP_RATELIMIT_SLABS) }
YY_BREAK
-case 239:
+case 251:
YY_RULE_SETUP
-#line 453 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 474 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_RATELIMIT_SLABS) }
YY_BREAK
-case 240:
+case 252:
YY_RULE_SETUP
-#line 454 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 475 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_IP_RATELIMIT_SIZE) }
YY_BREAK
-case 241:
+case 253:
YY_RULE_SETUP
-#line 455 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 476 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_RATELIMIT_SIZE) }
YY_BREAK
-case 242:
+case 254:
YY_RULE_SETUP
-#line 456 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 477 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(2, VAR_RATELIMIT_FOR_DOMAIN) }
YY_BREAK
-case 243:
+case 255:
YY_RULE_SETUP
-#line 457 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 478 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(2, VAR_RATELIMIT_BELOW_DOMAIN) }
YY_BREAK
-case 244:
+case 256:
YY_RULE_SETUP
-#line 458 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 479 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_IP_RATELIMIT_FACTOR) }
YY_BREAK
-case 245:
+case 257:
YY_RULE_SETUP
-#line 459 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 480 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_RATELIMIT_FACTOR) }
YY_BREAK
-case 246:
+case 258:
YY_RULE_SETUP
-#line 460 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 481 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_LOW_RTT) }
YY_BREAK
-case 247:
+case 259:
YY_RULE_SETUP
-#line 461 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 482 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_FAST_SERVER_NUM) }
YY_BREAK
-case 248:
+case 260:
YY_RULE_SETUP
-#line 462 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 483 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_FAST_SERVER_PERMIL) }
YY_BREAK
-case 249:
+case 261:
YY_RULE_SETUP
-#line 463 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 484 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_FAST_SERVER_PERMIL) }
YY_BREAK
-case 250:
+case 262:
YY_RULE_SETUP
-#line 464 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 485 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_FAST_SERVER_PERMIL) }
YY_BREAK
-case 251:
+case 263:
YY_RULE_SETUP
-#line 465 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 486 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(2, VAR_RESPONSE_IP_TAG) }
YY_BREAK
-case 252:
+case 264:
YY_RULE_SETUP
-#line 466 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 487 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(2, VAR_RESPONSE_IP) }
YY_BREAK
-case 253:
+case 265:
YY_RULE_SETUP
-#line 467 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 488 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(2, VAR_RESPONSE_IP_DATA) }
YY_BREAK
-case 254:
+case 266:
YY_RULE_SETUP
-#line 468 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 489 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(0, VAR_DNSCRYPT) }
YY_BREAK
-case 255:
+case 267:
YY_RULE_SETUP
-#line 469 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 490 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_ENABLE) }
YY_BREAK
-case 256:
+case 268:
YY_RULE_SETUP
-#line 470 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 491 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_PORT) }
YY_BREAK
-case 257:
+case 269:
YY_RULE_SETUP
-#line 471 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 492 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_PROVIDER) }
YY_BREAK
-case 258:
+case 270:
YY_RULE_SETUP
-#line 472 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 493 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_SECRET_KEY) }
YY_BREAK
-case 259:
+case 271:
YY_RULE_SETUP
-#line 473 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 494 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_PROVIDER_CERT) }
YY_BREAK
-case 260:
+case 272:
YY_RULE_SETUP
-#line 474 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 495 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_PROVIDER_CERT_ROTATED) }
YY_BREAK
-case 261:
+case 273:
YY_RULE_SETUP
-#line 475 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 496 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
YDVAR(1, VAR_DNSCRYPT_SHARED_SECRET_CACHE_SIZE) }
YY_BREAK
-case 262:
+case 274:
YY_RULE_SETUP
-#line 477 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 498 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
YDVAR(1, VAR_DNSCRYPT_SHARED_SECRET_CACHE_SLABS) }
YY_BREAK
-case 263:
+case 275:
YY_RULE_SETUP
-#line 479 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 500 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_NONCE_CACHE_SIZE) }
YY_BREAK
-case 264:
+case 276:
YY_RULE_SETUP
-#line 480 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 501 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_NONCE_CACHE_SLABS) }
YY_BREAK
-case 265:
+case 277:
YY_RULE_SETUP
-#line 481 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 502 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_IPSECMOD_ENABLED) }
YY_BREAK
-case 266:
+case 278:
YY_RULE_SETUP
-#line 482 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 503 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_IPSECMOD_IGNORE_BOGUS) }
YY_BREAK
-case 267:
+case 279:
YY_RULE_SETUP
-#line 483 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 504 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_IPSECMOD_HOOK) }
YY_BREAK
-case 268:
+case 280:
YY_RULE_SETUP
-#line 484 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 505 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_IPSECMOD_MAX_TTL) }
YY_BREAK
-case 269:
+case 281:
YY_RULE_SETUP
-#line 485 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 506 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_IPSECMOD_WHITELIST) }
YY_BREAK
-case 270:
+case 282:
YY_RULE_SETUP
-#line 486 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 507 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_IPSECMOD_STRICT) }
YY_BREAK
-case 271:
+case 283:
YY_RULE_SETUP
-#line 487 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 508 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(0, VAR_CACHEDB) }
YY_BREAK
-case 272:
+case 284:
YY_RULE_SETUP
-#line 488 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 509 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_CACHEDB_BACKEND) }
YY_BREAK
-case 273:
+case 285:
YY_RULE_SETUP
-#line 489 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 510 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_CACHEDB_SECRETSEED) }
YY_BREAK
-case 274:
+case 286:
YY_RULE_SETUP
-#line 490 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 511 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_CACHEDB_REDISHOST) }
YY_BREAK
-case 275:
+case 287:
YY_RULE_SETUP
-#line 491 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 512 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_CACHEDB_REDISPORT) }
YY_BREAK
-case 276:
+case 288:
YY_RULE_SETUP
-#line 492 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 513 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_CACHEDB_REDISTIMEOUT) }
YY_BREAK
-case 277:
+case 289:
YY_RULE_SETUP
-#line 493 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 514 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ YDVAR(1, VAR_CACHEDB_REDISEXPIRERECORDS) }
+ YY_BREAK
+case 290:
+YY_RULE_SETUP
+#line 515 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(0, VAR_IPSET) }
YY_BREAK
-case 278:
+case 291:
YY_RULE_SETUP
-#line 494 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 516 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_IPSET_NAME_V4) }
YY_BREAK
-case 279:
+case 292:
YY_RULE_SETUP
-#line 495 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 517 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_IPSET_NAME_V6) }
YY_BREAK
-case 280:
+case 293:
YY_RULE_SETUP
-#line 496 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 518 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_UDP_UPSTREAM_WITHOUT_DOWNSTREAM) }
YY_BREAK
-case 281:
+case 294:
YY_RULE_SETUP
-#line 497 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 519 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(2, VAR_TCP_CONNECTION_LIMIT) }
YY_BREAK
-case 282:
-/* rule 282 can match eol */
+case 295:
+/* rule 295 can match eol */
YY_RULE_SETUP
-#line 498 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 520 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ LEXOUT(("NL\n")); cfg_parser->line++; }
YY_BREAK
/* Quoted strings. Strip leading and ending quotes */
-case 283:
+case 296:
YY_RULE_SETUP
-#line 501 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 523 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ BEGIN(quotedstring); LEXOUT(("QS ")); }
YY_BREAK
case YY_STATE_EOF(quotedstring):
-#line 502 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 524 "/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 284:
+case 297:
YY_RULE_SETUP
-#line 507 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 529 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ LEXOUT(("STR(%s) ", yytext)); yymore(); }
YY_BREAK
-case 285:
-/* rule 285 can match eol */
+case 298:
+/* rule 298 can match eol */
YY_RULE_SETUP
-#line 508 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 530 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ yyerror("newline inside quoted string, no end \"");
cfg_parser->line++; BEGIN(INITIAL); }
YY_BREAK
-case 286:
+case 299:
YY_RULE_SETUP
-#line 510 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 532 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
LEXOUT(("QE "));
if(--num_args == 0) { BEGIN(INITIAL); }
@@ -4659,34 +4858,34 @@ YY_RULE_SETUP
}
YY_BREAK
/* Single Quoted strings. Strip leading and ending quotes */
-case 287:
+case 300:
YY_RULE_SETUP
-#line 522 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 544 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ BEGIN(singlequotedstr); LEXOUT(("SQS ")); }
YY_BREAK
case YY_STATE_EOF(singlequotedstr):
-#line 523 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 545 "/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 288:
+case 301:
YY_RULE_SETUP
-#line 528 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 550 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ LEXOUT(("STR(%s) ", yytext)); yymore(); }
YY_BREAK
-case 289:
-/* rule 289 can match eol */
+case 302:
+/* rule 302 can match eol */
YY_RULE_SETUP
-#line 529 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 551 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ yyerror("newline inside quoted string, no end '");
cfg_parser->line++; BEGIN(INITIAL); }
YY_BREAK
-case 290:
+case 303:
YY_RULE_SETUP
-#line 531 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 553 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
LEXOUT(("SQE "));
if(--num_args == 0) { BEGIN(INITIAL); }
@@ -4699,114 +4898,189 @@ YY_RULE_SETUP
}
YY_BREAK
/* include: directive */
-case 291:
+case 304:
YY_RULE_SETUP
-#line 543 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 565 "/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 545 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 567 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
yyerror("EOF inside include directive");
BEGIN(inc_prev);
}
YY_BREAK
-case 292:
+case 305:
YY_RULE_SETUP
-#line 549 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 571 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ LEXOUT(("ISP ")); /* ignore */ }
YY_BREAK
-case 293:
-/* rule 293 can match eol */
+case 306:
+/* rule 306 can match eol */
YY_RULE_SETUP
-#line 550 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 572 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ LEXOUT(("NL\n")); cfg_parser->line++;}
YY_BREAK
-case 294:
+case 307:
YY_RULE_SETUP
-#line 551 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 573 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ LEXOUT(("IQS ")); BEGIN(include_quoted); }
YY_BREAK
-case 295:
+case 308:
YY_RULE_SETUP
-#line 552 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 574 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
LEXOUT(("Iunquotedstr(%s) ", yytext));
- config_start_include_glob(yytext);
+ config_start_include_glob(yytext, 0);
BEGIN(inc_prev);
}
YY_BREAK
case YY_STATE_EOF(include_quoted):
-#line 557 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 579 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
yyerror("EOF inside quoted string");
BEGIN(inc_prev);
}
YY_BREAK
-case 296:
+case 309:
YY_RULE_SETUP
-#line 561 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 583 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ LEXOUT(("ISTR(%s) ", yytext)); yymore(); }
YY_BREAK
-case 297:
-/* rule 297 can match eol */
+case 310:
+/* rule 310 can match eol */
YY_RULE_SETUP
-#line 562 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 584 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ yyerror("newline before \" in include name");
cfg_parser->line++; BEGIN(inc_prev); }
YY_BREAK
-case 298:
+case 311:
YY_RULE_SETUP
-#line 564 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 586 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
LEXOUT(("IQE "));
yytext[yyleng - 1] = '\0';
- config_start_include_glob(yytext);
+ config_start_include_glob(yytext, 0);
BEGIN(inc_prev);
}
YY_BREAK
case YY_STATE_EOF(INITIAL):
case YY_STATE_EOF(val):
-#line 570 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 592 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
LEXOUT(("LEXEOF "));
yy_set_bol(1); /* Set beginning of line, so "^" rules match. */
if (!config_include_stack) {
yyterminate();
} else {
+ int prev_toplevel = inc_toplevel;
fclose(yyin);
config_end_include();
+ if(prev_toplevel) return (VAR_FORCE_TOPLEVEL);
}
}
YY_BREAK
-case 299:
+/* include-toplevel: directive */
+case 312:
YY_RULE_SETUP
-#line 581 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 606 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{
+ LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include_toplevel);
+}
+ YY_BREAK
+case YY_STATE_EOF(include_toplevel):
+#line 609 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{
+ yyerror("EOF inside include_toplevel directive");
+ BEGIN(inc_prev);
+}
+ YY_BREAK
+case 313:
+YY_RULE_SETUP
+#line 613 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ LEXOUT(("ITSP ")); /* ignore */ }
+ YY_BREAK
+case 314:
+/* rule 314 can match eol */
+YY_RULE_SETUP
+#line 614 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ LEXOUT(("NL\n")); cfg_parser->line++; }
+ YY_BREAK
+case 315:
+YY_RULE_SETUP
+#line 615 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ LEXOUT(("ITQS ")); BEGIN(include_toplevel_quoted); }
+ YY_BREAK
+case 316:
+YY_RULE_SETUP
+#line 616 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{
+ LEXOUT(("ITunquotedstr(%s) ", yytext));
+ config_start_include_glob(yytext, 1);
+ BEGIN(inc_prev);
+ return (VAR_FORCE_TOPLEVEL);
+}
+ YY_BREAK
+case YY_STATE_EOF(include_toplevel_quoted):
+#line 622 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{
+ yyerror("EOF inside quoted string");
+ BEGIN(inc_prev);
+}
+ YY_BREAK
+case 317:
+YY_RULE_SETUP
+#line 626 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{ LEXOUT(("ITSTR(%s) ", yytext)); yymore(); }
+ YY_BREAK
+case 318:
+/* rule 318 can match eol */
+YY_RULE_SETUP
+#line 627 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{
+ yyerror("newline before \" in include name");
+ cfg_parser->line++; BEGIN(inc_prev);
+}
+ YY_BREAK
+case 319:
+YY_RULE_SETUP
+#line 631 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+{
+ LEXOUT(("ITQE "));
+ yytext[yyleng - 1] = '\0';
+ config_start_include_glob(yytext, 1);
+ BEGIN(inc_prev);
+ return (VAR_FORCE_TOPLEVEL);
+}
+ YY_BREAK
+case 320:
+YY_RULE_SETUP
+#line 639 "/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 300:
+case 321:
YY_RULE_SETUP
-#line 585 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 643 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
ub_c_error_msg("unknown keyword '%s'", yytext);
}
YY_BREAK
-case 301:
+case 322:
YY_RULE_SETUP
-#line 589 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 647 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
ub_c_error_msg("stray '%s'", yytext);
}
YY_BREAK
-case 302:
+case 323:
YY_RULE_SETUP
-#line 593 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 651 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
ECHO;
YY_BREAK
-#line 4808 "<stdout>"
+#line 5082 "<stdout>"
case YY_END_OF_BUFFER:
{
@@ -5099,7 +5373,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 >= 2986 )
+ if ( yy_current_state >= 3137 )
yy_c = yy_meta[(unsigned int) yy_c];
}
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
@@ -5127,11 +5401,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 >= 2986 )
+ if ( yy_current_state >= 3137 )
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 == 2985);
+ yy_is_jam = (yy_current_state == 3136);
return yy_is_jam ? 0 : yy_current_state;
}
@@ -5764,7 +6038,7 @@ void yyfree (void * ptr )
#define YYTABLES_NAME "yytables"
-#line 593 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
+#line 651 "/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 deedffa58da..83cea4b992f 100644
--- a/sbin/unwind/libunbound/util/configlexer.lex
+++ b/sbin/unwind/libunbound/util/configlexer.lex
@@ -45,11 +45,13 @@ struct inc_state {
int line;
YY_BUFFER_STATE buffer;
struct inc_state* next;
+ int inc_toplevel;
};
static struct inc_state* config_include_stack = NULL;
static int inc_depth = 0;
static int inc_prev = 0;
static int num_args = 0;
+static int inc_toplevel = 0;
void init_cfg_parse(void)
{
@@ -57,14 +59,15 @@ void init_cfg_parse(void)
inc_depth = 0;
inc_prev = 0;
num_args = 0;
+ inc_toplevel = 0;
}
-static void config_start_include(const char* filename)
+static void config_start_include(const char* filename, int toplevel)
{
FILE *input;
struct inc_state* s;
char* nm;
- if(inc_depth++ > 100000) {
+ if(inc_depth+1 > 100000) {
ub_c_error_msg("too many include files");
return;
}
@@ -96,17 +99,20 @@ static void config_start_include(const char* filename)
return;
}
LEXOUT(("switch_to_include_file(%s)\n", filename));
+ inc_depth++;
s->filename = cfg_parser->filename;
s->line = cfg_parser->line;
s->buffer = YY_CURRENT_BUFFER;
+ s->inc_toplevel = inc_toplevel;
s->next = config_include_stack;
config_include_stack = s;
cfg_parser->filename = nm;
cfg_parser->line = 1;
+ inc_toplevel = toplevel;
yy_switch_to_buffer(yy_create_buffer(input, YY_BUF_SIZE));
}
-static void config_start_include_glob(const char* filename)
+static void config_start_include_glob(const char* filename, int toplevel)
{
/* check for wildcards */
@@ -139,19 +145,19 @@ static void config_start_include_glob(const char* filename)
globfree(&g);
if(r == GLOB_NOMATCH)
return; /* no matches for pattern */
- config_start_include(filename); /* let original deal with it */
+ config_start_include(filename, toplevel); /* let original deal with it */
return;
}
/* process files found, if any */
for(i=(int)g.gl_pathc-1; i>=0; i--) {
- config_start_include(g.gl_pathv[i]);
+ config_start_include(g.gl_pathv[i], toplevel);
}
globfree(&g);
return;
}
#endif /* HAVE_GLOB */
- config_start_include(filename);
+ config_start_include(filename, toplevel);
}
static void config_end_include(void)
@@ -165,6 +171,7 @@ static void config_end_include(void)
yy_delete_buffer(YY_CURRENT_BUFFER);
yy_switch_to_buffer(s->buffer);
config_include_stack = s->next;
+ inc_toplevel = s->inc_toplevel;
free(s);
}
@@ -199,7 +206,7 @@ COLON \:
DQANY [^\"\n\r\\]|\\.
SQANY [^\'\n\r\\]|\\.
-%x quotedstring singlequotedstr include include_quoted val
+%x quotedstring singlequotedstr include include_quoted val include_toplevel include_toplevel_quoted
%%
<INITIAL,val>{SPACE}* {
@@ -220,6 +227,7 @@ outgoing-num-tcp{COLON} { YDVAR(1, VAR_OUTGOING_NUM_TCP) }
incoming-num-tcp{COLON} { YDVAR(1, VAR_INCOMING_NUM_TCP) }
do-ip4{COLON} { YDVAR(1, VAR_DO_IP4) }
do-ip6{COLON} { YDVAR(1, VAR_DO_IP6) }
+prefer-ip4{COLON} { YDVAR(1, VAR_PREFER_IP4) }
prefer-ip6{COLON} { YDVAR(1, VAR_PREFER_IP6) }
do-udp{COLON} { YDVAR(1, VAR_DO_UDP) }
do-tcp{COLON} { YDVAR(1, VAR_DO_TCP) }
@@ -247,6 +255,7 @@ 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) }
+tls-use-sni{COLON} { YDVAR(1, VAR_TLS_USE_SNI) }
use-systemd{COLON} { YDVAR(1, VAR_USE_SYSTEMD) }
do-daemonize{COLON} { YDVAR(1, VAR_DO_DAEMONIZE) }
interface{COLON} { YDVAR(1, VAR_INTERFACE) }
@@ -258,6 +267,7 @@ so-sndbuf{COLON} { YDVAR(1, VAR_SO_SNDBUF) }
so-reuseport{COLON} { YDVAR(1, VAR_SO_REUSEPORT) }
ip-transparent{COLON} { YDVAR(1, VAR_IP_TRANSPARENT) }
ip-freebind{COLON} { YDVAR(1, VAR_IP_FREEBIND) }
+ip-dscp{COLON} { YDVAR(1, VAR_IP_DSCP) }
chroot{COLON} { YDVAR(1, VAR_CHROOT) }
username{COLON} { YDVAR(1, VAR_USERNAME) }
directory{COLON} { YDVAR(1, VAR_DIRECTORY) }
@@ -412,6 +422,8 @@ control-key-file{COLON} { YDVAR(1, VAR_CONTROL_KEY_FILE) }
control-cert-file{COLON} { YDVAR(1, VAR_CONTROL_CERT_FILE) }
python-script{COLON} { YDVAR(1, VAR_PYTHON_SCRIPT) }
python{COLON} { YDVAR(0, VAR_PYTHON) }
+dynlib-file{COLON} { YDVAR(1, VAR_DYNLIB_FILE) }
+dynlib{COLON} { YDVAR(0, VAR_DYNLIB) }
domain-insecure{COLON} { YDVAR(1, VAR_DOMAIN_INSECURE) }
minimal-responses{COLON} { YDVAR(1, VAR_MINIMAL_RESPONSES) }
rrset-roundrobin{COLON} { YDVAR(1, VAR_RRSET_ROUNDROBIN) }
@@ -429,7 +441,16 @@ access-control-view{COLON} { YDVAR(2, VAR_ACCESS_CONTROL_VIEW) }
local-zone-override{COLON} { YDVAR(3, VAR_LOCAL_ZONE_OVERRIDE) }
dnstap{COLON} { YDVAR(0, VAR_DNSTAP) }
dnstap-enable{COLON} { YDVAR(1, VAR_DNSTAP_ENABLE) }
+dnstap-bidirectional{COLON} { YDVAR(1, VAR_DNSTAP_BIDIRECTIONAL) }
dnstap-socket-path{COLON} { YDVAR(1, VAR_DNSTAP_SOCKET_PATH) }
+dnstap-ip{COLON} { YDVAR(1, VAR_DNSTAP_IP) }
+dnstap-tls{COLON} { YDVAR(1, VAR_DNSTAP_TLS) }
+dnstap-tls-server-name{COLON} { YDVAR(1, VAR_DNSTAP_TLS_SERVER_NAME) }
+dnstap-tls-cert-bundle{COLON} { YDVAR(1, VAR_DNSTAP_TLS_CERT_BUNDLE) }
+dnstap-tls-client-key-file{COLON} {
+ YDVAR(1, VAR_DNSTAP_TLS_CLIENT_KEY_FILE) }
+dnstap-tls-client-cert-file{COLON} {
+ YDVAR(1, VAR_DNSTAP_TLS_CLIENT_CERT_FILE) }
dnstap-send-identity{COLON} { YDVAR(1, VAR_DNSTAP_SEND_IDENTITY) }
dnstap-send-version{COLON} { YDVAR(1, VAR_DNSTAP_SEND_VERSION) }
dnstap-identity{COLON} { YDVAR(1, VAR_DNSTAP_IDENTITY) }
@@ -490,6 +511,7 @@ secret-seed{COLON} { YDVAR(1, VAR_CACHEDB_SECRETSEED) }
redis-server-host{COLON} { YDVAR(1, VAR_CACHEDB_REDISHOST) }
redis-server-port{COLON} { YDVAR(1, VAR_CACHEDB_REDISPORT) }
redis-timeout{COLON} { YDVAR(1, VAR_CACHEDB_REDISTIMEOUT) }
+redis-expire-records{COLON} { YDVAR(1, VAR_CACHEDB_REDISEXPIRERECORDS) }
ipset{COLON} { YDVAR(0, VAR_IPSET) }
name-v4{COLON} { YDVAR(1, VAR_IPSET_NAME_V4) }
name-v6{COLON} { YDVAR(1, VAR_IPSET_NAME_V6) }
@@ -551,7 +573,7 @@ tcp-connection-limit{COLON} { YDVAR(2, VAR_TCP_CONNECTION_LIMIT) }
<include>\" { LEXOUT(("IQS ")); BEGIN(include_quoted); }
<include>{UNQUOTEDLETTER}* {
LEXOUT(("Iunquotedstr(%s) ", yytext));
- config_start_include_glob(yytext);
+ config_start_include_glob(yytext, 0);
BEGIN(inc_prev);
}
<include_quoted><<EOF>> {
@@ -564,7 +586,7 @@ tcp-connection-limit{COLON} { YDVAR(2, VAR_TCP_CONNECTION_LIMIT) }
<include_quoted>\" {
LEXOUT(("IQE "));
yytext[yyleng - 1] = '\0';
- config_start_include_glob(yytext);
+ config_start_include_glob(yytext, 0);
BEGIN(inc_prev);
}
<INITIAL,val><<EOF>> {
@@ -573,11 +595,47 @@ tcp-connection-limit{COLON} { YDVAR(2, VAR_TCP_CONNECTION_LIMIT) }
if (!config_include_stack) {
yyterminate();
} else {
+ int prev_toplevel = inc_toplevel;
fclose(yyin);
config_end_include();
+ if(prev_toplevel) return (VAR_FORCE_TOPLEVEL);
}
}
+ /* include-toplevel: directive */
+<INITIAL,val>include-toplevel{COLON} {
+ LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include_toplevel);
+}
+<include_toplevel><<EOF>> {
+ yyerror("EOF inside include_toplevel directive");
+ BEGIN(inc_prev);
+}
+<include_toplevel>{SPACE}* { LEXOUT(("ITSP ")); /* ignore */ }
+<include_toplevel>{NEWLINE} { LEXOUT(("NL\n")); cfg_parser->line++; }
+<include_toplevel>\" { LEXOUT(("ITQS ")); BEGIN(include_toplevel_quoted); }
+<include_toplevel>{UNQUOTEDLETTER}* {
+ LEXOUT(("ITunquotedstr(%s) ", yytext));
+ config_start_include_glob(yytext, 1);
+ BEGIN(inc_prev);
+ return (VAR_FORCE_TOPLEVEL);
+}
+<include_toplevel_quoted><<EOF>> {
+ yyerror("EOF inside quoted string");
+ BEGIN(inc_prev);
+}
+<include_toplevel_quoted>{DQANY}* { LEXOUT(("ITSTR(%s) ", yytext)); yymore(); }
+<include_toplevel_quoted>{NEWLINE} {
+ yyerror("newline before \" in include name");
+ cfg_parser->line++; BEGIN(inc_prev);
+}
+<include_toplevel_quoted>\" {
+ LEXOUT(("ITQE "));
+ yytext[yyleng - 1] = '\0';
+ config_start_include_glob(yytext, 1);
+ BEGIN(inc_prev);
+ return (VAR_FORCE_TOPLEVEL);
+}
+
<val>{UNQUOTEDLETTER}* { LEXOUT(("unquotedstr(%s) ", yytext));
if(--num_args == 0) { BEGIN(INITIAL); }
yylval.str = strdup(yytext); return STRING_ARG; }
diff --git a/sbin/unwind/libunbound/util/configparser.h b/sbin/unwind/libunbound/util/configparser.h
index a552744e27e..a78ca551287 100644
--- a/sbin/unwind/libunbound/util/configparser.h
+++ b/sbin/unwind/libunbound/util/configparser.h
@@ -6,273 +6,287 @@
#define ANY 262
#define ZONESTR 263
#define STRING_ARG 264
-#define VAR_SERVER 265
-#define VAR_VERBOSITY 266
-#define VAR_NUM_THREADS 267
-#define VAR_PORT 268
-#define VAR_OUTGOING_RANGE 269
-#define VAR_INTERFACE 270
-#define VAR_DO_IP4 271
-#define VAR_DO_IP6 272
-#define VAR_PREFER_IP6 273
-#define VAR_DO_UDP 274
-#define VAR_DO_TCP 275
-#define VAR_TCP_MSS 276
-#define VAR_OUTGOING_TCP_MSS 277
-#define VAR_TCP_IDLE_TIMEOUT 278
-#define VAR_EDNS_TCP_KEEPALIVE 279
-#define VAR_EDNS_TCP_KEEPALIVE_TIMEOUT 280
-#define VAR_CHROOT 281
-#define VAR_USERNAME 282
-#define VAR_DIRECTORY 283
-#define VAR_LOGFILE 284
-#define VAR_PIDFILE 285
-#define VAR_MSG_CACHE_SIZE 286
-#define VAR_MSG_CACHE_SLABS 287
-#define VAR_NUM_QUERIES_PER_THREAD 288
-#define VAR_RRSET_CACHE_SIZE 289
-#define VAR_RRSET_CACHE_SLABS 290
-#define VAR_OUTGOING_NUM_TCP 291
-#define VAR_INFRA_HOST_TTL 292
-#define VAR_INFRA_LAME_TTL 293
-#define VAR_INFRA_CACHE_SLABS 294
-#define VAR_INFRA_CACHE_NUMHOSTS 295
-#define VAR_INFRA_CACHE_LAME_SIZE 296
-#define VAR_NAME 297
-#define VAR_STUB_ZONE 298
-#define VAR_STUB_HOST 299
-#define VAR_STUB_ADDR 300
-#define VAR_TARGET_FETCH_POLICY 301
-#define VAR_HARDEN_SHORT_BUFSIZE 302
-#define VAR_HARDEN_LARGE_QUERIES 303
-#define VAR_FORWARD_ZONE 304
-#define VAR_FORWARD_HOST 305
-#define VAR_FORWARD_ADDR 306
-#define VAR_DO_NOT_QUERY_ADDRESS 307
-#define VAR_HIDE_IDENTITY 308
-#define VAR_HIDE_VERSION 309
-#define VAR_IDENTITY 310
-#define VAR_VERSION 311
-#define VAR_HARDEN_GLUE 312
-#define VAR_MODULE_CONF 313
-#define VAR_TRUST_ANCHOR_FILE 314
-#define VAR_TRUST_ANCHOR 315
-#define VAR_VAL_OVERRIDE_DATE 316
-#define VAR_BOGUS_TTL 317
-#define VAR_VAL_CLEAN_ADDITIONAL 318
-#define VAR_VAL_PERMISSIVE_MODE 319
-#define VAR_INCOMING_NUM_TCP 320
-#define VAR_MSG_BUFFER_SIZE 321
-#define VAR_KEY_CACHE_SIZE 322
-#define VAR_KEY_CACHE_SLABS 323
-#define VAR_TRUSTED_KEYS_FILE 324
-#define VAR_VAL_NSEC3_KEYSIZE_ITERATIONS 325
-#define VAR_USE_SYSLOG 326
-#define VAR_OUTGOING_INTERFACE 327
-#define VAR_ROOT_HINTS 328
-#define VAR_DO_NOT_QUERY_LOCALHOST 329
-#define VAR_CACHE_MAX_TTL 330
-#define VAR_HARDEN_DNSSEC_STRIPPED 331
-#define VAR_ACCESS_CONTROL 332
-#define VAR_LOCAL_ZONE 333
-#define VAR_LOCAL_DATA 334
-#define VAR_INTERFACE_AUTOMATIC 335
-#define VAR_STATISTICS_INTERVAL 336
-#define VAR_DO_DAEMONIZE 337
-#define VAR_USE_CAPS_FOR_ID 338
-#define VAR_STATISTICS_CUMULATIVE 339
-#define VAR_OUTGOING_PORT_PERMIT 340
-#define VAR_OUTGOING_PORT_AVOID 341
-#define VAR_DLV_ANCHOR_FILE 342
-#define VAR_DLV_ANCHOR 343
-#define VAR_NEG_CACHE_SIZE 344
-#define VAR_HARDEN_REFERRAL_PATH 345
-#define VAR_PRIVATE_ADDRESS 346
-#define VAR_PRIVATE_DOMAIN 347
-#define VAR_REMOTE_CONTROL 348
-#define VAR_CONTROL_ENABLE 349
-#define VAR_CONTROL_INTERFACE 350
-#define VAR_CONTROL_PORT 351
-#define VAR_SERVER_KEY_FILE 352
-#define VAR_SERVER_CERT_FILE 353
-#define VAR_CONTROL_KEY_FILE 354
-#define VAR_CONTROL_CERT_FILE 355
-#define VAR_CONTROL_USE_CERT 356
-#define VAR_EXTENDED_STATISTICS 357
-#define VAR_LOCAL_DATA_PTR 358
-#define VAR_JOSTLE_TIMEOUT 359
-#define VAR_STUB_PRIME 360
-#define VAR_UNWANTED_REPLY_THRESHOLD 361
-#define VAR_LOG_TIME_ASCII 362
-#define VAR_DOMAIN_INSECURE 363
-#define VAR_PYTHON 364
-#define VAR_PYTHON_SCRIPT 365
-#define VAR_VAL_SIG_SKEW_MIN 366
-#define VAR_VAL_SIG_SKEW_MAX 367
-#define VAR_CACHE_MIN_TTL 368
-#define VAR_VAL_LOG_LEVEL 369
-#define VAR_AUTO_TRUST_ANCHOR_FILE 370
-#define VAR_KEEP_MISSING 371
-#define VAR_ADD_HOLDDOWN 372
-#define VAR_DEL_HOLDDOWN 373
-#define VAR_SO_RCVBUF 374
-#define VAR_EDNS_BUFFER_SIZE 375
-#define VAR_PREFETCH 376
-#define VAR_PREFETCH_KEY 377
-#define VAR_SO_SNDBUF 378
-#define VAR_SO_REUSEPORT 379
-#define VAR_HARDEN_BELOW_NXDOMAIN 380
-#define VAR_IGNORE_CD_FLAG 381
-#define VAR_LOG_QUERIES 382
-#define VAR_LOG_REPLIES 383
-#define VAR_LOG_LOCAL_ACTIONS 384
-#define VAR_TCP_UPSTREAM 385
-#define VAR_SSL_UPSTREAM 386
-#define VAR_SSL_SERVICE_KEY 387
-#define VAR_SSL_SERVICE_PEM 388
-#define VAR_SSL_PORT 389
-#define VAR_FORWARD_FIRST 390
-#define VAR_STUB_SSL_UPSTREAM 391
-#define VAR_FORWARD_SSL_UPSTREAM 392
-#define VAR_TLS_CERT_BUNDLE 393
-#define VAR_STUB_FIRST 394
-#define VAR_MINIMAL_RESPONSES 395
-#define VAR_RRSET_ROUNDROBIN 396
-#define VAR_MAX_UDP_SIZE 397
-#define VAR_DELAY_CLOSE 398
-#define VAR_UNBLOCK_LAN_ZONES 399
-#define VAR_INSECURE_LAN_ZONES 400
-#define VAR_INFRA_CACHE_MIN_RTT 401
-#define VAR_DNS64_PREFIX 402
-#define VAR_DNS64_SYNTHALL 403
-#define VAR_DNS64_IGNORE_AAAA 404
-#define VAR_DNSTAP 405
-#define VAR_DNSTAP_ENABLE 406
-#define VAR_DNSTAP_SOCKET_PATH 407
-#define VAR_DNSTAP_SEND_IDENTITY 408
-#define VAR_DNSTAP_SEND_VERSION 409
-#define VAR_DNSTAP_IDENTITY 410
-#define VAR_DNSTAP_VERSION 411
-#define VAR_DNSTAP_LOG_RESOLVER_QUERY_MESSAGES 412
-#define VAR_DNSTAP_LOG_RESOLVER_RESPONSE_MESSAGES 413
-#define VAR_DNSTAP_LOG_CLIENT_QUERY_MESSAGES 414
-#define VAR_DNSTAP_LOG_CLIENT_RESPONSE_MESSAGES 415
-#define VAR_DNSTAP_LOG_FORWARDER_QUERY_MESSAGES 416
-#define VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MESSAGES 417
-#define VAR_RESPONSE_IP_TAG 418
-#define VAR_RESPONSE_IP 419
-#define VAR_RESPONSE_IP_DATA 420
-#define VAR_HARDEN_ALGO_DOWNGRADE 421
-#define VAR_IP_TRANSPARENT 422
-#define VAR_DISABLE_DNSSEC_LAME_CHECK 423
-#define VAR_IP_RATELIMIT 424
-#define VAR_IP_RATELIMIT_SLABS 425
-#define VAR_IP_RATELIMIT_SIZE 426
-#define VAR_RATELIMIT 427
-#define VAR_RATELIMIT_SLABS 428
-#define VAR_RATELIMIT_SIZE 429
-#define VAR_RATELIMIT_FOR_DOMAIN 430
-#define VAR_RATELIMIT_BELOW_DOMAIN 431
-#define VAR_IP_RATELIMIT_FACTOR 432
-#define VAR_RATELIMIT_FACTOR 433
-#define VAR_SEND_CLIENT_SUBNET 434
-#define VAR_CLIENT_SUBNET_ZONE 435
-#define VAR_CLIENT_SUBNET_ALWAYS_FORWARD 436
-#define VAR_CLIENT_SUBNET_OPCODE 437
-#define VAR_MAX_CLIENT_SUBNET_IPV4 438
-#define VAR_MAX_CLIENT_SUBNET_IPV6 439
-#define VAR_MIN_CLIENT_SUBNET_IPV4 440
-#define VAR_MIN_CLIENT_SUBNET_IPV6 441
-#define VAR_MAX_ECS_TREE_SIZE_IPV4 442
-#define VAR_MAX_ECS_TREE_SIZE_IPV6 443
-#define VAR_CAPS_WHITELIST 444
-#define VAR_CACHE_MAX_NEGATIVE_TTL 445
-#define VAR_PERMIT_SMALL_HOLDDOWN 446
-#define VAR_QNAME_MINIMISATION 447
-#define VAR_QNAME_MINIMISATION_STRICT 448
-#define VAR_IP_FREEBIND 449
-#define VAR_DEFINE_TAG 450
-#define VAR_LOCAL_ZONE_TAG 451
-#define VAR_ACCESS_CONTROL_TAG 452
-#define VAR_LOCAL_ZONE_OVERRIDE 453
-#define VAR_ACCESS_CONTROL_TAG_ACTION 454
-#define VAR_ACCESS_CONTROL_TAG_DATA 455
-#define VAR_VIEW 456
-#define VAR_ACCESS_CONTROL_VIEW 457
-#define VAR_VIEW_FIRST 458
-#define VAR_SERVE_EXPIRED 459
-#define VAR_SERVE_EXPIRED_TTL 460
-#define VAR_SERVE_EXPIRED_TTL_RESET 461
-#define VAR_SERVE_EXPIRED_REPLY_TTL 462
-#define VAR_SERVE_EXPIRED_CLIENT_TIMEOUT 463
-#define VAR_FAKE_DSA 464
-#define VAR_FAKE_SHA1 465
-#define VAR_LOG_IDENTITY 466
-#define VAR_HIDE_TRUSTANCHOR 467
-#define VAR_TRUST_ANCHOR_SIGNALING 468
-#define VAR_AGGRESSIVE_NSEC 469
-#define VAR_USE_SYSTEMD 470
-#define VAR_SHM_ENABLE 471
-#define VAR_SHM_KEY 472
-#define VAR_ROOT_KEY_SENTINEL 473
-#define VAR_DNSCRYPT 474
-#define VAR_DNSCRYPT_ENABLE 475
-#define VAR_DNSCRYPT_PORT 476
-#define VAR_DNSCRYPT_PROVIDER 477
-#define VAR_DNSCRYPT_SECRET_KEY 478
-#define VAR_DNSCRYPT_PROVIDER_CERT 479
-#define VAR_DNSCRYPT_PROVIDER_CERT_ROTATED 480
-#define VAR_DNSCRYPT_SHARED_SECRET_CACHE_SIZE 481
-#define VAR_DNSCRYPT_SHARED_SECRET_CACHE_SLABS 482
-#define VAR_DNSCRYPT_NONCE_CACHE_SIZE 483
-#define VAR_DNSCRYPT_NONCE_CACHE_SLABS 484
-#define VAR_IPSECMOD_ENABLED 485
-#define VAR_IPSECMOD_HOOK 486
-#define VAR_IPSECMOD_IGNORE_BOGUS 487
-#define VAR_IPSECMOD_MAX_TTL 488
-#define VAR_IPSECMOD_WHITELIST 489
-#define VAR_IPSECMOD_STRICT 490
-#define VAR_CACHEDB 491
-#define VAR_CACHEDB_BACKEND 492
-#define VAR_CACHEDB_SECRETSEED 493
-#define VAR_CACHEDB_REDISHOST 494
-#define VAR_CACHEDB_REDISPORT 495
-#define VAR_CACHEDB_REDISTIMEOUT 496
-#define VAR_UDP_UPSTREAM_WITHOUT_DOWNSTREAM 497
-#define VAR_FOR_UPSTREAM 498
-#define VAR_AUTH_ZONE 499
-#define VAR_ZONEFILE 500
-#define VAR_MASTER 501
-#define VAR_URL 502
-#define VAR_FOR_DOWNSTREAM 503
-#define VAR_FALLBACK_ENABLED 504
-#define VAR_TLS_ADDITIONAL_PORT 505
-#define VAR_LOW_RTT 506
-#define VAR_LOW_RTT_PERMIL 507
-#define VAR_FAST_SERVER_PERMIL 508
-#define VAR_FAST_SERVER_NUM 509
-#define VAR_ALLOW_NOTIFY 510
-#define VAR_TLS_WIN_CERT 511
-#define VAR_TCP_CONNECTION_LIMIT 512
-#define VAR_FORWARD_NO_CACHE 513
-#define VAR_STUB_NO_CACHE 514
-#define VAR_LOG_SERVFAIL 515
-#define VAR_DENY_ANY 516
-#define VAR_UNKNOWN_SERVER_TIME_LIMIT 517
-#define VAR_LOG_TAG_QUERYREPLY 518
-#define VAR_STREAM_WAIT_SIZE 519
-#define VAR_TLS_CIPHERS 520
-#define VAR_TLS_CIPHERSUITES 521
-#define VAR_IPSET 522
-#define VAR_IPSET_NAME_V4 523
-#define VAR_IPSET_NAME_V6 524
-#define VAR_TLS_SESSION_TICKET_KEYS 525
-#define VAR_RPZ 526
-#define VAR_TAGS 527
-#define VAR_RPZ_ACTION_OVERRIDE 528
-#define VAR_RPZ_CNAME_OVERRIDE 529
-#define VAR_RPZ_LOG 530
-#define VAR_RPZ_LOG_NAME 531
+#define VAR_FORCE_TOPLEVEL 265
+#define VAR_SERVER 266
+#define VAR_VERBOSITY 267
+#define VAR_NUM_THREADS 268
+#define VAR_PORT 269
+#define VAR_OUTGOING_RANGE 270
+#define VAR_INTERFACE 271
+#define VAR_PREFER_IP4 272
+#define VAR_DO_IP4 273
+#define VAR_DO_IP6 274
+#define VAR_PREFER_IP6 275
+#define VAR_DO_UDP 276
+#define VAR_DO_TCP 277
+#define VAR_TCP_MSS 278
+#define VAR_OUTGOING_TCP_MSS 279
+#define VAR_TCP_IDLE_TIMEOUT 280
+#define VAR_EDNS_TCP_KEEPALIVE 281
+#define VAR_EDNS_TCP_KEEPALIVE_TIMEOUT 282
+#define VAR_CHROOT 283
+#define VAR_USERNAME 284
+#define VAR_DIRECTORY 285
+#define VAR_LOGFILE 286
+#define VAR_PIDFILE 287
+#define VAR_MSG_CACHE_SIZE 288
+#define VAR_MSG_CACHE_SLABS 289
+#define VAR_NUM_QUERIES_PER_THREAD 290
+#define VAR_RRSET_CACHE_SIZE 291
+#define VAR_RRSET_CACHE_SLABS 292
+#define VAR_OUTGOING_NUM_TCP 293
+#define VAR_INFRA_HOST_TTL 294
+#define VAR_INFRA_LAME_TTL 295
+#define VAR_INFRA_CACHE_SLABS 296
+#define VAR_INFRA_CACHE_NUMHOSTS 297
+#define VAR_INFRA_CACHE_LAME_SIZE 298
+#define VAR_NAME 299
+#define VAR_STUB_ZONE 300
+#define VAR_STUB_HOST 301
+#define VAR_STUB_ADDR 302
+#define VAR_TARGET_FETCH_POLICY 303
+#define VAR_HARDEN_SHORT_BUFSIZE 304
+#define VAR_HARDEN_LARGE_QUERIES 305
+#define VAR_FORWARD_ZONE 306
+#define VAR_FORWARD_HOST 307
+#define VAR_FORWARD_ADDR 308
+#define VAR_DO_NOT_QUERY_ADDRESS 309
+#define VAR_HIDE_IDENTITY 310
+#define VAR_HIDE_VERSION 311
+#define VAR_IDENTITY 312
+#define VAR_VERSION 313
+#define VAR_HARDEN_GLUE 314
+#define VAR_MODULE_CONF 315
+#define VAR_TRUST_ANCHOR_FILE 316
+#define VAR_TRUST_ANCHOR 317
+#define VAR_VAL_OVERRIDE_DATE 318
+#define VAR_BOGUS_TTL 319
+#define VAR_VAL_CLEAN_ADDITIONAL 320
+#define VAR_VAL_PERMISSIVE_MODE 321
+#define VAR_INCOMING_NUM_TCP 322
+#define VAR_MSG_BUFFER_SIZE 323
+#define VAR_KEY_CACHE_SIZE 324
+#define VAR_KEY_CACHE_SLABS 325
+#define VAR_TRUSTED_KEYS_FILE 326
+#define VAR_VAL_NSEC3_KEYSIZE_ITERATIONS 327
+#define VAR_USE_SYSLOG 328
+#define VAR_OUTGOING_INTERFACE 329
+#define VAR_ROOT_HINTS 330
+#define VAR_DO_NOT_QUERY_LOCALHOST 331
+#define VAR_CACHE_MAX_TTL 332
+#define VAR_HARDEN_DNSSEC_STRIPPED 333
+#define VAR_ACCESS_CONTROL 334
+#define VAR_LOCAL_ZONE 335
+#define VAR_LOCAL_DATA 336
+#define VAR_INTERFACE_AUTOMATIC 337
+#define VAR_STATISTICS_INTERVAL 338
+#define VAR_DO_DAEMONIZE 339
+#define VAR_USE_CAPS_FOR_ID 340
+#define VAR_STATISTICS_CUMULATIVE 341
+#define VAR_OUTGOING_PORT_PERMIT 342
+#define VAR_OUTGOING_PORT_AVOID 343
+#define VAR_DLV_ANCHOR_FILE 344
+#define VAR_DLV_ANCHOR 345
+#define VAR_NEG_CACHE_SIZE 346
+#define VAR_HARDEN_REFERRAL_PATH 347
+#define VAR_PRIVATE_ADDRESS 348
+#define VAR_PRIVATE_DOMAIN 349
+#define VAR_REMOTE_CONTROL 350
+#define VAR_CONTROL_ENABLE 351
+#define VAR_CONTROL_INTERFACE 352
+#define VAR_CONTROL_PORT 353
+#define VAR_SERVER_KEY_FILE 354
+#define VAR_SERVER_CERT_FILE 355
+#define VAR_CONTROL_KEY_FILE 356
+#define VAR_CONTROL_CERT_FILE 357
+#define VAR_CONTROL_USE_CERT 358
+#define VAR_EXTENDED_STATISTICS 359
+#define VAR_LOCAL_DATA_PTR 360
+#define VAR_JOSTLE_TIMEOUT 361
+#define VAR_STUB_PRIME 362
+#define VAR_UNWANTED_REPLY_THRESHOLD 363
+#define VAR_LOG_TIME_ASCII 364
+#define VAR_DOMAIN_INSECURE 365
+#define VAR_PYTHON 366
+#define VAR_PYTHON_SCRIPT 367
+#define VAR_VAL_SIG_SKEW_MIN 368
+#define VAR_VAL_SIG_SKEW_MAX 369
+#define VAR_CACHE_MIN_TTL 370
+#define VAR_VAL_LOG_LEVEL 371
+#define VAR_AUTO_TRUST_ANCHOR_FILE 372
+#define VAR_KEEP_MISSING 373
+#define VAR_ADD_HOLDDOWN 374
+#define VAR_DEL_HOLDDOWN 375
+#define VAR_SO_RCVBUF 376
+#define VAR_EDNS_BUFFER_SIZE 377
+#define VAR_PREFETCH 378
+#define VAR_PREFETCH_KEY 379
+#define VAR_SO_SNDBUF 380
+#define VAR_SO_REUSEPORT 381
+#define VAR_HARDEN_BELOW_NXDOMAIN 382
+#define VAR_IGNORE_CD_FLAG 383
+#define VAR_LOG_QUERIES 384
+#define VAR_LOG_REPLIES 385
+#define VAR_LOG_LOCAL_ACTIONS 386
+#define VAR_TCP_UPSTREAM 387
+#define VAR_SSL_UPSTREAM 388
+#define VAR_SSL_SERVICE_KEY 389
+#define VAR_SSL_SERVICE_PEM 390
+#define VAR_SSL_PORT 391
+#define VAR_FORWARD_FIRST 392
+#define VAR_STUB_SSL_UPSTREAM 393
+#define VAR_FORWARD_SSL_UPSTREAM 394
+#define VAR_TLS_CERT_BUNDLE 395
+#define VAR_STUB_FIRST 396
+#define VAR_MINIMAL_RESPONSES 397
+#define VAR_RRSET_ROUNDROBIN 398
+#define VAR_MAX_UDP_SIZE 399
+#define VAR_DELAY_CLOSE 400
+#define VAR_UNBLOCK_LAN_ZONES 401
+#define VAR_INSECURE_LAN_ZONES 402
+#define VAR_INFRA_CACHE_MIN_RTT 403
+#define VAR_DNS64_PREFIX 404
+#define VAR_DNS64_SYNTHALL 405
+#define VAR_DNS64_IGNORE_AAAA 406
+#define VAR_DNSTAP 407
+#define VAR_DNSTAP_ENABLE 408
+#define VAR_DNSTAP_SOCKET_PATH 409
+#define VAR_DNSTAP_IP 410
+#define VAR_DNSTAP_TLS 411
+#define VAR_DNSTAP_TLS_SERVER_NAME 412
+#define VAR_DNSTAP_TLS_CERT_BUNDLE 413
+#define VAR_DNSTAP_TLS_CLIENT_KEY_FILE 414
+#define VAR_DNSTAP_TLS_CLIENT_CERT_FILE 415
+#define VAR_DNSTAP_SEND_IDENTITY 416
+#define VAR_DNSTAP_SEND_VERSION 417
+#define VAR_DNSTAP_BIDIRECTIONAL 418
+#define VAR_DNSTAP_IDENTITY 419
+#define VAR_DNSTAP_VERSION 420
+#define VAR_DNSTAP_LOG_RESOLVER_QUERY_MESSAGES 421
+#define VAR_DNSTAP_LOG_RESOLVER_RESPONSE_MESSAGES 422
+#define VAR_DNSTAP_LOG_CLIENT_QUERY_MESSAGES 423
+#define VAR_DNSTAP_LOG_CLIENT_RESPONSE_MESSAGES 424
+#define VAR_DNSTAP_LOG_FORWARDER_QUERY_MESSAGES 425
+#define VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MESSAGES 426
+#define VAR_RESPONSE_IP_TAG 427
+#define VAR_RESPONSE_IP 428
+#define VAR_RESPONSE_IP_DATA 429
+#define VAR_HARDEN_ALGO_DOWNGRADE 430
+#define VAR_IP_TRANSPARENT 431
+#define VAR_IP_DSCP 432
+#define VAR_DISABLE_DNSSEC_LAME_CHECK 433
+#define VAR_IP_RATELIMIT 434
+#define VAR_IP_RATELIMIT_SLABS 435
+#define VAR_IP_RATELIMIT_SIZE 436
+#define VAR_RATELIMIT 437
+#define VAR_RATELIMIT_SLABS 438
+#define VAR_RATELIMIT_SIZE 439
+#define VAR_RATELIMIT_FOR_DOMAIN 440
+#define VAR_RATELIMIT_BELOW_DOMAIN 441
+#define VAR_IP_RATELIMIT_FACTOR 442
+#define VAR_RATELIMIT_FACTOR 443
+#define VAR_SEND_CLIENT_SUBNET 444
+#define VAR_CLIENT_SUBNET_ZONE 445
+#define VAR_CLIENT_SUBNET_ALWAYS_FORWARD 446
+#define VAR_CLIENT_SUBNET_OPCODE 447
+#define VAR_MAX_CLIENT_SUBNET_IPV4 448
+#define VAR_MAX_CLIENT_SUBNET_IPV6 449
+#define VAR_MIN_CLIENT_SUBNET_IPV4 450
+#define VAR_MIN_CLIENT_SUBNET_IPV6 451
+#define VAR_MAX_ECS_TREE_SIZE_IPV4 452
+#define VAR_MAX_ECS_TREE_SIZE_IPV6 453
+#define VAR_CAPS_WHITELIST 454
+#define VAR_CACHE_MAX_NEGATIVE_TTL 455
+#define VAR_PERMIT_SMALL_HOLDDOWN 456
+#define VAR_QNAME_MINIMISATION 457
+#define VAR_QNAME_MINIMISATION_STRICT 458
+#define VAR_IP_FREEBIND 459
+#define VAR_DEFINE_TAG 460
+#define VAR_LOCAL_ZONE_TAG 461
+#define VAR_ACCESS_CONTROL_TAG 462
+#define VAR_LOCAL_ZONE_OVERRIDE 463
+#define VAR_ACCESS_CONTROL_TAG_ACTION 464
+#define VAR_ACCESS_CONTROL_TAG_DATA 465
+#define VAR_VIEW 466
+#define VAR_ACCESS_CONTROL_VIEW 467
+#define VAR_VIEW_FIRST 468
+#define VAR_SERVE_EXPIRED 469
+#define VAR_SERVE_EXPIRED_TTL 470
+#define VAR_SERVE_EXPIRED_TTL_RESET 471
+#define VAR_SERVE_EXPIRED_REPLY_TTL 472
+#define VAR_SERVE_EXPIRED_CLIENT_TIMEOUT 473
+#define VAR_FAKE_DSA 474
+#define VAR_FAKE_SHA1 475
+#define VAR_LOG_IDENTITY 476
+#define VAR_HIDE_TRUSTANCHOR 477
+#define VAR_TRUST_ANCHOR_SIGNALING 478
+#define VAR_AGGRESSIVE_NSEC 479
+#define VAR_USE_SYSTEMD 480
+#define VAR_SHM_ENABLE 481
+#define VAR_SHM_KEY 482
+#define VAR_ROOT_KEY_SENTINEL 483
+#define VAR_DNSCRYPT 484
+#define VAR_DNSCRYPT_ENABLE 485
+#define VAR_DNSCRYPT_PORT 486
+#define VAR_DNSCRYPT_PROVIDER 487
+#define VAR_DNSCRYPT_SECRET_KEY 488
+#define VAR_DNSCRYPT_PROVIDER_CERT 489
+#define VAR_DNSCRYPT_PROVIDER_CERT_ROTATED 490
+#define VAR_DNSCRYPT_SHARED_SECRET_CACHE_SIZE 491
+#define VAR_DNSCRYPT_SHARED_SECRET_CACHE_SLABS 492
+#define VAR_DNSCRYPT_NONCE_CACHE_SIZE 493
+#define VAR_DNSCRYPT_NONCE_CACHE_SLABS 494
+#define VAR_IPSECMOD_ENABLED 495
+#define VAR_IPSECMOD_HOOK 496
+#define VAR_IPSECMOD_IGNORE_BOGUS 497
+#define VAR_IPSECMOD_MAX_TTL 498
+#define VAR_IPSECMOD_WHITELIST 499
+#define VAR_IPSECMOD_STRICT 500
+#define VAR_CACHEDB 501
+#define VAR_CACHEDB_BACKEND 502
+#define VAR_CACHEDB_SECRETSEED 503
+#define VAR_CACHEDB_REDISHOST 504
+#define VAR_CACHEDB_REDISPORT 505
+#define VAR_CACHEDB_REDISTIMEOUT 506
+#define VAR_CACHEDB_REDISEXPIRERECORDS 507
+#define VAR_UDP_UPSTREAM_WITHOUT_DOWNSTREAM 508
+#define VAR_FOR_UPSTREAM 509
+#define VAR_AUTH_ZONE 510
+#define VAR_ZONEFILE 511
+#define VAR_MASTER 512
+#define VAR_URL 513
+#define VAR_FOR_DOWNSTREAM 514
+#define VAR_FALLBACK_ENABLED 515
+#define VAR_TLS_ADDITIONAL_PORT 516
+#define VAR_LOW_RTT 517
+#define VAR_LOW_RTT_PERMIL 518
+#define VAR_FAST_SERVER_PERMIL 519
+#define VAR_FAST_SERVER_NUM 520
+#define VAR_ALLOW_NOTIFY 521
+#define VAR_TLS_WIN_CERT 522
+#define VAR_TCP_CONNECTION_LIMIT 523
+#define VAR_FORWARD_NO_CACHE 524
+#define VAR_STUB_NO_CACHE 525
+#define VAR_LOG_SERVFAIL 526
+#define VAR_DENY_ANY 527
+#define VAR_UNKNOWN_SERVER_TIME_LIMIT 528
+#define VAR_LOG_TAG_QUERYREPLY 529
+#define VAR_STREAM_WAIT_SIZE 530
+#define VAR_TLS_CIPHERS 531
+#define VAR_TLS_CIPHERSUITES 532
+#define VAR_TLS_USE_SNI 533
+#define VAR_IPSET 534
+#define VAR_IPSET_NAME_V4 535
+#define VAR_IPSET_NAME_V6 536
+#define VAR_TLS_SESSION_TICKET_KEYS 537
+#define VAR_RPZ 538
+#define VAR_TAGS 539
+#define VAR_RPZ_ACTION_OVERRIDE 540
+#define VAR_RPZ_CNAME_OVERRIDE 541
+#define VAR_RPZ_LOG 542
+#define VAR_RPZ_LOG_NAME 543
+#define VAR_DYNLIB 544
+#define VAR_DYNLIB_FILE 545
#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 798f4a972fd..fe600a999d4 100644
--- a/sbin/unwind/libunbound/util/configparser.y
+++ b/sbin/unwind/libunbound/util/configparser.y
@@ -69,8 +69,9 @@ extern struct config_parser_state* cfg_parser;
%token SPACE LETTER NEWLINE COMMENT COLON ANY ZONESTR
%token <str> STRING_ARG
+%token VAR_FORCE_TOPLEVEL
%token VAR_SERVER VAR_VERBOSITY VAR_NUM_THREADS VAR_PORT
-%token VAR_OUTGOING_RANGE VAR_INTERFACE
+%token VAR_OUTGOING_RANGE VAR_INTERFACE VAR_PREFER_IP4
%token VAR_DO_IP4 VAR_DO_IP6 VAR_PREFER_IP6 VAR_DO_UDP VAR_DO_TCP
%token VAR_TCP_MSS VAR_OUTGOING_TCP_MSS VAR_TCP_IDLE_TIMEOUT
%token VAR_EDNS_TCP_KEEPALIVE VAR_EDNS_TCP_KEEPALIVE_TIMEOUT
@@ -116,8 +117,10 @@ extern struct config_parser_state* cfg_parser;
%token VAR_UNBLOCK_LAN_ZONES VAR_INSECURE_LAN_ZONES
%token VAR_INFRA_CACHE_MIN_RTT
%token VAR_DNS64_PREFIX VAR_DNS64_SYNTHALL VAR_DNS64_IGNORE_AAAA
-%token VAR_DNSTAP VAR_DNSTAP_ENABLE VAR_DNSTAP_SOCKET_PATH
-%token VAR_DNSTAP_SEND_IDENTITY VAR_DNSTAP_SEND_VERSION
+%token VAR_DNSTAP VAR_DNSTAP_ENABLE VAR_DNSTAP_SOCKET_PATH VAR_DNSTAP_IP
+%token VAR_DNSTAP_TLS VAR_DNSTAP_TLS_SERVER_NAME VAR_DNSTAP_TLS_CERT_BUNDLE
+%token VAR_DNSTAP_TLS_CLIENT_KEY_FILE VAR_DNSTAP_TLS_CLIENT_CERT_FILE
+%token VAR_DNSTAP_SEND_IDENTITY VAR_DNSTAP_SEND_VERSION VAR_DNSTAP_BIDIRECTIONAL
%token VAR_DNSTAP_IDENTITY VAR_DNSTAP_VERSION
%token VAR_DNSTAP_LOG_RESOLVER_QUERY_MESSAGES
%token VAR_DNSTAP_LOG_RESOLVER_RESPONSE_MESSAGES
@@ -127,6 +130,7 @@ extern struct config_parser_state* cfg_parser;
%token VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MESSAGES
%token VAR_RESPONSE_IP_TAG VAR_RESPONSE_IP VAR_RESPONSE_IP_DATA
%token VAR_HARDEN_ALGO_DOWNGRADE VAR_IP_TRANSPARENT
+%token VAR_IP_DSCP
%token VAR_DISABLE_DNSSEC_LAME_CHECK
%token VAR_IP_RATELIMIT VAR_IP_RATELIMIT_SLABS VAR_IP_RATELIMIT_SIZE
%token VAR_RATELIMIT VAR_RATELIMIT_SLABS VAR_RATELIMIT_SIZE
@@ -159,6 +163,7 @@ extern struct config_parser_state* cfg_parser;
%token VAR_IPSECMOD_MAX_TTL VAR_IPSECMOD_WHITELIST VAR_IPSECMOD_STRICT
%token VAR_CACHEDB VAR_CACHEDB_BACKEND VAR_CACHEDB_SECRETSEED
%token VAR_CACHEDB_REDISHOST VAR_CACHEDB_REDISPORT VAR_CACHEDB_REDISTIMEOUT
+%token VAR_CACHEDB_REDISEXPIRERECORDS
%token VAR_UDP_UPSTREAM_WITHOUT_DOWNSTREAM VAR_FOR_UPSTREAM
%token VAR_AUTH_ZONE VAR_ZONEFILE VAR_MASTER VAR_URL VAR_FOR_DOWNSTREAM
%token VAR_FALLBACK_ENABLED VAR_TLS_ADDITIONAL_PORT VAR_LOW_RTT VAR_LOW_RTT_PERMIL
@@ -166,10 +171,11 @@ extern struct config_parser_state* cfg_parser;
%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 VAR_LOG_TAG_QUERYREPLY
-%token VAR_STREAM_WAIT_SIZE VAR_TLS_CIPHERS VAR_TLS_CIPHERSUITES
+%token VAR_STREAM_WAIT_SIZE VAR_TLS_CIPHERS VAR_TLS_CIPHERSUITES VAR_TLS_USE_SNI
%token VAR_IPSET VAR_IPSET_NAME_V4 VAR_IPSET_NAME_V6
%token VAR_TLS_SESSION_TICKET_KEYS VAR_RPZ VAR_TAGS VAR_RPZ_ACTION_OVERRIDE
%token VAR_RPZ_CNAME_OVERRIDE VAR_RPZ_LOG VAR_RPZ_LOG_NAME
+%token VAR_DYNLIB VAR_DYNLIB_FILE
%%
toplevelvars: /* empty */ | toplevelvars toplevelvar ;
@@ -178,20 +184,25 @@ toplevelvar: serverstart contents_server | stubstart contents_stub |
rcstart contents_rc | dtstart contents_dt | viewstart contents_view |
dnscstart contents_dnsc | cachedbstart contents_cachedb |
ipsetstart contents_ipset | authstart contents_auth |
- rpzstart contents_rpz
+ rpzstart contents_rpz | dynlibstart contents_dl |
+ force_toplevel
+ ;
+force_toplevel: VAR_FORCE_TOPLEVEL
+ {
+ OUTYY(("\nP(force-toplevel)\n"));
+ }
;
-
/* server: declaration */
serverstart: VAR_SERVER
{
- OUTYY(("\nP(server:)\n"));
+ OUTYY(("\nP(server:)\n"));
}
;
-contents_server: contents_server content_server
+contents_server: contents_server content_server
| ;
content_server: server_num_threads | server_verbosity | server_port |
server_outgoing_range | server_do_ip4 |
- server_do_ip6 | server_prefer_ip6 |
+ server_do_ip6 | server_prefer_ip4 | server_prefer_ip6 |
server_do_udp | server_do_tcp |
server_tcp_mss | server_outgoing_tcp_mss | server_tcp_idle_timeout |
server_tcp_keepalive | server_tcp_keepalive_timeout |
@@ -239,6 +250,7 @@ content_server: server_num_threads | server_verbosity | server_port |
server_dns64_prefix | server_dns64_synthall | server_dns64_ignore_aaaa |
server_infra_cache_min_rtt | server_harden_algo_downgrade |
server_ip_transparent | server_ip_ratelimit | server_ratelimit |
+ server_ip_dscp |
server_ip_ratelimit_slabs | server_ratelimit_slabs |
server_ip_ratelimit_size | server_ratelimit_size |
server_ratelimit_for_domain |
@@ -272,7 +284,8 @@ content_server: server_num_threads | server_verbosity | server_port |
server_tcp_connection_limit | server_log_servfail | server_deny_any |
server_unknown_server_time_limit | server_log_tag_queryreply |
server_stream_wait_size | server_tls_ciphers |
- server_tls_ciphersuites | server_tls_session_ticket_keys
+ server_tls_ciphersuites | server_tls_session_ticket_keys |
+ server_tls_use_sni
;
stubstart: VAR_STUB_ZONE
{
@@ -780,6 +793,15 @@ server_do_tcp: VAR_DO_TCP STRING_ARG
free($2);
}
;
+server_prefer_ip4: VAR_PREFER_IP4 STRING_ARG
+ {
+ OUTYY(("P(server_prefer_ip4:%s)\n", $2));
+ if(strcmp($2, "yes") != 0 && strcmp($2, "no") != 0)
+ yyerror("expected yes or no.");
+ else cfg_parser->cfg->prefer_ip4 = (strcmp($2, "yes")==0);
+ free($2);
+ }
+ ;
server_prefer_ip6: VAR_PREFER_IP6 STRING_ARG
{
OUTYY(("P(server_prefer_ip6:%s)\n", $2));
@@ -938,6 +960,15 @@ server_tls_session_ticket_keys: VAR_TLS_SESSION_TICKET_KEYS STRING_ARG
yyerror("out of memory");
}
;
+server_tls_use_sni: VAR_TLS_USE_SNI STRING_ARG
+ {
+ OUTYY(("P(server_tls_use_sni:%s)\n", $2));
+ if(strcmp($2, "yes") != 0 && strcmp($2, "no") != 0)
+ yyerror("expected yes or no.");
+ else cfg_parser->cfg->tls_use_sni = (strcmp($2, "yes")==0);
+ free($2);
+ }
+ ;
server_use_systemd: VAR_USE_SYSTEMD STRING_ARG
{
OUTYY(("P(server_use_systemd:%s)\n", $2));
@@ -1247,6 +1278,20 @@ server_ip_freebind: VAR_IP_FREEBIND STRING_ARG
free($2);
}
;
+server_ip_dscp: VAR_IP_DSCP STRING_ARG
+ {
+ OUTYY(("P(server_ip_dscp:%s)\n", $2));
+ if(atoi($2) == 0 && strcmp($2, "0") != 0)
+ yyerror("number expected");
+ else if (atoi($2) > 63)
+ yyerror("value too large (max 63)");
+ else if (atoi($2) < 0)
+ yyerror("value too small (min 0)");
+ else
+ cfg_parser->cfg->ip_dscp = atoi($2);
+ free($2);
+ }
+ ;
server_stream_wait_size: VAR_STREAM_WAIT_SIZE STRING_ARG
{
OUTYY(("P(server_stream_wait_size:%s)\n", $2));
@@ -2719,7 +2764,10 @@ dtstart: VAR_DNSTAP
;
contents_dt: contents_dt content_dt
| ;
-content_dt: dt_dnstap_enable | dt_dnstap_socket_path |
+content_dt: dt_dnstap_enable | dt_dnstap_socket_path | dt_dnstap_bidirectional |
+ dt_dnstap_ip | dt_dnstap_tls | dt_dnstap_tls_server_name |
+ dt_dnstap_tls_cert_bundle |
+ dt_dnstap_tls_client_key_file | dt_dnstap_tls_client_cert_file |
dt_dnstap_send_identity | dt_dnstap_send_version |
dt_dnstap_identity | dt_dnstap_version |
dt_dnstap_log_resolver_query_messages |
@@ -2738,6 +2786,16 @@ dt_dnstap_enable: VAR_DNSTAP_ENABLE STRING_ARG
free($2);
}
;
+dt_dnstap_bidirectional: VAR_DNSTAP_BIDIRECTIONAL STRING_ARG
+ {
+ OUTYY(("P(dt_dnstap_bidirectional:%s)\n", $2));
+ if(strcmp($2, "yes") != 0 && strcmp($2, "no") != 0)
+ yyerror("expected yes or no.");
+ else cfg_parser->cfg->dnstap_bidirectional =
+ (strcmp($2, "yes")==0);
+ free($2);
+ }
+ ;
dt_dnstap_socket_path: VAR_DNSTAP_SOCKET_PATH STRING_ARG
{
OUTYY(("P(dt_dnstap_socket_path:%s)\n", $2));
@@ -2745,6 +2803,50 @@ dt_dnstap_socket_path: VAR_DNSTAP_SOCKET_PATH STRING_ARG
cfg_parser->cfg->dnstap_socket_path = $2;
}
;
+dt_dnstap_ip: VAR_DNSTAP_IP STRING_ARG
+ {
+ OUTYY(("P(dt_dnstap_ip:%s)\n", $2));
+ free(cfg_parser->cfg->dnstap_ip);
+ cfg_parser->cfg->dnstap_ip = $2;
+ }
+ ;
+dt_dnstap_tls: VAR_DNSTAP_TLS STRING_ARG
+ {
+ OUTYY(("P(dt_dnstap_tls:%s)\n", $2));
+ if(strcmp($2, "yes") != 0 && strcmp($2, "no") != 0)
+ yyerror("expected yes or no.");
+ else cfg_parser->cfg->dnstap_tls = (strcmp($2, "yes")==0);
+ free($2);
+ }
+ ;
+dt_dnstap_tls_server_name: VAR_DNSTAP_TLS_SERVER_NAME STRING_ARG
+ {
+ OUTYY(("P(dt_dnstap_tls_server_name:%s)\n", $2));
+ free(cfg_parser->cfg->dnstap_tls_server_name);
+ cfg_parser->cfg->dnstap_tls_server_name = $2;
+ }
+ ;
+dt_dnstap_tls_cert_bundle: VAR_DNSTAP_TLS_CERT_BUNDLE STRING_ARG
+ {
+ OUTYY(("P(dt_dnstap_tls_cert_bundle:%s)\n", $2));
+ free(cfg_parser->cfg->dnstap_tls_cert_bundle);
+ cfg_parser->cfg->dnstap_tls_cert_bundle = $2;
+ }
+ ;
+dt_dnstap_tls_client_key_file: VAR_DNSTAP_TLS_CLIENT_KEY_FILE STRING_ARG
+ {
+ OUTYY(("P(dt_dnstap_tls_client_key_file:%s)\n", $2));
+ free(cfg_parser->cfg->dnstap_tls_client_key_file);
+ cfg_parser->cfg->dnstap_tls_client_key_file = $2;
+ }
+ ;
+dt_dnstap_tls_client_cert_file: VAR_DNSTAP_TLS_CLIENT_CERT_FILE STRING_ARG
+ {
+ OUTYY(("P(dt_dnstap_tls_client_cert_file:%s)\n", $2));
+ free(cfg_parser->cfg->dnstap_tls_client_cert_file);
+ cfg_parser->cfg->dnstap_tls_client_cert_file = $2;
+ }
+ ;
dt_dnstap_send_identity: VAR_DNSTAP_SEND_IDENTITY STRING_ARG
{
OUTYY(("P(dt_dnstap_send_identity:%s)\n", $2));
@@ -2852,6 +2954,21 @@ py_script: VAR_PYTHON_SCRIPT STRING_ARG
if(!cfg_strlist_append_ex(&cfg_parser->cfg->python_script, $2))
yyerror("out of memory");
}
+dynlibstart: VAR_DYNLIB
+ {
+ OUTYY(("\nP(dynlib:)\n"));
+ }
+ ;
+contents_dl: contents_dl content_dl
+ | ;
+content_dl: dl_file
+ ;
+dl_file: VAR_DYNLIB_FILE STRING_ARG
+ {
+ OUTYY(("P(dynlib-file:%s)\n", $2));
+ if(!cfg_strlist_append_ex(&cfg_parser->cfg->dynlib_file, $2))
+ yyerror("out of memory");
+ }
server_disable_dnssec_lame_check: VAR_DISABLE_DNSSEC_LAME_CHECK STRING_ARG
{
OUTYY(("P(disable_dnssec_lame_check:%s)\n", $2));
@@ -3003,7 +3120,8 @@ cachedbstart: VAR_CACHEDB
contents_cachedb: contents_cachedb content_cachedb
| ;
content_cachedb: cachedb_backend_name | cachedb_secret_seed |
- redis_server_host | redis_server_port | redis_timeout
+ redis_server_host | redis_server_port | redis_timeout |
+ redis_expire_records
;
cachedb_backend_name: VAR_CACHEDB_BACKEND STRING_ARG
{
@@ -3069,6 +3187,19 @@ redis_timeout: VAR_CACHEDB_REDISTIMEOUT STRING_ARG
free($2);
}
;
+redis_expire_records: VAR_CACHEDB_REDISEXPIRERECORDS STRING_ARG
+ {
+ #if defined(USE_CACHEDB) && defined(USE_REDIS)
+ OUTYY(("P(redis_expire_records:%s)\n", $2));
+ if(strcmp($2, "yes") != 0 && strcmp($2, "no") != 0)
+ yyerror("expected yes or no.");
+ else cfg_parser->cfg->redis_expire_records = (strcmp($2, "yes")==0);
+ #else
+ OUTYY(("P(Compiled without cachedb or redis, ignoring)\n"));
+ #endif
+ free($2);
+ }
+ ;
server_tcp_connection_limit: VAR_TCP_CONNECTION_LIMIT STRING_ARG STRING_ARG
{
OUTYY(("P(server_tcp_connection_limit:%s %s)\n", $2, $3));
diff --git a/sbin/unwind/libunbound/util/fptr_wlist.c b/sbin/unwind/libunbound/util/fptr_wlist.c
index 84d41cc8464..aa275ed534b 100644
--- a/sbin/unwind/libunbound/util/fptr_wlist.c
+++ b/sbin/unwind/libunbound/util/fptr_wlist.c
@@ -81,6 +81,9 @@
#ifdef WITH_PYTHONMODULE
#include "pythonmod/pythonmod.h"
#endif
+#ifdef WITH_DYNLIBMODULE
+#include "dynlibmod/dynlibmod.h"
+#endif
#ifdef USE_CACHEDB
#include "cachedb/cachedb.h"
#endif
@@ -93,6 +96,9 @@
#ifdef USE_IPSET
#include "ipset/ipset.h"
#endif
+#ifdef USE_DNSTAP
+#include "dnstap/dtstream.h"
+#endif
int
fptr_whitelist_comm_point(comm_point_callback_type *fptr)
@@ -168,6 +174,15 @@ fptr_whitelist_event(void (*fptr)(int, short, void *))
else if(fptr == &tube_handle_signal) return 1;
else if(fptr == &comm_base_handle_slow_accept) return 1;
else if(fptr == &comm_point_http_handle_callback) return 1;
+#ifdef USE_DNSTAP
+ else if(fptr == &dtio_output_cb) return 1;
+ else if(fptr == &dtio_cmd_cb) return 1;
+ else if(fptr == &dtio_reconnect_timeout_cb) return 1;
+ else if(fptr == &dtio_stop_timer_cb) return 1;
+ else if(fptr == &dtio_stop_ev_cb) return 1;
+ else if(fptr == &dtio_tap_callback) return 1;
+ else if(fptr == &dtio_mainfdcallback) return 1;
+#endif
#ifdef UB_ON_WINDOWS
else if(fptr == &worker_win_stop_cb) return 1;
#endif
@@ -380,6 +395,9 @@ fptr_whitelist_mod_init(int (*fptr)(struct module_env* env, int id))
#ifdef WITH_PYTHONMODULE
else if(fptr == &pythonmod_init) return 1;
#endif
+#ifdef WITH_DYNLIBMODULE
+ else if(fptr == &dynlibmod_init) return 1;
+#endif
#ifdef USE_CACHEDB
else if(fptr == &cachedb_init) return 1;
#endif
@@ -405,6 +423,9 @@ fptr_whitelist_mod_deinit(void (*fptr)(struct module_env* env, int id))
#ifdef WITH_PYTHONMODULE
else if(fptr == &pythonmod_deinit) return 1;
#endif
+#ifdef WITH_DYNLIBMODULE
+ else if(fptr == &dynlibmod_deinit) return 1;
+#endif
#ifdef USE_CACHEDB
else if(fptr == &cachedb_deinit) return 1;
#endif
@@ -431,6 +452,9 @@ fptr_whitelist_mod_operate(void (*fptr)(struct module_qstate* qstate,
#ifdef WITH_PYTHONMODULE
else if(fptr == &pythonmod_operate) return 1;
#endif
+#ifdef WITH_DYNLIBMODULE
+ else if(fptr == &dynlibmod_operate) return 1;
+#endif
#ifdef USE_CACHEDB
else if(fptr == &cachedb_operate) return 1;
#endif
@@ -457,6 +481,9 @@ fptr_whitelist_mod_inform_super(void (*fptr)(
#ifdef WITH_PYTHONMODULE
else if(fptr == &pythonmod_inform_super) return 1;
#endif
+#ifdef WITH_DYNLIBMODULE
+ else if(fptr == &dynlibmod_inform_super) return 1;
+#endif
#ifdef USE_CACHEDB
else if(fptr == &cachedb_inform_super) return 1;
#endif
@@ -483,6 +510,9 @@ fptr_whitelist_mod_clear(void (*fptr)(struct module_qstate* qstate,
#ifdef WITH_PYTHONMODULE
else if(fptr == &pythonmod_clear) return 1;
#endif
+#ifdef WITH_DYNLIBMODULE
+ else if(fptr == &dynlibmod_clear) return 1;
+#endif
#ifdef USE_CACHEDB
else if(fptr == &cachedb_clear) return 1;
#endif
@@ -508,6 +538,9 @@ fptr_whitelist_mod_get_mem(size_t (*fptr)(struct module_env* env, int id))
#ifdef WITH_PYTHONMODULE
else if(fptr == &pythonmod_get_mem) return 1;
#endif
+#ifdef WITH_DYNLIBMODULE
+ else if(fptr == &dynlibmod_get_mem) return 1;
+#endif
#ifdef USE_CACHEDB
else if(fptr == &cachedb_get_mem) return 1;
#endif
@@ -566,18 +599,30 @@ int fptr_whitelist_inplace_cb_reply_generic(inplace_cb_reply_func_type* fptr,
#ifdef WITH_PYTHONMODULE
if(fptr == &python_inplace_cb_reply_generic) return 1;
#endif
+#ifdef WITH_DYNLIBMODULE
+ if(fptr == &dynlib_inplace_cb_reply_generic) return 1;
+#endif
} else if(type == inplace_cb_reply_cache) {
#ifdef WITH_PYTHONMODULE
if(fptr == &python_inplace_cb_reply_generic) return 1;
#endif
+#ifdef WITH_DYNLIBMODULE
+ if(fptr == &dynlib_inplace_cb_reply_generic) return 1;
+#endif
} else if(type == inplace_cb_reply_local) {
#ifdef WITH_PYTHONMODULE
if(fptr == &python_inplace_cb_reply_generic) return 1;
#endif
+#ifdef WITH_DYNLIBMODULE
+ if(fptr == &dynlib_inplace_cb_reply_generic) return 1;
+#endif
} else if(type == inplace_cb_reply_servfail) {
#ifdef WITH_PYTHONMODULE
if(fptr == &python_inplace_cb_reply_generic) return 1;
#endif
+#ifdef WITH_DYNLIBMODULE
+ if(fptr == &dynlib_inplace_cb_reply_generic) return 1;
+#endif
}
return 0;
}
@@ -592,6 +637,10 @@ int fptr_whitelist_inplace_cb_query(inplace_cb_query_func_type* fptr)
if(fptr == &python_inplace_cb_query_generic)
return 1;
#endif
+#ifdef WITH_DYNLIBMODULE
+ if(fptr == &dynlib_inplace_cb_query_generic)
+ return 1;
+#endif
(void)fptr;
return 0;
}
@@ -605,6 +654,10 @@ int fptr_whitelist_inplace_cb_edns_back_parsed(
#else
(void)fptr;
#endif
+#ifdef WITH_DYNLIBMODULE
+ if(fptr == &dynlib_inplace_cb_edns_back_parsed)
+ return 1;
+#endif
return 0;
}
@@ -617,6 +670,10 @@ int fptr_whitelist_inplace_cb_query_response(
#else
(void)fptr;
#endif
+#ifdef WITH_DYNLIBMODULE
+ if(fptr == &dynlib_inplace_cb_query_response)
+ return 1;
+#endif
return 0;
}
diff --git a/sbin/unwind/libunbound/util/iana_ports.inc b/sbin/unwind/libunbound/util/iana_ports.inc
index 3b8afe54e82..79488f49a2c 100644
--- a/sbin/unwind/libunbound/util/iana_ports.inc
+++ b/sbin/unwind/libunbound/util/iana_ports.inc
@@ -3771,6 +3771,7 @@
4188,
4191,
4192,
+4195,
4197,
4199,
4300,
@@ -4539,6 +4540,7 @@
6850,
6868,
6888,
+6924,
6935,
6936,
6946,
@@ -5229,6 +5231,7 @@
18241,
18262,
18463,
+18516,
18634,
18635,
18668,
diff --git a/sbin/unwind/libunbound/util/mini_event.h b/sbin/unwind/libunbound/util/mini_event.h
index 204894d97af..1734ca574c6 100644
--- a/sbin/unwind/libunbound/util/mini_event.h
+++ b/sbin/unwind/libunbound/util/mini_event.h
@@ -54,6 +54,8 @@
#if defined(USE_MINI_EVENT) && !defined(USE_WINSOCK)
+#include <sys/time.h>
+
#ifndef HAVE_EVENT_BASE_FREE
#define HAVE_EVENT_BASE_FREE
#endif
diff --git a/sbin/unwind/libunbound/util/net_help.c b/sbin/unwind/libunbound/util/net_help.c
index 0869f91f954..f59a4d65370 100644
--- a/sbin/unwind/libunbound/util/net_help.c
+++ b/sbin/unwind/libunbound/util/net_help.c
@@ -55,6 +55,9 @@
#ifdef HAVE_OPENSSL_ERR_H
#include <openssl/err.h>
#endif
+#ifdef HAVE_OPENSSL_CORE_NAMES_H
+#include <openssl/core_names.h>
+#endif
#ifdef USE_WINSOCK
#include <wincrypt.h>
#endif
@@ -67,8 +70,8 @@ uint16_t EDNS_ADVERTISED_SIZE = 4096;
/** minimal responses when positive answer: default is no */
int MINIMAL_RESPONSES = 0;
-/** rrset order roundrobin: default is no */
-int RRSET_ROUNDROBIN = 0;
+/** rrset order roundrobin: default is yes */
+int RRSET_ROUNDROBIN = 1;
/** log tag queries with name instead of 'info' for filtering */
int LOG_TAG_QUERYREPLY = 0;
@@ -79,6 +82,32 @@ static struct tls_session_ticket_key {
unsigned char *hmac_key;
} *ticket_keys;
+/**
+ * callback TLS session ticket encrypt and decrypt
+ * For use with SSL_CTX_set_tlsext_ticket_key_cb or
+ * SSL_CTX_set_tlsext_ticket_key_evp_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 hmac context, function sets this.
+ * with ..key_cb it is of type HMAC_CTX*
+ * with ..key_evp_cb it is of type EVP_MAC_CTX*
+ * @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.
+ */
+#ifdef HAVE_SSL
+int tls_session_ticket_key_cb(SSL *s, unsigned char* key_name,
+ unsigned char* iv, EVP_CIPHER_CTX *evp_ctx,
+#ifdef HAVE_SSL_CTX_SET_TLSEXT_TICKET_KEY_EVP_CB
+ EVP_MAC_CTX *hmac_ctx,
+#else
+ HMAC_CTX* hmac_ctx,
+#endif
+ int enc);
+#endif /* HAVE_SSL */
+
/* returns true is string addr is an ip6 specced address */
int
str_is_ip6(const char* str)
@@ -829,6 +858,32 @@ void log_crypto_err_code(const char* str, unsigned long err)
#endif /* HAVE_SSL */
}
+#ifdef HAVE_SSL
+/** log certificate details */
+void
+log_cert(unsigned level, const char* str, void* cert)
+{
+ BIO* bio;
+ char nul = 0;
+ char* pp = NULL;
+ long len;
+ if(verbosity < level) return;
+ bio = BIO_new(BIO_s_mem());
+ if(!bio) return;
+ X509_print_ex(bio, (X509*)cert, 0, (unsigned long)-1
+ ^(X509_FLAG_NO_SUBJECT
+ |X509_FLAG_NO_ISSUER|X509_FLAG_NO_VALIDITY
+ |X509_FLAG_NO_EXTENSIONS|X509_FLAG_NO_AUX
+ |X509_FLAG_NO_ATTRIBUTES));
+ BIO_write(bio, &nul, (int)sizeof(nul));
+ len = BIO_get_mem_data(bio, &pp);
+ if(len != 0 && pp) {
+ verbose(level, "%s: \n%s", str, pp);
+ }
+ BIO_free(bio);
+}
+#endif /* HAVE_SSL */
+
int
listen_sslctx_setup(void* ctxt)
{
@@ -970,7 +1025,7 @@ void* listen_sslctx_create(char* key, char* pem, char* verifypem)
}
SSL_CTX_set_client_CA_list(ctx, SSL_load_client_CA_file(
verifypem));
- SSL_CTX_set_verify(ctx, SSL_VERIFY_PEER, NULL);
+ SSL_CTX_set_verify(ctx, SSL_VERIFY_PEER|SSL_VERIFY_FAIL_IF_NO_PEER_CERT, NULL);
}
return ctx;
#else
@@ -1191,6 +1246,60 @@ void* outgoing_ssl_fd(void* sslctx, int fd)
#endif
}
+int check_auth_name_for_ssl(char* auth_name)
+{
+ if(!auth_name) return 1;
+#if defined(HAVE_SSL) && !defined(HAVE_SSL_SET1_HOST) && !defined(HAVE_X509_VERIFY_PARAM_SET1_HOST)
+ log_err("the query has an auth_name %s, but libssl has no call to "
+ "perform TLS authentication. Remove that name from config "
+ "or upgrade the ssl crypto library.", auth_name);
+ return 0;
+#else
+ return 1;
+#endif
+}
+
+/** set the authname on an SSL structure, SSL* ssl */
+int set_auth_name_on_ssl(void* ssl, char* auth_name, int use_sni)
+{
+ if(!auth_name) return 1;
+#ifdef HAVE_SSL
+ if(use_sni) {
+ (void)SSL_set_tlsext_host_name(ssl, auth_name);
+ }
+#else
+ (void)ssl;
+ (void)use_sni;
+#endif
+#ifdef HAVE_SSL_SET1_HOST
+ SSL_set_verify(ssl, SSL_VERIFY_PEER, NULL);
+ /* setting the hostname makes openssl verify the
+ * host name in the x509 certificate in the
+ * SSL connection*/
+ if(!SSL_set1_host(ssl, auth_name)) {
+ log_err("SSL_set1_host failed");
+ 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(auth_name) {
+ X509_VERIFY_PARAM* param = SSL_get0_param(ssl);
+# ifdef X509_CHECK_FLAG_NO_PARTIAL_WILDCARDS
+ X509_VERIFY_PARAM_set_hostflags(param, X509_CHECK_FLAG_NO_PARTIAL_WILDCARDS);
+# endif
+ if(!X509_VERIFY_PARAM_set1_host(param, auth_name, strlen(auth_name))) {
+ log_err("X509_VERIFY_PARAM_set1_host failed");
+ return 0;
+ }
+ SSL_set_verify(ssl, SSL_VERIFY_PEER, NULL);
+ }
+#else
+ verbose(VERB_ALGO, "the query has an auth_name, but libssl has no call to perform TLS authentication");
+#endif /* HAVE_SSL_SET1_HOST */
+ return 1;
+}
+
#if defined(HAVE_SSL) && defined(OPENSSL_THREADS) && !defined(THREADS_DISABLED) && defined(CRYPTO_LOCK) && OPENSSL_VERSION_NUMBER < 0x10100000L
/** global lock list for openssl locks */
static lock_basic_type *ub_openssl_locks = NULL;
@@ -1285,7 +1394,7 @@ int listen_sslctx_setup_ticket_keys(void* sslctx, struct config_strlist* tls_ses
if(!data)
return 0;
- f = fopen(p->str, "r");
+ f = fopen(p->str, "rb");
if(!f) {
log_err("could not read tls-session-ticket-key %s: %s", p->str, strerror(errno));
free(data);
@@ -1308,10 +1417,17 @@ int listen_sslctx_setup_ticket_keys(void* sslctx, struct config_strlist* tls_ses
}
/* terminate array with NULL key name entry */
keys->key_name = NULL;
+# ifdef HAVE_SSL_CTX_SET_TLSEXT_TICKET_KEY_EVP_CB
+ if(SSL_CTX_set_tlsext_ticket_key_evp_cb(sslctx, tls_session_ticket_key_cb) == 0) {
+ log_err("no support for TLS session ticket");
+ return 0;
+ }
+# else
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;
}
+# endif
return 1;
#else
(void)sslctx;
@@ -1321,13 +1437,27 @@ int listen_sslctx_setup_ticket_keys(void* sslctx, struct config_strlist* tls_ses
}
-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
+int tls_session_ticket_key_cb(SSL *ATTR_UNUSED(sslctx), unsigned char* key_name,
+ unsigned char* iv, EVP_CIPHER_CTX *evp_sctx,
+#ifdef HAVE_SSL_CTX_SET_TLSEXT_TICKET_KEY_EVP_CB
+ EVP_MAC_CTX *hmac_ctx,
+#else
+ HMAC_CTX* hmac_ctx,
+#endif
+ int enc)
{
#ifdef HAVE_SSL
+# ifdef HAVE_SSL_CTX_SET_TLSEXT_TICKET_KEY_EVP_CB
+ OSSL_PARAM params[3];
+# else
const EVP_MD *digest;
+# endif
const EVP_CIPHER *cipher;
int evp_cipher_length;
+# ifndef HAVE_SSL_CTX_SET_TLSEXT_TICKET_KEY_EVP_CB
digest = EVP_sha256();
+# endif
cipher = EVP_aes_256_cbc();
evp_cipher_length = EVP_CIPHER_iv_length(cipher);
if( enc == 1 ) {
@@ -1342,7 +1472,14 @@ int tls_session_ticket_key_cb(void *ATTR_UNUSED(sslctx), unsigned char* key_name
verbose(VERB_CLIENT, "EVP_EncryptInit_ex failed");
return -1;
}
-#ifndef HMAC_INIT_EX_RETURNS_VOID
+#ifdef HAVE_SSL_CTX_SET_TLSEXT_TICKET_KEY_EVP_CB
+ params[0] = OSSL_PARAM_construct_octet_string(OSSL_MAC_PARAM_KEY,
+ ticket_keys->hmac_key, 32);
+ params[1] = OSSL_PARAM_construct_utf8_string(OSSL_MAC_PARAM_DIGEST,
+ "sha256", 0);
+ params[2] = OSSL_PARAM_construct_end();
+ EVP_MAC_set_ctx_params(hmac_ctx, params);
+#elif !defined(HMAC_INIT_EX_RETURNS_VOID)
if (HMAC_Init_ex(hmac_ctx, ticket_keys->hmac_key, 32, digest, NULL) != 1) {
verbose(VERB_CLIENT, "HMAC_Init_ex failed");
return -1;
@@ -1366,7 +1503,14 @@ int tls_session_ticket_key_cb(void *ATTR_UNUSED(sslctx), unsigned char* key_name
return 0;
}
-#ifndef HMAC_INIT_EX_RETURNS_VOID
+#ifdef HAVE_SSL_CTX_SET_TLSEXT_TICKET_KEY_EVP_CB
+ params[0] = OSSL_PARAM_construct_octet_string(OSSL_KDF_PARAM_KEY,
+ key->hmac_key, 32);
+ params[1] = OSSL_PARAM_construct_utf8_string(OSSL_MAC_PARAM_DIGEST,
+ "sha256", 0);
+ params[2] = OSSL_PARAM_construct_end();
+ EVP_MAC_set_ctx_params(hmac_ctx, params);
+#elif !defined(HMAC_INIT_EX_RETURNS_VOID)
if (HMAC_Init_ex(hmac_ctx, key->hmac_key, 32, digest, NULL) != 1) {
verbose(VERB_CLIENT, "HMAC_Init_ex failed");
return -1;
@@ -1391,6 +1535,7 @@ int tls_session_ticket_key_cb(void *ATTR_UNUSED(sslctx), unsigned char* key_name
return 0;
#endif
}
+#endif /* HAVE_SSL */
void
listen_sslctx_delete_ticket_keys(void)
diff --git a/sbin/unwind/libunbound/util/net_help.h b/sbin/unwind/libunbound/util/net_help.h
index 7a33a72035d..29943ada090 100644
--- a/sbin/unwind/libunbound/util/net_help.h
+++ b/sbin/unwind/libunbound/util/net_help.h
@@ -386,6 +386,14 @@ void log_crypto_err(const char* str);
void log_crypto_err_code(const char* str, unsigned long err);
/**
+ * Log certificate details verbosity, string, of X509 cert
+ * @param level: verbosity level
+ * @param str: string to prefix on output
+ * @param cert: X509* structure.
+ */
+void log_cert(unsigned level, const char* str, void* cert);
+
+/**
* Set SSL_OP_NOxxx options on SSL context to disable bad crypto
* @param ctxt: SSL_CTX*
* @return false on failure.
@@ -435,6 +443,22 @@ void* incoming_ssl_fd(void* sslctx, int fd);
void* outgoing_ssl_fd(void* sslctx, int fd);
/**
+ * check if authname SSL functionality is available, false if not
+ * @param auth_name: the name for the remote server, used for error print.
+ * @return false if SSL functionality to check the SSL name is not available.
+ */
+int check_auth_name_for_ssl(char* auth_name);
+
+/**
+ * set auth name on SSL for verification
+ * @param ssl: SSL* to set
+ * @param auth_name: if NULL nothing happens, otherwise the name to check.
+ * @param use_sni: if SNI will be used.
+ * @return 1 on success or NULL auth_name, 0 on failure.
+ */
+int set_auth_name_on_ssl(void* ssl, char* auth_name, int use_sni);
+
+/**
* Initialize openssl locking for thread safety
* @return false on failure (alloc failure).
*/
@@ -454,20 +478,6 @@ void ub_openssl_lock_delete(void);
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);
diff --git a/sbin/unwind/libunbound/util/netevent.c b/sbin/unwind/libunbound/util/netevent.c
index dbc9f4cd8f3..3e7a433e502 100644
--- a/sbin/unwind/libunbound/util/netevent.c
+++ b/sbin/unwind/libunbound/util/netevent.c
@@ -470,7 +470,7 @@ comm_point_send_udp_msg_if(struct comm_point *c, sldns_buffer* packet,
msg.msg_iovlen = 1;
msg.msg_control = control.buf;
#ifndef S_SPLINT_S
- msg.msg_controllen = sizeof(control);
+ msg.msg_controllen = sizeof(control.buf);
#endif /* S_SPLINT_S */
msg.msg_flags = 0;
@@ -480,7 +480,7 @@ comm_point_send_udp_msg_if(struct comm_point *c, sldns_buffer* packet,
#ifdef IP_PKTINFO
void* cmsg_data;
msg.msg_controllen = CMSG_SPACE(sizeof(struct in_pktinfo));
- log_assert(msg.msg_controllen <= sizeof(control));
+ log_assert(msg.msg_controllen <= sizeof(control.buf));
cmsg->cmsg_level = IPPROTO_IP;
cmsg->cmsg_type = IP_PKTINFO;
memmove(CMSG_DATA(cmsg), &r->pktinfo.v4info,
@@ -491,7 +491,7 @@ comm_point_send_udp_msg_if(struct comm_point *c, sldns_buffer* packet,
cmsg->cmsg_len = CMSG_LEN(sizeof(struct in_pktinfo));
#elif defined(IP_SENDSRCADDR)
msg.msg_controllen = CMSG_SPACE(sizeof(struct in_addr));
- log_assert(msg.msg_controllen <= sizeof(control));
+ log_assert(msg.msg_controllen <= sizeof(control.buf));
cmsg->cmsg_level = IPPROTO_IP;
cmsg->cmsg_type = IP_SENDSRCADDR;
memmove(CMSG_DATA(cmsg), &r->pktinfo.v4addr,
@@ -504,7 +504,7 @@ comm_point_send_udp_msg_if(struct comm_point *c, sldns_buffer* packet,
} else if(r->srctype == 6) {
void* cmsg_data;
msg.msg_controllen = CMSG_SPACE(sizeof(struct in6_pktinfo));
- log_assert(msg.msg_controllen <= sizeof(control));
+ log_assert(msg.msg_controllen <= sizeof(control.buf));
cmsg->cmsg_level = IPPROTO_IPV6;
cmsg->cmsg_type = IPV6_PKTINFO;
memmove(CMSG_DATA(cmsg), &r->pktinfo.v6info,
@@ -516,7 +516,7 @@ comm_point_send_udp_msg_if(struct comm_point *c, sldns_buffer* packet,
} else {
/* try to pass all 0 to use default route */
msg.msg_controllen = CMSG_SPACE(sizeof(struct in6_pktinfo));
- log_assert(msg.msg_controllen <= sizeof(control));
+ log_assert(msg.msg_controllen <= sizeof(control.buf));
cmsg->cmsg_level = IPPROTO_IPV6;
cmsg->cmsg_type = IPV6_PKTINFO;
memset(CMSG_DATA(cmsg), 0, sizeof(struct in6_pktinfo));
@@ -616,7 +616,7 @@ comm_point_udp_ancil_callback(int fd, short event, void* arg)
msg.msg_iovlen = 1;
msg.msg_control = ancil.buf;
#ifndef S_SPLINT_S
- msg.msg_controllen = sizeof(ancil);
+ msg.msg_controllen = sizeof(ancil.buf);
#endif /* S_SPLINT_S */
msg.msg_flags = 0;
rcv = recvmsg(fd, &msg, 0);
@@ -1033,34 +1033,8 @@ tcp_callback_reader(struct comm_point* c)
}
#ifdef HAVE_SSL
-/** log certificate details */
-static void
-log_cert(unsigned level, const char* str, X509* cert)
-{
- BIO* bio;
- char nul = 0;
- char* pp = NULL;
- long len;
- if(verbosity < level) return;
- bio = BIO_new(BIO_s_mem());
- if(!bio) return;
- X509_print_ex(bio, cert, 0, (unsigned long)-1
- ^(X509_FLAG_NO_SUBJECT
- |X509_FLAG_NO_ISSUER|X509_FLAG_NO_VALIDITY
- |X509_FLAG_NO_EXTENSIONS|X509_FLAG_NO_AUX
- |X509_FLAG_NO_ATTRIBUTES));
- BIO_write(bio, &nul, (int)sizeof(nul));
- len = BIO_get_mem_data(bio, &pp);
- if(len != 0 && pp) {
- verbose(level, "%s: \n%s", str, pp);
- }
- BIO_free(bio);
-}
-#endif /* HAVE_SSL */
-
-#ifdef HAVE_SSL
/** true if the ssl handshake error has to be squelched from the logs */
-static int
+int
squelch_err_ssl_handshake(unsigned long err)
{
if(verbosity >= VERB_QUERY)
@@ -3189,7 +3163,10 @@ comm_point_send_reply(struct comm_reply *repinfo)
if(repinfo->c->tcp_parent->dtenv != NULL &&
repinfo->c->tcp_parent->dtenv->log_client_response_messages)
dt_msg_send_client_response(repinfo->c->tcp_parent->dtenv,
- &repinfo->addr, repinfo->c->type, repinfo->c->buffer);
+ &repinfo->addr, repinfo->c->type,
+ ( repinfo->c->tcp_req_info
+ ? repinfo->c->tcp_req_info->spool_buffer
+ : repinfo->c->buffer ));
#endif
if(repinfo->c->tcp_req_info) {
tcp_req_info_send_reply(repinfo->c->tcp_req_info);
diff --git a/sbin/unwind/libunbound/util/netevent.h b/sbin/unwind/libunbound/util/netevent.h
index d80c72b3343..bb2cd1e5373 100644
--- a/sbin/unwind/libunbound/util/netevent.h
+++ b/sbin/unwind/libunbound/util/netevent.h
@@ -783,7 +783,23 @@ void comm_base_handle_slow_accept(int fd, short event, void* arg);
void comm_point_tcp_win_bio_cb(struct comm_point* c, void* ssl);
#endif
-/** see if errno for tcp connect has to be logged or not. This uses errno */
+/**
+ * See if errno for tcp connect has to be logged or not. This uses errno
+ * @param addr: apart from checking errno, the addr is checked for ip4mapped
+ * and broadcast type, hence passed.
+ * @param addrlen: length of the addr parameter.
+ * @return true if it needs to be logged.
+ */
int tcp_connect_errno_needs_log(struct sockaddr* addr, socklen_t addrlen);
+#ifdef HAVE_SSL
+/**
+ * True if the ssl handshake error has to be squelched from the logs
+ * @param err: the error returned by the openssl routine, ERR_get_error.
+ * This is a packed structure with elements that are examined.
+ * @return true if the error is squelched (not logged).
+ */
+int squelch_err_ssl_handshake(unsigned long err);
+#endif
+
#endif /* NET_EVENT_H */
diff --git a/sbin/unwind/libunbound/util/shm_side/shm_main.c b/sbin/unwind/libunbound/util/shm_side/shm_main.c
index 46a71510fea..af8c5bcf370 100644
--- a/sbin/unwind/libunbound/util/shm_side/shm_main.c
+++ b/sbin/unwind/libunbound/util/shm_side/shm_main.c
@@ -285,6 +285,10 @@ void shm_main_run(struct worker *worker)
shm_stat->mem.ipsecmod = (long long)mod_get_mem(&worker->env,
"ipsecmod");
#endif
+#ifdef WITH_DYNLIBMODULE
+ shm_stat->mem.dynlib = (long long)mod_get_mem(&worker->env,
+ "dynlib");
+#endif
}
server_stats_add(stat_total, stat_info);
diff --git a/sbin/unwind/libunbound/validator/val_secalgo.c b/sbin/unwind/libunbound/validator/val_secalgo.c
index 8f17c53e86d..65bca8b69d6 100644
--- a/sbin/unwind/libunbound/validator/val_secalgo.c
+++ b/sbin/unwind/libunbound/validator/val_secalgo.c
@@ -77,6 +77,10 @@ int fake_sha1 = 0;
#include <openssl/engine.h>
#endif
+#if defined(HAVE_OPENSSL_DSA_H) && defined(USE_DSA)
+#include <openssl/dsa.h>
+#endif
+
/**
* Output a libcrypto openssl error to the logfile.
* @param str: string to add to it.
@@ -1746,6 +1750,7 @@ _verify_nettle_ecdsa(sldns_buffer* buf, unsigned int digest_size, unsigned char*
res &= nettle_ecdsa_verify (&pubkey, SHA256_DIGEST_SIZE, digest, &signature);
mpz_clear(x);
mpz_clear(y);
+ nettle_ecc_point_clear(&pubkey);
break;
}
case SHA384_DIGEST_SIZE:
diff --git a/sbin/unwind/libunbound/validator/val_sigcrypt.c b/sbin/unwind/libunbound/validator/val_sigcrypt.c
index 33d206de8d7..de730f68189 100644
--- a/sbin/unwind/libunbound/validator/val_sigcrypt.c
+++ b/sbin/unwind/libunbound/validator/val_sigcrypt.c
@@ -1343,7 +1343,7 @@ adjust_ttl(struct val_env* ve, uint32_t unow,
if(ve->date_override) {
now = ve->date_override;
} else now = (int32_t)unow;
- expittl = expi - now;
+ expittl = (int32_t)((uint32_t)expi - (uint32_t)now);
/* so now:
* d->ttl: rrset ttl read from message or cache. May be reduced
diff --git a/sbin/unwind/libunbound/validator/validator.c b/sbin/unwind/libunbound/validator/validator.c
index 1e052a0e28d..c3ca0a27da8 100644
--- a/sbin/unwind/libunbound/validator/validator.c
+++ b/sbin/unwind/libunbound/validator/validator.c
@@ -200,7 +200,9 @@ val_deinit(struct module_env* env, int id)
anchors_delete(env->anchors);
env->anchors = NULL;
key_cache_delete(val_env->kcache);
+ env->key_cache = NULL;
neg_cache_delete(val_env->neg_cache);
+ env->neg_cache = NULL;
free(val_env->nsec3_keysize);
free(val_env->nsec3_maxiter);
free(val_env);