summaryrefslogtreecommitdiffstats
path: root/tinyHTTP/src
diff options
context:
space:
mode:
Diffstat (limited to 'tinyHTTP/src')
-rw-r--r--tinyHTTP/src/auth/thttp_auth.c234
-rw-r--r--tinyHTTP/src/auth/thttp_challenge.c297
-rw-r--r--tinyHTTP/src/headers/thttp_header.c152
-rw-r--r--tinyHTTP/src/headers/thttp_header_Authorization.c6979
-rw-r--r--tinyHTTP/src/headers/thttp_header_Content_Length.c312
-rw-r--r--tinyHTTP/src/headers/thttp_header_Content_Type.c418
-rw-r--r--tinyHTTP/src/headers/thttp_header_Dummy.c327
-rw-r--r--tinyHTTP/src/headers/thttp_header_ETag.c344
-rw-r--r--tinyHTTP/src/headers/thttp_header_Transfer_Encoding.c372
-rw-r--r--tinyHTTP/src/headers/thttp_header_WWW_Authenticate.c8318
-rw-r--r--tinyHTTP/src/makefile49
-rw-r--r--tinyHTTP/src/parsers/thttp_parser_header.c2594
-rw-r--r--tinyHTTP/src/parsers/thttp_parser_message.c473
-rw-r--r--tinyHTTP/src/parsers/thttp_parser_url.c484
-rw-r--r--tinyHTTP/src/thttp.c737
-rw-r--r--tinyHTTP/src/thttp_action.c187
-rw-r--r--tinyHTTP/src/thttp_dialog.c534
-rw-r--r--tinyHTTP/src/thttp_event.c81
-rw-r--r--tinyHTTP/src/thttp_message.c503
-rw-r--r--tinyHTTP/src/thttp_session.c522
-rw-r--r--tinyHTTP/src/thttp_url.c174
21 files changed, 24091 insertions, 0 deletions
diff --git a/tinyHTTP/src/auth/thttp_auth.c b/tinyHTTP/src/auth/thttp_auth.c
new file mode 100644
index 0000000..3b996ba
--- /dev/null
+++ b/tinyHTTP/src/auth/thttp_auth.c
@@ -0,0 +1,234 @@
+/*
+* Copyright (C) 2009-2010 Mamadou Diop.
+*
+* Contact: Mamadou Diop <diopmamadou(at)doubango.org>
+*
+* This file is part of Open Source Doubango Framework.
+*
+* DOUBANGO is free software: you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published by
+* the Free Software Foundation, either version 3 of the License, or
+* (at your option) any later version.
+*
+* DOUBANGO is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with DOUBANGO.
+*
+*/
+/**@file thttp_auth.c
+ * @brief HTTP basic/digest authetication (RFC 2617) implementations.
+ *
+ * @author Mamadou Diop <diopmamadou(at)doubango.org>
+ *
+ * @date Created: Sat Nov 8 16:54:58 2009 mdiop
+ */
+#include "tinyhttp/auth/thttp_auth.h"
+
+#include "tsk_string.h"
+#include "tsk_base64.h"
+#include "tsk_buffer.h"
+#include "tsk_memory.h"
+
+#include <string.h>
+
+/**@defgroup thttp_auth_group HTTP basic/digest authentication (RFC 2617)
+*/
+
+/**@ingroup thttp_auth_group
+ *
+ * Generates HTTP-basic response as per RFC 2617.
+ *
+ * @param [in,out] userid The user-id.
+ * @param [in,out] password The user-password.
+ * @param [in,out] response A pointer to the response. It will be up to the caller to free the newly allocated buffer.
+ *
+ * @return The size of the response.
+**/
+tsk_size_t thttp_auth_basic_response(const char* userid, const char* password, char** response)
+{
+ tsk_size_t ret;
+
+ /* RFC 2617 - 2 Basic Authentication Scheme
+
+ To receive authorization, the client sends the userid and password,
+ separated by a single colon (":") character, within a base64 [7]
+ encoded string in the credentials.
+ */
+
+ char *res = 0;
+ tsk_sprintf(&res, "%s:%s", userid, password);
+ ret = tsk_base64_encode((const uint8_t*)res, tsk_strlen(res), response);
+ TSK_FREE(res);
+
+ return ret;
+}
+
+
+/**@ingroup thttp_auth_group
+ * Generates digest HA1 value as per RFC 2617 subclause 3.2.2.2.
+ *
+ *
+ * @param [in,out] username The user's name (unquoted) in the specified @a realm.
+ * @param [in,out] realm The realm. (unquoted)
+ * @param [in,out] password The user's password.
+ * @param [in,out] ha1 A pointer to the result.
+ *
+ * @return Zero if succeed and non-zero error code otherwise.
+**/
+int thttp_auth_digest_HA1(const char* username, const char* realm, const char* password, tsk_md5string_t* ha1)
+{
+ int ret;
+
+ /* RFC 2617 - 3.2.2.2 A1
+ A1 = unq(username-value) ":" unq(realm-value) ":" passwd
+ */
+ char *a1 = 0;
+ tsk_sprintf(&a1, "%s:%s:%s", username, realm, password);
+ ret = tsk_md5compute(a1, tsk_strlen(a1), ha1);
+ TSK_FREE(a1);
+
+ return ret;
+}
+
+/**@ingroup thttp_auth_group
+ *
+ * Generates digest HA1 value for 'MD5-sess' algo as per RFC 2617 subclause 3.2.2.2.
+ *
+ *
+ * @param [in,out] username The user's name (unquoted) in the specified @a realm.
+ * @param [in,out] realm The realm (unquoted).
+ * @param [in,out] password The user's password.
+ * @param [in,out] nonce The nonce (unquoted).
+ * @param [in,out] cnonce The client nonce (unquoted).
+ * @param [in,out] ha1sess A pointer to the result.
+ *
+ * @return Zero if succeed and non-zero error code otherwise.
+**/
+int thttp_auth_digest_HA1sess(const char* username, const char* realm, const char* password, const char* nonce, const char* cnonce, tsk_md5string_t* ha1sess)
+{
+ int ret;
+
+ /* RFC 2617 - 3.2.2.2 A1
+ A1 = H( unq(username-value) ":" unq(realm-value)
+ ":" passwd )
+ ":" unq(nonce-value) ":" unq(cnonce-value)
+ */
+
+ char *a1sess = 0;
+ tsk_sprintf(&a1sess, "%s:%s:%s:%s:%s", username, realm, password, nonce, cnonce);
+ ret = tsk_md5compute(a1sess, tsk_strlen(a1sess), ha1sess);
+ TSK_FREE(a1sess);
+
+ return ret;
+}
+
+/**@ingroup thttp_auth_group
+ * Generates digest HA2 value as per RFC 2617 subclause 3.2.2.3.
+ *
+ *
+ * @param [in,out] method The HTTP/SIP method name.
+ * @param [in,out] url The HTTP URL or SIP URI of the request.
+ * @param [in,out] entity_body The entity body.
+ * @param [in,out] qop The Quality Of Protection.
+ * @param [in,out] ha2 A pointer to the response.
+ *
+ * @return Zero if succeed and non-zero error code otherwise.
+**/
+int thttp_auth_digest_HA2(const char* method, const char* url, const tsk_buffer_t* entity_body, const char* qop, tsk_md5string_t* ha2)
+{
+ int ret;
+ /* RFC 2617 - 3.2.2.3 A2
+
+ If the "qop" directive's value is "auth" or is unspecified, then A2
+ is:
+ A2 = Method ":" digest-url-value
+
+ If the "qop" value is "auth-int", then A2 is:
+ A2 = Method ":" digest-url-value ":" H(entity-body)
+ */
+
+ char *a2 = 0;
+
+ if(!qop || tsk_strempty(qop) || tsk_striequals(qop, "auth")){
+ tsk_sprintf(&a2, "%s:%s", method, url);
+ }
+ else if(tsk_striequals(qop, "auth-int"))
+ {
+ if(entity_body && entity_body->data){
+ tsk_md5string_t hEntity;
+ if((ret = tsk_md5compute(entity_body->data, entity_body->size, &hEntity))){
+ goto bail;
+ }
+ tsk_sprintf(&a2, "%s:%s:%s", method, url, hEntity);
+ }
+ else{
+ tsk_sprintf(&a2, "%s:%s:%s", method, url, TSK_MD5_EMPTY);
+ }
+ }
+
+ ret = tsk_md5compute(a2, tsk_strlen(a2), ha2);
+
+bail:
+ TSK_FREE(a2);
+
+ return ret;
+}
+
+
+/**@ingroup thttp_auth_group
+ *
+ * Generates HTTP digest response as per RFC 2617 subclause 3.2.2.1.
+ *
+ * @param [in,out] ha1 HA1 string generated using @ref thttp_auth_digest_HA1 or @ref thttp_auth_digest_HA1sess.
+ * @param [in,out] nonce The nonce value.
+ * @param [in,out] noncecount The nonce count.
+ * @param [in,out] cnonce The client nounce (unquoted).
+ * @param [in,out] qop The Quality Of Protection (unquoted).
+ * @param [in,out] ha2 HA2 string generated using @ref thttp_auth_digest_HA2.
+ * @param [in,out] response A pointer to the response.
+ *
+ * @return Zero if succeed and non-zero error code otherwise.
+**/
+int thttp_auth_digest_response(const tsk_md5string_t *ha1, const char* nonce, const nonce_count_t noncecount, const char* cnonce,
+ const char* qop, const tsk_md5string_t* ha2, tsk_md5string_t* response)
+{
+ int ret;
+
+ /* RFC 2617 3.2.2.1 Request-Digest
+
+ ============ CASE 1 ============
+ If the "qop" value is "auth" or "auth-int":
+ request-digest = <"> < KD ( H(A1), unq(nonce-value)
+ ":" nc-value
+ ":" unq(cnonce-value)
+ ":" unq(qop-value)
+ ":" H(A2)
+ ) <">
+ ============ CASE 2 ============
+ If the "qop" directive is not present (this construction is for
+ compatibility with RFC 2069):
+ request-digest =
+ <"> < KD ( H(A1), unq(nonce-value) ":" H(A2) ) >
+ <">
+ */
+
+ char *res = 0;
+
+ if(tsk_striequals(qop, "auth") || tsk_striequals(qop, "auth-int")){
+ /* CASE 1 */
+ tsk_sprintf(&res, "%s:%s:%s:%s:%s:%s", *ha1, nonce, noncecount, cnonce, qop, *ha2);
+ }
+ else{
+ /* CASE 2 */
+ tsk_sprintf(&res, "%s:%s:%s", *ha1, nonce, *ha2);
+ }
+
+ ret = tsk_md5compute(res, tsk_strlen(res), response);
+ TSK_FREE(res);
+
+ return ret;
+}
diff --git a/tinyHTTP/src/auth/thttp_challenge.c b/tinyHTTP/src/auth/thttp_challenge.c
new file mode 100644
index 0000000..bf0e184
--- /dev/null
+++ b/tinyHTTP/src/auth/thttp_challenge.c
@@ -0,0 +1,297 @@
+/*
+* Copyright (C) 2009-2010 Mamadou Diop.
+*
+* Contact: Mamadou Diop <diopmamadou(at)doubango.org>
+*
+* This file is part of Open Source Doubango Framework.
+*
+* DOUBANGO is free software: you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published by
+* the Free Software Foundation, either version 3 of the License, or
+* (at your option) any later version.
+*
+* DOUBANGO is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with DOUBANGO.
+*
+*/
+
+/**@file thttp_challenge.c
+ * @brief HTTP authentication challenge.
+ *
+ * @author Mamadou Diop <diopmamadou(at)doubango.org>
+ *
+ * @date Created: Sat Nov 8 16:54:58 2009 mdiop
+ */
+#include "tinyhttp/auth/thttp_challenge.h"
+
+#include "thttp.h"
+
+#include "tinyhttp/headers/thttp_header_Authorization.h"
+
+#include "tsk_string.h"
+#include "tsk_debug.h"
+#include "tsk_memory.h"
+#include "tsk_base64.h"
+#include "tsk_hmac.h"
+
+#include <string.h>
+
+#define THTTP_CHALLENGE_IS_DIGEST(self) ((self) ? tsk_striequals((self)->scheme, "Digest") : tsk_false)
+#define THTTP_CHALLENGE_IS_BASIC(self) ((self) ? tsk_striequals((self)->scheme, "Basic") : tsk_false)
+#define THTTP_CHALLENGE_IS_AKAv1(self) ((self) ? tsk_striequals((self)->algorithm, "AKAv1-MD5") : tsk_false)
+#define THTTP_CHALLENGE_IS_AKAv2(self) ((self) ? tsk_striequals((self)->algorithm, "AKAv2-MD5") : tsk_false)
+
+thttp_challenge_t* thttp_challenge_create(tsk_bool_t isproxy,const char* scheme, const char* realm, const char* nonce, const char* opaque, const char* algorithm, const char* qop)
+{
+ return tsk_object_new(thttp_challenge_def_t, isproxy, scheme, realm, nonce, opaque, algorithm, qop);
+}
+
+int thttp_challenge_reset_cnonce(thttp_challenge_t *self)
+{
+ if(self)
+ {
+ if(self->qop) /* client nonce is only used if qop=auth, auth-int or both */
+ {
+#if 0
+ memcpy(self->cnonce, "f221681c1e42fb5f8f9957bf7e72eb2b", 32);
+#else
+ tsk_istr_t istr;
+
+ tsk_strrandom(&istr);
+ tsk_md5compute(istr, tsk_strlen(istr), &self->cnonce);
+#endif
+ self->nc = 1;
+ }
+ }
+ return -1;
+}
+
+int thttp_challenge_get_digest_response(thttp_challenge_t *self, const char* username, const char* password, const char* method, const char* uristring, const tsk_buffer_t* entity_body, char** response)
+{
+ if(THTTP_CHALLENGE_IS_DIGEST(self)){
+ tsk_md5string_t ha1, ha2, md5_response;
+ nonce_count_t nc;
+
+ /* ===
+ Calculate HA1 = MD5(A1) = M5(username:realm:secret)
+ */
+ thttp_auth_digest_HA1(username, self->realm, password, &ha1);
+
+ /* ===
+ HA2
+ */
+ thttp_auth_digest_HA2(method,
+ uristring,
+ entity_body,
+ self->qop,
+ &ha2);
+
+ /* RESPONSE */
+ if(self->nc){
+ THTTP_NCOUNT_2_STRING(self->nc, nc);
+ }
+ thttp_auth_digest_response((const tsk_md5string_t *)&ha1,
+ self->nonce,
+ nc,
+ self->cnonce,
+ self->qop,
+ (const tsk_md5string_t *)&ha2,
+ &md5_response);
+
+ if(self->qop){
+ self->nc++;
+ }
+ if(response && !*response){
+ *response = tsk_strdup(md5_response);
+ }
+
+ return 0;
+ }
+ return -1;
+}
+
+int thttp_challenge_update(thttp_challenge_t *self, const char* scheme, const char* realm, const char* nonce, const char* opaque, const char* algorithm, const char* qop)
+{
+ if(self)
+ {
+ int noncechanged = !tsk_striequals(self->nonce, nonce);
+
+ tsk_strupdate(&self->scheme, scheme);
+ tsk_strupdate(&self->realm, realm);
+ tsk_strupdate(&self->nonce, nonce);
+ tsk_strupdate(&self->opaque, opaque);
+ tsk_strupdate(&self->algorithm, algorithm);
+ if(qop){
+ self->qop = tsk_strcontains(qop, tsk_strlen(qop), "auth-int") ? "auth-int" :
+ (tsk_strcontains(qop, tsk_strlen(qop), "auth") ? "auth" : tsk_null);
+ }
+
+ if(noncechanged && self->qop){
+ thttp_challenge_reset_cnonce(self);
+ }
+ return 0;
+ }
+ return -1;
+}
+
+thttp_header_t *thttp_challenge_create_header_authorization(thttp_challenge_t *self, const char* username, const char* password, const thttp_request_t *request)
+{
+ char* response = tsk_null;
+ tsk_size_t response_size = 0;
+ nonce_count_t nc;
+ char *uristring = tsk_null;
+ thttp_header_t *header = 0;
+
+ if(!self || !request || !request->line.request.url){
+ goto bail;
+ }
+
+ /* Sets URI: hpath do not start with / ==> append a '/'*/
+ tsk_sprintf(&uristring, "/%s", request->line.request.url->hpath ? request->line.request.url->hpath : "");
+
+ /* We compute the nc here because @ref thttp_challenge_get_response function will increment it's value. */
+ if(self->nc){
+ THTTP_NCOUNT_2_STRING(self->nc, nc);
+ }
+
+ /* Computes the response (Basic and Digest)*/
+ if(THTTP_CHALLENGE_IS_DIGEST(self)){
+ if(thttp_challenge_get_digest_response(self, username, password, request->line.request.method, uristring, request->Content, &response)){
+ goto bail;
+ }
+ response_size = (TSK_MD5_DIGEST_SIZE*2);
+ }
+ else if(THTTP_CHALLENGE_IS_BASIC(self)){
+ response_size = thttp_auth_basic_response(username, password, &response);
+ }
+ else{
+ TSK_DEBUG_ERROR("%s not supported as scheme.", self->scheme);
+ goto bail;
+ }
+
+
+#define THTTP_AUTH_COPY_VALUES(hdr) \
+ hdr->username = tsk_strdup(username); \
+ hdr->scheme = tsk_strdup(self->scheme); \
+ hdr->realm = tsk_strdup(self->realm); \
+ hdr->nonce = tsk_strdup(self->nonce); \
+ hdr->qop = tsk_strdup(self->qop); \
+ hdr->opaque = tsk_strdup(self->opaque); \
+ hdr->algorithm = self->algorithm ? tsk_strdup(self->algorithm) : tsk_strdup("MD5"); \
+ hdr->cnonce = self->nc? tsk_strdup(self->cnonce) : 0; \
+ hdr->uri = tsk_strdup(uristring); \
+ hdr->nc = self->nc? tsk_strdup(nc) : 0; \
+ hdr->response = tsk_strndup(response, response_size); \
+
+ if(self->isproxy){
+ thttp_header_Proxy_Authorization_t *proxy_auth = thttp_header_authorization_create(); // Very bad way to create Proxy_auth header.
+ THTTP_HEADER(proxy_auth)->type = thttp_htype_Proxy_Authorization;
+
+ THTTP_AUTH_COPY_VALUES(proxy_auth);
+ header = THTTP_HEADER(proxy_auth);
+ }
+ else{
+ thttp_header_Authorization_t *auth = thttp_header_authorization_create();
+ THTTP_AUTH_COPY_VALUES(auth);
+ header = THTTP_HEADER(auth);
+ }
+
+bail:
+ TSK_FREE(uristring);
+ TSK_FREE(response);
+
+ return header;
+
+#undef THTTP_AUTH_COPY_VALUES
+}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+//========================================================
+// HTTP challenge object definition
+//
+
+/**@ingroup thttp_challenge_group
+*/
+static tsk_object_t* thttp_challenge_ctor(tsk_object_t *self, va_list * app)
+{
+ thttp_challenge_t *challenge = self;
+ if(challenge){
+ const char* qop;
+
+ challenge->isproxy = va_arg(*app, tsk_bool_t);
+ challenge->scheme = tsk_strdup(va_arg(*app, const char*));
+ challenge->realm = tsk_strdup(va_arg(*app, const char*));
+ challenge->nonce = tsk_strdup(va_arg(*app, const char*));
+ challenge->opaque = tsk_strdup(va_arg(*app, const char*));
+ challenge->algorithm = tsk_strdup(va_arg(*app, const char*));
+ qop = va_arg(*app, const char*);
+ if(qop){
+ challenge->qop = tsk_strcontains(qop, tsk_strlen(qop), "auth-int") ? "auth-int" :
+ (tsk_strcontains(qop, tsk_strlen(qop), "auth") ? "auth" : tsk_null);
+ }
+
+ if(challenge->qop){
+ thttp_challenge_reset_cnonce(challenge);
+ }
+ }
+ else TSK_DEBUG_ERROR("Failed to create new http challenge object.");
+
+ return self;
+}
+
+/**@ingroup thttp_challenge_group
+*/
+static tsk_object_t* thttp_challenge_dtor(tsk_object_t *self)
+{
+ thttp_challenge_t *challenge = self;
+ if(challenge){
+ TSK_FREE(challenge->scheme);
+ TSK_FREE(challenge->realm);
+ TSK_FREE(challenge->nonce);
+ TSK_FREE(challenge->opaque);
+ TSK_FREE(challenge->algorithm);
+
+ //TSK_FREE(challenge->qop);
+ }
+ else{
+ TSK_DEBUG_ERROR("Null HTTP challenge object.");
+ }
+
+ return self;
+}
+
+static const tsk_object_def_t thttp_challenge_def_s =
+{
+ sizeof(thttp_challenge_t),
+ thttp_challenge_ctor,
+ thttp_challenge_dtor,
+ tsk_null
+};
+const tsk_object_def_t *thttp_challenge_def_t = &thttp_challenge_def_s;
diff --git a/tinyHTTP/src/headers/thttp_header.c b/tinyHTTP/src/headers/thttp_header.c
new file mode 100644
index 0000000..cfd9bd2
--- /dev/null
+++ b/tinyHTTP/src/headers/thttp_header.c
@@ -0,0 +1,152 @@
+/*
+* Copyright (C) 2009-2010 Mamadou Diop.
+*
+* Contact: Mamadou Diop <diopmamadou(at)doubango.org>
+*
+* This file is part of Open Source Doubango Framework.
+*
+* DOUBANGO is free software: you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published by
+* the Free Software Foundation, either version 3 of the License, or
+* (at your option) any later version.
+*
+* DOUBANGO is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with DOUBANGO.
+*
+*/
+
+/**@file thttp_header.c
+ * @brief Defines a HTTP header (field-name: field-value).
+ *
+ * @author Mamadou Diop <diopmamadou(at)doubango.org>
+ *
+ * @date Created: Sat Nov 8 16:54:58 2009 mdiop
+ */
+#include "tinyhttp/headers/thttp_header.h"
+
+#include "tinyhttp/headers/thttp_header_Dummy.h"
+
+/**@defgroup thttp_header_group HTTP Headers
+*/
+
+const char *thttp_header_get_name(thttp_header_type_t type)
+{
+ switch(type)
+ {
+ case thttp_htype_Authorization: return "Authorization";
+ case thttp_htype_Content_Length: return "Content-Length";
+ case thttp_htype_Content_Type: return "Content-Type";
+ case thttp_htype_ETag: return "ETag";
+ case thttp_htype_Proxy_Authenticate: return "Proxy-Authenticate";
+ case thttp_htype_Proxy_Authorization: return "Proxy-Authorization";
+ case thttp_htype_Transfer_Encoding: return "Transfer-Encoding";
+ case thttp_htype_WWW_Authenticate: return "WWW-Authenticate";
+
+ default: return "unknown-header";
+ }
+}
+
+const char *thttp_header_get_nameex(const thttp_header_t *self)
+{
+ if(self){
+ if(self->type == thttp_htype_Dummy){
+ return ((thttp_header_Dummy_t*)self)->name;
+ }
+ else{
+ return thttp_header_get_name(self->type);
+ }
+ }
+ return "unknown-header";
+}
+
+char thttp_header_get_param_separator(const thttp_header_t *self)
+{
+ if(self)
+ {
+ switch(self->type)
+ {
+ case thttp_htype_Authorization:
+ case thttp_htype_Proxy_Authorization:
+ case thttp_htype_Proxy_Authenticate:
+ case thttp_htype_WWW_Authenticate:
+ return ',';
+ default:
+ return ';';
+ }
+ }
+ return 0;
+}
+
+/**@ingroup thttp_header_group
+*/
+int thttp_header_serialize(const thttp_header_t *self, tsk_buffer_t *output)
+{
+ int ret = -1;
+ static const char* hname;
+ static char separator;
+
+ if(self && THTTP_HEADER(self)->tostring)
+ {
+ tsk_list_item_t *item;
+
+ hname = thttp_header_get_nameex(self);
+ ret = 0; // for empty lists
+
+ /* Header name */
+ tsk_buffer_append_2(output, "%s: ", hname);
+
+ /* Header value.*/
+ if((ret = THTTP_HEADER(self)->tostring(self, output))){
+ // CHECK all headers return value!
+ //return ret;
+ }
+
+ /* Parameters */
+ tsk_list_foreach(item, self->params){
+ tsk_param_t* param = item->data;
+ separator = thttp_header_get_param_separator(self);
+ if(ret = tsk_buffer_append_2(output, param->value?"%c%s=%s":"%c%s", separator, param->name, param->value)){
+ return ret;
+ }
+ }
+
+ /* CRLF */
+ tsk_buffer_append(output, "\r\n", 2);
+ }
+ return ret;
+}
+
+/**@ingroup thttp_header_group
+*/
+char* thttp_header_tostring(const thttp_header_t *self)
+{
+ tsk_buffer_t *output = tsk_buffer_create_null();
+ char* ret = tsk_null;
+
+ if(!thttp_header_serialize(self, output)){
+ ret = tsk_strndup(output->data, output->size);
+ }
+
+ TSK_OBJECT_SAFE_FREE(output);
+ return ret;
+}
+
+/**@ingroup thttp_header_group
+*/
+char* thttp_header_value_tostring(const thttp_header_t *self)
+{
+ tsk_buffer_t *output = tsk_buffer_create_null();
+ char* ret = tsk_null;
+
+ if(!self->tostring(self, output)){
+ ret = tsk_strndup(output->data, output->size);
+ }
+
+ TSK_OBJECT_SAFE_FREE(output);
+ return ret;
+}
diff --git a/tinyHTTP/src/headers/thttp_header_Authorization.c b/tinyHTTP/src/headers/thttp_header_Authorization.c
new file mode 100644
index 0000000..a5e189f
--- /dev/null
+++ b/tinyHTTP/src/headers/thttp_header_Authorization.c
@@ -0,0 +1,6979 @@
+
+/* #line 1 "./ragel/thttp_parser_header_Authorization.rl" */
+/*
+* Copyright (C) 2009-2010 Mamadou Diop.
+*
+* Contact: Mamadou Diop <diopmamadou(at)doubango.org>
+*
+* This file is part of Open Source Doubango Framework.
+*
+* DOUBANGO is free software: you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published by
+* the Free Software Foundation, either version 3 of the License, or
+* (at your option) any later version.
+*
+* DOUBANGO is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with DOUBANGO.
+*
+*/
+
+/**@file thttp_header_Authorization.c
+ * @brief HTTP Authorization header.
+ *
+ * @author Mamadou Diop <diopmamadou(at)doubango.org>
+ *
+ * @date Created: Sat Nov 8 16:54:58 2009 mdiop
+ */
+#include "tinyhttp/headers/thttp_header_Authorization.h"
+
+#include "tinyhttp/parsers/thttp_parser_url.h"
+
+#include "tsk_debug.h"
+#include "tsk_memory.h"
+#include "tsk_time.h"
+
+#include <string.h>
+
+/***********************************
+* Ragel state machine.
+*/
+
+/* #line 148 "./ragel/thttp_parser_header_Authorization.rl" */
+
+
+thttp_header_Authorization_t* thttp_header_authorization_create()
+{
+ return tsk_object_new(thttp_header_Authorization_def_t);
+}
+
+int thttp_header_Authorization_tostring(const thttp_header_t* header, tsk_buffer_t* output)
+{
+ if(header)
+ {
+ const thttp_header_Authorization_t *Authorization = (const thttp_header_Authorization_t*)header;
+ if(Authorization && Authorization->scheme)
+ {
+ if(tsk_striequals(Authorization->scheme, "Basic")){
+ return tsk_buffer_append_2(output, "%s %s",
+ Authorization->scheme, Authorization->response);
+ }
+ else{
+ return tsk_buffer_append_2(output, "%s %s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s",
+ Authorization->scheme,
+
+ Authorization->username ? "username=\"" : "",
+ Authorization->username ? Authorization->username : "",
+ Authorization->username ? "\"" : "",
+
+ Authorization->realm ? ",realm=\"" : "",
+ Authorization->realm ? Authorization->realm : "",
+ Authorization->realm ? "\"" : "",
+
+ Authorization->nonce ? ",nonce=\"" : "",
+ Authorization->nonce ? Authorization->nonce : "",
+ Authorization->nonce ? "\"" : "",
+
+ Authorization->uri ? ",uri=\"" : "",
+ Authorization->uri ? Authorization->uri : "",
+ Authorization->uri ? "\"" : "",
+
+ Authorization->response ? ",response=\"" : "",
+ Authorization->response ? Authorization->response : "",
+ Authorization->response ? "\"" : "",
+
+ Authorization->algorithm ? ",algorithm=" : "",
+ Authorization->algorithm ? Authorization->algorithm : "",
+
+ Authorization->cnonce ? ",cnonce=\"" : "",
+ Authorization->cnonce ? Authorization->cnonce : "",
+ Authorization->cnonce ? "\"" : "",
+
+ Authorization->opaque ? ",opaque=\"" : "",
+ Authorization->opaque ? Authorization->opaque : "",
+ Authorization->opaque ? "\"" : "",
+
+ Authorization->qop ? ",qop=" : "",
+ Authorization->qop ? Authorization->qop : "",
+
+ Authorization->nc ? ",nc=" : "",
+ Authorization->nc ? Authorization->nc : ""
+ );
+ }
+ }
+ }
+ return -1;
+}
+
+/**@ingroup thttp_header_group
+*/
+thttp_header_Authorization_t *thttp_header_Authorization_parse(const char *data, tsk_size_t size)
+{
+ int cs = 0;
+ const char *p = data;
+ const char *pe = p + size;
+ const char *eof = pe;
+ thttp_header_Authorization_t *hdr_Authorization = thttp_header_authorization_create();
+
+ const char *tag_start;
+
+
+/* #line 126 "./src/headers/thttp_header_Authorization.c" */
+static const char _thttp_machine_parser_header_Authorization_actions[] = {
+ 0, 1, 0, 1, 1, 1, 2, 1,
+ 3, 1, 4, 1, 5, 1, 6, 1,
+ 7, 1, 8, 1, 9, 1, 10, 1,
+ 11, 1, 12, 1, 13, 1, 14, 1,
+ 15, 1, 16, 2, 0, 8, 2, 0,
+ 9, 2, 0, 11, 2, 0, 12, 2,
+ 0, 15, 2, 5, 0, 2, 6, 0,
+ 2, 7, 0, 2, 8, 0, 2, 15,
+ 0
+};
+
+static const short _thttp_machine_parser_header_Authorization_key_offsets[] = {
+ 0, 0, 4, 6, 8, 10, 12, 14,
+ 16, 18, 20, 22, 24, 26, 28, 31,
+ 38, 39, 40, 47, 50, 53, 56, 59,
+ 62, 93, 110, 115, 146, 165, 184, 200,
+ 204, 212, 216, 221, 229, 238, 247, 256,
+ 259, 267, 277, 280, 284, 287, 291, 294,
+ 298, 302, 304, 308, 310, 314, 316, 326,
+ 336, 345, 354, 363, 372, 375, 382, 392,
+ 402, 412, 415, 419, 423, 425, 427, 446,
+ 465, 484, 503, 522, 541, 560, 577, 582,
+ 601, 617, 636, 655, 674, 693, 712, 729,
+ 734, 753, 761, 765, 770, 791, 808, 813,
+ 836, 856, 876, 896, 916, 936, 956, 976,
+ 980, 999, 1018, 1037, 1054, 1059, 1078, 1086,
+ 1090, 1095, 1114, 1133, 1152, 1171, 1190, 1207,
+ 1212, 1231, 1239, 1243, 1248, 1267, 1286, 1303,
+ 1308, 1327, 1343, 1362, 1383, 1402, 1421, 1438,
+ 1443, 1462, 1470, 1474, 1479, 1498, 1517, 1536,
+ 1555, 1574, 1591, 1596, 1615, 1623, 1627, 1632,
+ 1653, 1672, 1689, 1694, 1713, 1721, 1729, 1731,
+ 1737, 1746, 1782, 1804, 1814, 1837, 1858, 1867,
+ 1882, 1898, 1914, 1930, 1940, 1955, 1972, 1982,
+ 1993, 2003, 2014, 2024, 2035, 2046, 2055, 2066,
+ 2075, 2086, 2095, 2112, 2129, 2145, 2161, 2177,
+ 2193, 2203, 2217, 2234, 2251, 2268, 2278, 2289,
+ 2300, 2309, 2318, 2342, 2366, 2390, 2414, 2438,
+ 2462, 2486, 2510, 2532, 2542, 2565, 2586, 2610,
+ 2634, 2658, 2682, 2706, 2728, 2738, 2761, 2770,
+ 2779, 2815, 2837, 2847, 2870, 2891, 2900, 2915,
+ 2931, 2947, 2963, 2973, 2988, 3005, 3015, 3026,
+ 3036, 3047, 3057, 3068, 3079, 3088, 3099, 3108,
+ 3119, 3128, 3145, 3162, 3178, 3194, 3210, 3226,
+ 3236, 3250, 3267, 3284, 3301, 3311, 3322, 3333,
+ 3342, 3351, 3375, 3399, 3423, 3447, 3471, 3495,
+ 3519, 3543, 3565, 3575, 3598, 3619, 3643, 3667,
+ 3691, 3715, 3739, 3761, 3771, 3794, 3803, 3829,
+ 3851, 3861, 3888, 3913, 3938, 3963, 3988, 4013,
+ 4038, 4063, 4072, 4096, 4120, 4144, 4166, 4176,
+ 4199, 4208, 4217, 4253, 4275, 4285, 4308, 4329,
+ 4338, 4353, 4369, 4385, 4401, 4411, 4426, 4443,
+ 4453, 4464, 4474, 4485, 4495, 4506, 4517, 4526,
+ 4535, 4546, 4555, 4566, 4575, 4592, 4609, 4625,
+ 4641, 4657, 4673, 4683, 4697, 4714, 4731, 4748,
+ 4758, 4769, 4780, 4789, 4798, 4822, 4846, 4870,
+ 4894, 4918, 4942, 4966, 4990, 5012, 5022, 5045,
+ 5066, 5090, 5114, 5138, 5162, 5186, 5208, 5218,
+ 5241, 5250, 5276, 5298, 5308, 5335, 5360, 5385,
+ 5410, 5435, 5460, 5485, 5510, 5519, 5543, 5567,
+ 5591, 5613, 5623, 5646, 5655, 5679, 5703, 5727,
+ 5751, 5775, 5797, 5807, 5830, 5839, 5848, 5884,
+ 5906, 5916, 5939, 5960, 5969, 5984, 6000, 6016,
+ 6032, 6042, 6057, 6074, 6084, 6095, 6105, 6116,
+ 6126, 6137, 6148, 6157, 6166, 6177, 6186, 6197,
+ 6206, 6223, 6240, 6256, 6272, 6288, 6304, 6314,
+ 6328, 6345, 6362, 6379, 6389, 6400, 6411, 6420,
+ 6429, 6453, 6477, 6501, 6525, 6549, 6573, 6597,
+ 6621, 6643, 6653, 6676, 6697, 6721, 6745, 6769,
+ 6793, 6817, 6839, 6849, 6872, 6881, 6907, 6929,
+ 6939, 6966, 6991, 7016, 7041, 7066, 7091, 7116,
+ 7141, 7150, 7174, 7198, 7222, 7244, 7254, 7277,
+ 7286, 7310, 7334, 7358, 7382, 7406, 7428, 7438,
+ 7461, 7470, 7494, 7518, 7540, 7550, 7573, 7594,
+ 7618, 7644, 7668, 7692, 7714, 7724, 7747, 7756,
+ 7765, 7801, 7823, 7833, 7856, 7877, 7886, 7901,
+ 7917, 7933, 7949, 7959, 7974, 7991, 8001, 8012,
+ 8022, 8033, 8043, 8054, 8065, 8074, 8083, 8094,
+ 8103, 8114, 8123, 8140, 8157, 8173, 8189, 8205,
+ 8221, 8231, 8245, 8262, 8279, 8296, 8306, 8317,
+ 8328, 8337, 8346, 8370, 8394, 8418, 8442, 8466,
+ 8490, 8514, 8538, 8560, 8570, 8593, 8614, 8638,
+ 8662, 8686, 8710, 8734, 8756, 8766, 8789, 8798,
+ 8824, 8846, 8856, 8883, 8908, 8933, 8958, 8983,
+ 9008, 9033, 9058, 9067, 9091, 9115, 9139, 9161,
+ 9171, 9194, 9203, 9227, 9251, 9275, 9299, 9323,
+ 9345, 9355, 9378, 9387, 9411, 9435, 9457, 9467,
+ 9490, 9511, 9535, 9561, 9585, 9609, 9631, 9641,
+ 9664, 9673, 9697, 9721, 9745, 9769, 9793, 9815,
+ 9825, 9848, 9857, 9866, 9902, 9924, 9934, 9957,
+ 9978, 9987, 10002, 10018, 10034, 10050, 10060, 10075,
+ 10092, 10102, 10113, 10123, 10134, 10144, 10155, 10166,
+ 10175, 10184, 10195, 10204, 10215, 10224, 10241, 10258,
+ 10274, 10290, 10306, 10322, 10332, 10346, 10363, 10380,
+ 10397, 10407, 10418, 10429, 10438, 10447, 10471, 10495,
+ 10519, 10543, 10567, 10591, 10615, 10639, 10661, 10671,
+ 10694, 10715, 10739, 10763, 10787, 10811, 10835, 10857,
+ 10867, 10890, 10899, 10925, 10947, 10957, 10984, 11009,
+ 11034, 11059, 11084, 11109, 11134, 11159, 11168, 11192,
+ 11216, 11240, 11262, 11272, 11295, 11304, 11328, 11352,
+ 11376, 11400, 11424, 11446, 11456, 11479, 11488, 11512,
+ 11536, 11558, 11568, 11591, 11612, 11636, 11662, 11686,
+ 11710, 11732, 11742, 11765, 11774, 11798, 11822, 11846,
+ 11870, 11894, 11916, 11926, 11949, 11958, 11984, 12008,
+ 12030, 12040, 12063, 12072, 12081, 12117, 12139, 12149,
+ 12172, 12193, 12208, 12224, 12240, 12256, 12266, 12281,
+ 12298, 12308, 12319, 12329, 12340, 12350, 12361, 12372,
+ 12381, 12390, 12401, 12410, 12421, 12430, 12447, 12464,
+ 12480, 12496, 12512, 12528, 12538, 12552, 12569, 12586,
+ 12603, 12613, 12624, 12635, 12644, 12653, 12677, 12701,
+ 12725, 12749, 12773, 12797, 12821, 12845, 12867, 12877,
+ 12900, 12921, 12945, 12969, 12993, 13017, 13041, 13063,
+ 13073, 13096, 13122, 13144, 13154, 13181, 13206, 13231,
+ 13256, 13281, 13306, 13331, 13356, 13365, 13389, 13413,
+ 13437, 13459, 13469, 13492, 13516, 13540, 13564, 13588,
+ 13612, 13634, 13644, 13667, 13691, 13715, 13737, 13747,
+ 13770, 13791, 13815, 13841, 13865, 13889, 13911, 13921,
+ 13944, 13968, 13992, 14016, 14040, 14064, 14086, 14096,
+ 14119, 14145, 14169, 14191, 14201, 14224, 14248, 14272,
+ 14296, 14320, 14344, 14368, 14390, 14400, 14423, 14432,
+ 14440, 14444, 14449, 14485, 14507, 14517, 14540, 14561,
+ 14570, 14585, 14601, 14617, 14633, 14643, 14658, 14675,
+ 14685, 14696, 14706, 14717, 14727, 14738, 14749, 14758,
+ 14767, 14778, 14787, 14798, 14807, 14824, 14841, 14857,
+ 14873, 14889, 14905, 14915, 14929, 14946, 14963, 14980,
+ 14990, 15001, 15012, 15021, 15030, 15054, 15078, 15102,
+ 15126, 15150, 15174, 15198, 15222, 15244, 15254, 15277,
+ 15298, 15322, 15346, 15370, 15394, 15418, 15440, 15450,
+ 15473, 15482, 15508, 15530, 15540, 15567, 15592, 15617,
+ 15642, 15667, 15692, 15717, 15742, 15751, 15775, 15799,
+ 15823, 15845, 15855, 15878, 15887, 15911, 15935, 15959,
+ 15983, 16007, 16029, 16039, 16062, 16071, 16095, 16119,
+ 16141, 16151, 16174, 16195, 16219, 16245, 16269, 16293,
+ 16315, 16325, 16348, 16357, 16381, 16405, 16429, 16453,
+ 16477, 16499, 16509, 16532, 16541, 16567, 16591, 16613,
+ 16623, 16646, 16655, 16679, 16703, 16727, 16751, 16775,
+ 16799, 16821, 16831, 16854, 16863, 16887, 16911, 16935,
+ 16959, 16983, 17007, 17029, 17039, 17062, 17071, 17097,
+ 17121, 17143, 17153, 17176, 17185, 17209, 17233, 17257,
+ 17281, 17305, 17329, 17351, 17361, 17384, 17393, 17417,
+ 17441, 17465, 17489, 17513, 17535, 17545, 17568, 17577,
+ 17603, 17627, 17649, 17659, 17682, 17691, 17715, 17739,
+ 17763, 17787, 17811, 17835, 17857, 17867, 17890, 17899,
+ 17923, 17947, 17969, 17979, 18002, 18023, 18047, 18073,
+ 18097, 18121, 18143, 18153, 18176, 18185, 18209, 18233,
+ 18257, 18281, 18305, 18327, 18337, 18360, 18369, 18395,
+ 18419, 18441, 18451, 18474, 18483, 18507, 18531, 18555,
+ 18579, 18603, 18627, 18649, 18659, 18682, 18691, 18715,
+ 18739, 18763, 18787, 18811, 18833, 18843, 18866, 18875,
+ 18899, 18923, 18945, 18955, 18978, 18999, 19023, 19049,
+ 19073, 19097, 19119, 19129, 19152, 19161, 19185, 19209,
+ 19233, 19257, 19281, 19303, 19313, 19336, 19345, 19371,
+ 19395, 19417, 19427, 19450, 19459, 19483, 19507, 19531,
+ 19555, 19579, 19603, 19625, 19635, 19658, 19667, 19693,
+ 19715, 19725, 19752, 19777, 19802, 19827, 19852, 19877,
+ 19902, 19927, 19936, 19960, 19984, 20008, 20030, 20040,
+ 20063, 20087, 20111, 20135, 20159, 20183, 20205, 20215,
+ 20238, 20262, 20286, 20308, 20318, 20341, 20362, 20386,
+ 20412, 20436, 20460, 20482, 20492, 20515, 20539, 20563,
+ 20587, 20611, 20635, 20657, 20667, 20690, 20716, 20740,
+ 20762, 20772, 20795, 20804, 20828, 20852, 20876, 20900,
+ 20924, 20948, 20970, 20980, 21003, 21022, 21041, 21060,
+ 21079, 21098, 21117, 21134, 21139, 21158, 21179, 21198,
+ 21215, 21220, 21239, 21247, 21255, 21261, 21270, 21306,
+ 21328, 21338, 21361, 21382, 21397, 21413, 21429, 21445,
+ 21455, 21470, 21487, 21497, 21508, 21518, 21529, 21539,
+ 21550, 21561, 21570, 21579, 21590, 21599, 21610, 21619,
+ 21636, 21653, 21669, 21685, 21701, 21717, 21727, 21741,
+ 21758, 21775, 21792, 21802, 21813, 21824, 21833, 21842,
+ 21866, 21890, 21914, 21938, 21962, 21986, 22010, 22034,
+ 22056, 22066, 22089, 22110, 22134, 22158, 22182, 22206,
+ 22230, 22252, 22262, 22285, 22311, 22333, 22343, 22370,
+ 22395, 22420, 22445, 22470, 22495, 22520, 22545, 22554,
+ 22578, 22602, 22626, 22648, 22658, 22681, 22705, 22729,
+ 22753, 22777, 22801, 22823, 22833, 22856, 22880, 22904,
+ 22926, 22936, 22959, 22980, 23004, 23030, 23054, 23078,
+ 23100, 23110, 23133, 23157, 23181, 23205, 23229, 23253,
+ 23275, 23285, 23308, 23334, 23358, 23380, 23390, 23413,
+ 23422, 23446, 23470, 23494, 23518, 23542, 23566, 23588,
+ 23598, 23621, 23624, 23627, 23630, 23633, 23636, 23639,
+ 23641, 23644, 23646, 23648, 23650, 23652, 23653, 23655
+};
+
+static const char _thttp_machine_parser_header_Authorization_trans_keys[] = {
+ 65, 80, 97, 112, 85, 117, 84, 116,
+ 72, 104, 79, 111, 82, 114, 73, 105,
+ 90, 122, 65, 97, 84, 116, 73, 105,
+ 79, 111, 78, 110, 9, 32, 58, 9,
+ 13, 32, 66, 68, 98, 100, 13, 10,
+ 9, 13, 32, 66, 68, 98, 100, 13,
+ 65, 97, 13, 83, 115, 13, 73, 105,
+ 13, 67, 99, 9, 13, 32, 9, 13,
+ 32, 33, 37, 39, 65, 67, 78, 79,
+ 81, 82, 85, 97, 99, 110, 111, 113,
+ 114, 117, 126, 42, 43, 45, 46, 48,
+ 57, 66, 90, 95, 122, 9, 13, 32,
+ 33, 37, 39, 44, 61, 126, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 44, 61, 9, 13, 32, 33, 37,
+ 39, 65, 67, 78, 79, 81, 82, 85,
+ 97, 99, 110, 111, 113, 114, 117, 126,
+ 42, 43, 45, 46, 48, 57, 66, 90,
+ 95, 122, 9, 13, 32, 33, 37, 39,
+ 44, 61, 76, 108, 126, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 91, 126, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 37, 39, 44, 126,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 44, 13, 34, 92, 127,
+ 0, 8, 10, 31, 9, 13, 32, 44,
+ 13, 0, 9, 11, 127, 13, 58, 48,
+ 57, 65, 70, 97, 102, 13, 58, 93,
+ 48, 57, 65, 70, 97, 102, 13, 58,
+ 93, 48, 57, 65, 70, 97, 102, 13,
+ 58, 93, 48, 57, 65, 70, 97, 102,
+ 13, 58, 93, 13, 58, 48, 57, 65,
+ 70, 97, 102, 13, 46, 58, 93, 48,
+ 57, 65, 70, 97, 102, 13, 48, 57,
+ 13, 46, 48, 57, 13, 48, 57, 13,
+ 46, 48, 57, 13, 48, 57, 13, 93,
+ 48, 57, 13, 93, 48, 57, 13, 93,
+ 13, 46, 48, 57, 13, 46, 13, 46,
+ 48, 57, 13, 46, 13, 46, 58, 93,
+ 48, 57, 65, 70, 97, 102, 13, 46,
+ 58, 93, 48, 57, 65, 70, 97, 102,
+ 13, 58, 93, 48, 57, 65, 70, 97,
+ 102, 13, 58, 93, 48, 57, 65, 70,
+ 97, 102, 13, 58, 93, 48, 57, 65,
+ 70, 97, 102, 13, 58, 93, 48, 57,
+ 65, 70, 97, 102, 13, 58, 93, 13,
+ 48, 57, 65, 70, 97, 102, 13, 46,
+ 58, 93, 48, 57, 65, 70, 97, 102,
+ 13, 46, 58, 93, 48, 57, 65, 70,
+ 97, 102, 13, 46, 58, 93, 48, 57,
+ 65, 70, 97, 102, 13, 48, 57, 13,
+ 46, 48, 57, 13, 46, 48, 57, 13,
+ 46, 13, 58, 9, 13, 32, 33, 37,
+ 39, 44, 61, 71, 103, 126, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 37, 39, 44, 61, 79, 111,
+ 126, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 37, 39, 44,
+ 61, 82, 114, 126, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 37, 39, 44, 61, 73, 105, 126, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 37, 39, 44, 61, 84,
+ 116, 126, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 37, 39,
+ 44, 61, 72, 104, 126, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 37, 39, 44, 61, 77, 109, 126,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 37, 39, 44, 61,
+ 126, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 44, 61, 9, 13,
+ 32, 33, 34, 37, 39, 91, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 37, 39, 44,
+ 126, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 37, 39, 44,
+ 61, 78, 110, 126, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 37, 39, 44, 61, 79, 111, 126, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 37, 39, 44, 61, 78,
+ 110, 126, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 37, 39,
+ 44, 61, 67, 99, 126, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 37, 39, 44, 61, 69, 101, 126,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 37, 39, 44, 61,
+ 126, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 44, 61, 9, 13,
+ 32, 33, 34, 37, 39, 91, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 13, 34, 92, 127, 0, 8, 10,
+ 31, 9, 13, 32, 44, 13, 0, 9,
+ 11, 127, 9, 13, 32, 33, 37, 39,
+ 44, 61, 67, 79, 99, 111, 126, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 37, 39, 44, 61, 126,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 44, 61, 9, 13, 32,
+ 33, 34, 37, 39, 91, 126, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 96,
+ 97, 102, 103, 122, 9, 13, 32, 33,
+ 37, 39, 44, 126, 42, 46, 48, 57,
+ 65, 90, 95, 96, 97, 102, 103, 122,
+ 9, 13, 32, 33, 37, 39, 44, 126,
+ 42, 46, 48, 57, 65, 90, 95, 96,
+ 97, 102, 103, 122, 9, 13, 32, 33,
+ 37, 39, 44, 126, 42, 46, 48, 57,
+ 65, 90, 95, 96, 97, 102, 103, 122,
+ 9, 13, 32, 33, 37, 39, 44, 126,
+ 42, 46, 48, 57, 65, 90, 95, 96,
+ 97, 102, 103, 122, 9, 13, 32, 33,
+ 37, 39, 44, 126, 42, 46, 48, 57,
+ 65, 90, 95, 96, 97, 102, 103, 122,
+ 9, 13, 32, 33, 37, 39, 44, 126,
+ 42, 46, 48, 57, 65, 90, 95, 96,
+ 97, 102, 103, 122, 9, 13, 32, 33,
+ 37, 39, 44, 126, 42, 46, 48, 57,
+ 65, 90, 95, 96, 97, 102, 103, 122,
+ 9, 13, 32, 44, 9, 13, 32, 33,
+ 37, 39, 44, 61, 78, 110, 126, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 37, 39, 44, 61, 67,
+ 99, 126, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 37, 39,
+ 44, 61, 69, 101, 126, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 37, 39, 44, 61, 126, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 44, 61, 9, 13, 32, 33, 34,
+ 37, 39, 91, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 13, 34,
+ 92, 127, 0, 8, 10, 31, 9, 13,
+ 32, 44, 13, 0, 9, 11, 127, 9,
+ 13, 32, 33, 37, 39, 44, 61, 80,
+ 112, 126, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 37, 39,
+ 44, 61, 65, 97, 126, 42, 46, 48,
+ 57, 66, 90, 95, 122, 9, 13, 32,
+ 33, 37, 39, 44, 61, 81, 113, 126,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 37, 39, 44, 61,
+ 85, 117, 126, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 37,
+ 39, 44, 61, 69, 101, 126, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 37, 39, 44, 61, 126, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 44, 61, 9, 13, 32, 33,
+ 34, 37, 39, 91, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 13,
+ 34, 92, 127, 0, 8, 10, 31, 9,
+ 13, 32, 44, 13, 0, 9, 11, 127,
+ 9, 13, 32, 33, 37, 39, 44, 61,
+ 79, 111, 126, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 37,
+ 39, 44, 61, 80, 112, 126, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 37, 39, 44, 61, 126, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 44, 61, 9, 13, 32, 33,
+ 34, 37, 39, 91, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 37, 39, 44, 126, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 37, 39, 44, 61, 69,
+ 101, 126, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 37, 39,
+ 44, 61, 65, 83, 97, 115, 126, 42,
+ 46, 48, 57, 66, 90, 95, 122, 9,
+ 13, 32, 33, 37, 39, 44, 61, 76,
+ 108, 126, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 37, 39,
+ 44, 61, 77, 109, 126, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 37, 39, 44, 61, 126, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 44, 61, 9, 13, 32, 33, 34,
+ 37, 39, 91, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 13, 34,
+ 92, 127, 0, 8, 10, 31, 9, 13,
+ 32, 44, 13, 0, 9, 11, 127, 9,
+ 13, 32, 33, 37, 39, 44, 61, 80,
+ 112, 126, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 37, 39,
+ 44, 61, 79, 111, 126, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 37, 39, 44, 61, 78, 110, 126,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 37, 39, 44, 61,
+ 83, 115, 126, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 37,
+ 39, 44, 61, 69, 101, 126, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 37, 39, 44, 61, 126, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 44, 61, 9, 13, 32, 33,
+ 34, 37, 39, 91, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 13,
+ 34, 92, 127, 0, 8, 10, 31, 9,
+ 13, 32, 44, 13, 0, 9, 11, 127,
+ 9, 13, 32, 33, 37, 39, 44, 61,
+ 82, 83, 114, 115, 126, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 37, 39, 44, 61, 73, 105, 126,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 37, 39, 44, 61,
+ 126, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 44, 61, 9, 13,
+ 32, 33, 34, 37, 39, 91, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 13, 34, 92, 127, 0, 8, 10,
+ 31, 13, 34, 92, 127, 0, 8, 10,
+ 31, 13, 34, 13, 34, 0, 9, 11,
+ 127, 9, 13, 32, 34, 44, 92, 127,
+ 0, 31, 9, 13, 32, 33, 34, 37,
+ 39, 65, 67, 78, 79, 81, 82, 85,
+ 92, 97, 99, 110, 111, 113, 114, 117,
+ 126, 127, 0, 31, 42, 43, 45, 46,
+ 48, 57, 66, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 92,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 34,
+ 44, 61, 92, 127, 0, 31, 9, 13,
+ 32, 33, 34, 37, 39, 91, 92, 126,
+ 127, 0, 31, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 92,
+ 127, 0, 31, 13, 34, 58, 92, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 13, 34, 58, 92,
+ 127, 0, 8, 10, 31, 48, 57, 65,
+ 70, 97, 102, 13, 34, 46, 58, 92,
+ 93, 127, 0, 8, 10, 31, 48, 57,
+ 65, 70, 97, 102, 13, 34, 92, 127,
+ 0, 8, 10, 31, 48, 57, 13, 34,
+ 46, 92, 127, 0, 8, 10, 31, 48,
+ 57, 13, 34, 92, 127, 0, 8, 10,
+ 31, 48, 57, 13, 34, 46, 92, 127,
+ 0, 8, 10, 31, 48, 57, 13, 34,
+ 92, 127, 0, 8, 10, 31, 48, 57,
+ 13, 34, 92, 93, 127, 0, 8, 10,
+ 31, 48, 57, 13, 34, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 13, 34,
+ 92, 93, 127, 0, 8, 10, 31, 13,
+ 34, 46, 92, 127, 0, 8, 10, 31,
+ 48, 57, 13, 34, 46, 92, 127, 0,
+ 8, 10, 31, 13, 34, 46, 92, 127,
+ 0, 8, 10, 31, 48, 57, 13, 34,
+ 46, 92, 127, 0, 8, 10, 31, 13,
+ 34, 46, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 46, 58, 92, 93, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 58, 92, 93, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 58, 92, 93, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 58, 92, 93, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 58, 92, 93, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 58, 92, 93, 127, 0,
+ 8, 10, 31, 13, 34, 92, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 46, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 46, 58, 92, 93,
+ 127, 0, 8, 10, 31, 48, 57, 65,
+ 70, 97, 102, 13, 34, 46, 58, 92,
+ 93, 127, 0, 8, 10, 31, 48, 57,
+ 65, 70, 97, 102, 13, 34, 92, 127,
+ 0, 8, 10, 31, 48, 57, 13, 34,
+ 46, 92, 127, 0, 8, 10, 31, 48,
+ 57, 13, 34, 46, 92, 127, 0, 8,
+ 10, 31, 48, 57, 13, 34, 46, 92,
+ 127, 0, 8, 10, 31, 13, 34, 58,
+ 92, 127, 0, 8, 10, 31, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 76,
+ 92, 108, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 71,
+ 92, 103, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 79,
+ 92, 111, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 82,
+ 92, 114, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 73,
+ 92, 105, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 84,
+ 92, 116, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 72,
+ 92, 104, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 77,
+ 92, 109, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 92,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 34,
+ 44, 61, 92, 127, 0, 31, 9, 13,
+ 32, 33, 34, 37, 39, 91, 92, 126,
+ 127, 0, 31, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 78, 92, 110, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 79, 92, 111, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 78, 92, 110, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 67, 92, 99, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 69, 92, 101, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 92, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 34, 44, 61, 92, 127,
+ 0, 31, 9, 13, 32, 33, 34, 37,
+ 39, 91, 92, 126, 127, 0, 31, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 34, 44, 92, 127,
+ 0, 31, 9, 13, 32, 34, 44, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 65, 67, 78, 79, 81, 82,
+ 85, 92, 97, 99, 110, 111, 113, 114,
+ 117, 126, 127, 0, 31, 42, 43, 45,
+ 46, 48, 57, 66, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 92, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 34, 44, 61, 92, 127, 0, 31, 9,
+ 13, 32, 33, 34, 37, 39, 91, 92,
+ 126, 127, 0, 31, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 92, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 34, 44,
+ 92, 127, 0, 31, 13, 34, 58, 92,
+ 127, 0, 8, 10, 31, 48, 57, 65,
+ 70, 97, 102, 13, 34, 58, 92, 93,
+ 127, 0, 8, 10, 31, 48, 57, 65,
+ 70, 97, 102, 13, 34, 58, 92, 93,
+ 127, 0, 8, 10, 31, 48, 57, 65,
+ 70, 97, 102, 13, 34, 58, 92, 93,
+ 127, 0, 8, 10, 31, 48, 57, 65,
+ 70, 97, 102, 13, 34, 58, 92, 93,
+ 127, 0, 8, 10, 31, 13, 34, 58,
+ 92, 127, 0, 8, 10, 31, 48, 57,
+ 65, 70, 97, 102, 13, 34, 46, 58,
+ 92, 93, 127, 0, 8, 10, 31, 48,
+ 57, 65, 70, 97, 102, 13, 34, 92,
+ 127, 0, 8, 10, 31, 48, 57, 13,
+ 34, 46, 92, 127, 0, 8, 10, 31,
+ 48, 57, 13, 34, 92, 127, 0, 8,
+ 10, 31, 48, 57, 13, 34, 46, 92,
+ 127, 0, 8, 10, 31, 48, 57, 13,
+ 34, 92, 127, 0, 8, 10, 31, 48,
+ 57, 13, 34, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 13, 34, 92, 93,
+ 127, 0, 8, 10, 31, 48, 57, 13,
+ 34, 92, 93, 127, 0, 8, 10, 31,
+ 13, 34, 46, 92, 127, 0, 8, 10,
+ 31, 48, 57, 13, 34, 46, 92, 127,
+ 0, 8, 10, 31, 13, 34, 46, 92,
+ 127, 0, 8, 10, 31, 48, 57, 13,
+ 34, 46, 92, 127, 0, 8, 10, 31,
+ 13, 34, 46, 58, 92, 93, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 46, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 13, 34, 92, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 46, 58, 92, 93,
+ 127, 0, 8, 10, 31, 48, 57, 65,
+ 70, 97, 102, 13, 34, 46, 58, 92,
+ 93, 127, 0, 8, 10, 31, 48, 57,
+ 65, 70, 97, 102, 13, 34, 46, 58,
+ 92, 93, 127, 0, 8, 10, 31, 48,
+ 57, 65, 70, 97, 102, 13, 34, 92,
+ 127, 0, 8, 10, 31, 48, 57, 13,
+ 34, 46, 92, 127, 0, 8, 10, 31,
+ 48, 57, 13, 34, 46, 92, 127, 0,
+ 8, 10, 31, 48, 57, 13, 34, 46,
+ 92, 127, 0, 8, 10, 31, 13, 34,
+ 58, 92, 127, 0, 8, 10, 31, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 76, 92, 108, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 71, 92, 103, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 79, 92, 111, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 82, 92, 114, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 73, 92, 105, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 84, 92, 116, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 72, 92, 104, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 77, 92, 109, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 92, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 34, 44, 61, 92, 127, 0, 31, 9,
+ 13, 32, 33, 34, 37, 39, 91, 92,
+ 126, 127, 0, 31, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 92, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 78, 92, 110, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 79, 92, 111, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 78, 92, 110, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 67, 92, 99, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 69, 92, 101, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 92, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 34, 44, 61, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 91, 92, 126, 127, 0, 31,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 67, 79, 92, 99,
+ 111, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 92, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 34, 44,
+ 61, 92, 127, 0, 31, 9, 13, 32,
+ 33, 34, 37, 39, 91, 92, 126, 127,
+ 0, 31, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 96, 97, 102, 103, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 92, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 96, 97, 102, 103,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 92, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 96, 97, 102,
+ 103, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 92, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 96, 97,
+ 102, 103, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 92, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 96,
+ 97, 102, 103, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 92, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 96, 97, 102, 103, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 96, 97, 102, 103, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 92, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 96, 97, 102, 103, 122, 9,
+ 13, 32, 34, 44, 92, 127, 0, 31,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 78, 92, 110, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 67, 92, 99, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 69, 92, 101, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 92, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 34, 44, 61, 92, 127, 0, 31,
+ 9, 13, 32, 33, 34, 37, 39, 91,
+ 92, 126, 127, 0, 31, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 34, 44, 92, 127, 0, 31,
+ 9, 13, 32, 34, 44, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 65, 67, 78, 79, 81, 82, 85, 92,
+ 97, 99, 110, 111, 113, 114, 117, 126,
+ 127, 0, 31, 42, 43, 45, 46, 48,
+ 57, 66, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 92, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 34, 44,
+ 61, 92, 127, 0, 31, 9, 13, 32,
+ 33, 34, 37, 39, 91, 92, 126, 127,
+ 0, 31, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 92, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 34, 44, 92, 127,
+ 0, 31, 13, 34, 58, 92, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 58, 92, 93, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 58, 92, 93, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 58, 92, 93, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 58, 92, 93, 127, 0,
+ 8, 10, 31, 13, 34, 58, 92, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 46, 58, 92, 93,
+ 127, 0, 8, 10, 31, 48, 57, 65,
+ 70, 97, 102, 13, 34, 92, 127, 0,
+ 8, 10, 31, 48, 57, 13, 34, 46,
+ 92, 127, 0, 8, 10, 31, 48, 57,
+ 13, 34, 92, 127, 0, 8, 10, 31,
+ 48, 57, 13, 34, 46, 92, 127, 0,
+ 8, 10, 31, 48, 57, 13, 34, 92,
+ 127, 0, 8, 10, 31, 48, 57, 13,
+ 34, 92, 93, 127, 0, 8, 10, 31,
+ 48, 57, 13, 34, 92, 93, 127, 0,
+ 8, 10, 31, 48, 57, 13, 34, 92,
+ 93, 127, 0, 8, 10, 31, 9, 13,
+ 32, 34, 44, 92, 127, 0, 31, 13,
+ 34, 46, 92, 127, 0, 8, 10, 31,
+ 48, 57, 13, 34, 46, 92, 127, 0,
+ 8, 10, 31, 13, 34, 46, 92, 127,
+ 0, 8, 10, 31, 48, 57, 13, 34,
+ 46, 92, 127, 0, 8, 10, 31, 13,
+ 34, 46, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 46, 58, 92, 93, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 58, 92, 93, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 58, 92, 93, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 58, 92, 93, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 58, 92, 93, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 58, 92, 93, 127, 0,
+ 8, 10, 31, 13, 34, 92, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 46, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 46, 58, 92, 93,
+ 127, 0, 8, 10, 31, 48, 57, 65,
+ 70, 97, 102, 13, 34, 46, 58, 92,
+ 93, 127, 0, 8, 10, 31, 48, 57,
+ 65, 70, 97, 102, 13, 34, 92, 127,
+ 0, 8, 10, 31, 48, 57, 13, 34,
+ 46, 92, 127, 0, 8, 10, 31, 48,
+ 57, 13, 34, 46, 92, 127, 0, 8,
+ 10, 31, 48, 57, 13, 34, 46, 92,
+ 127, 0, 8, 10, 31, 13, 34, 58,
+ 92, 127, 0, 8, 10, 31, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 76,
+ 92, 108, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 71,
+ 92, 103, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 79,
+ 92, 111, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 82,
+ 92, 114, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 73,
+ 92, 105, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 84,
+ 92, 116, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 72,
+ 92, 104, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 77,
+ 92, 109, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 92,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 34,
+ 44, 61, 92, 127, 0, 31, 9, 13,
+ 32, 33, 34, 37, 39, 91, 92, 126,
+ 127, 0, 31, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 78, 92, 110, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 79, 92, 111, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 78, 92, 110, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 67, 92, 99, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 69, 92, 101, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 92, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 34, 44, 61, 92, 127,
+ 0, 31, 9, 13, 32, 33, 34, 37,
+ 39, 91, 92, 126, 127, 0, 31, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 34, 44, 92, 127,
+ 0, 31, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 67, 79, 92, 99, 111,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 61,
+ 92, 127, 0, 31, 9, 13, 32, 33,
+ 34, 37, 39, 91, 92, 126, 127, 0,
+ 31, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 96, 97, 102, 103, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 92,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 96, 97, 102, 103, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 92, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 96, 97, 102, 103,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 92, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 96, 97, 102,
+ 103, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 92, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 96, 97,
+ 102, 103, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 92, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 96,
+ 97, 102, 103, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 92, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 96, 97, 102, 103, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 96, 97, 102, 103, 122, 9, 13,
+ 32, 34, 44, 92, 127, 0, 31, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 78, 92, 110, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 67, 92, 99, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 69, 92, 101, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 92, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 34, 44, 61, 92, 127, 0, 31, 9,
+ 13, 32, 33, 34, 37, 39, 91, 92,
+ 126, 127, 0, 31, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 34, 44, 92, 127, 0, 31, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 80, 92, 112, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 65, 92, 97, 126, 127, 0, 31, 42,
+ 46, 48, 57, 66, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 81, 92, 113, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 85, 92, 117, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 69, 92, 101, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 92, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 34, 44, 61, 92, 127, 0, 31, 9,
+ 13, 32, 33, 34, 37, 39, 91, 92,
+ 126, 127, 0, 31, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 34, 44, 92, 127, 0, 31, 9,
+ 13, 32, 34, 44, 92, 127, 0, 31,
+ 9, 13, 32, 33, 34, 37, 39, 65,
+ 67, 78, 79, 81, 82, 85, 92, 97,
+ 99, 110, 111, 113, 114, 117, 126, 127,
+ 0, 31, 42, 43, 45, 46, 48, 57,
+ 66, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 61,
+ 92, 127, 0, 31, 9, 13, 32, 33,
+ 34, 37, 39, 91, 92, 126, 127, 0,
+ 31, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 92, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 34, 44, 92, 127, 0,
+ 31, 13, 34, 58, 92, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 92, 93, 127, 0, 8,
+ 10, 31, 13, 34, 58, 92, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 46, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 92, 127, 0, 8,
+ 10, 31, 48, 57, 13, 34, 46, 92,
+ 127, 0, 8, 10, 31, 48, 57, 13,
+ 34, 92, 127, 0, 8, 10, 31, 48,
+ 57, 13, 34, 46, 92, 127, 0, 8,
+ 10, 31, 48, 57, 13, 34, 92, 127,
+ 0, 8, 10, 31, 48, 57, 13, 34,
+ 92, 93, 127, 0, 8, 10, 31, 48,
+ 57, 13, 34, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 13, 34, 92, 93,
+ 127, 0, 8, 10, 31, 9, 13, 32,
+ 34, 44, 92, 127, 0, 31, 13, 34,
+ 46, 92, 127, 0, 8, 10, 31, 48,
+ 57, 13, 34, 46, 92, 127, 0, 8,
+ 10, 31, 13, 34, 46, 92, 127, 0,
+ 8, 10, 31, 48, 57, 13, 34, 46,
+ 92, 127, 0, 8, 10, 31, 13, 34,
+ 46, 58, 92, 93, 127, 0, 8, 10,
+ 31, 48, 57, 65, 70, 97, 102, 13,
+ 34, 46, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 92, 93, 127, 0, 8,
+ 10, 31, 13, 34, 92, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 46, 58, 92, 93, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 46, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 46, 58, 92, 93,
+ 127, 0, 8, 10, 31, 48, 57, 65,
+ 70, 97, 102, 13, 34, 92, 127, 0,
+ 8, 10, 31, 48, 57, 13, 34, 46,
+ 92, 127, 0, 8, 10, 31, 48, 57,
+ 13, 34, 46, 92, 127, 0, 8, 10,
+ 31, 48, 57, 13, 34, 46, 92, 127,
+ 0, 8, 10, 31, 13, 34, 58, 92,
+ 127, 0, 8, 10, 31, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 76, 92,
+ 108, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 71, 92,
+ 103, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 79, 92,
+ 111, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 82, 92,
+ 114, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 73, 92,
+ 105, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 84, 92,
+ 116, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 72, 92,
+ 104, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 77, 92,
+ 109, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 92, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 34, 44,
+ 61, 92, 127, 0, 31, 9, 13, 32,
+ 33, 34, 37, 39, 91, 92, 126, 127,
+ 0, 31, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 92, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 78, 92, 110, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 79, 92, 111, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 78, 92, 110, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 67, 92, 99, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 69, 92, 101, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 92, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 34, 44, 61, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 91, 92, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 34, 44, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 67, 79, 92, 99, 111, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 92, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 34, 44, 61, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 91, 92, 126, 127, 0, 31,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 96, 97, 102, 103, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 92, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 96, 97, 102, 103, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 92,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 96, 97, 102, 103, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 92, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 96, 97, 102, 103,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 92, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 96, 97, 102,
+ 103, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 92, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 96, 97,
+ 102, 103, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 92, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 96,
+ 97, 102, 103, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 92, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 96, 97, 102, 103, 122, 9, 13, 32,
+ 34, 44, 92, 127, 0, 31, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 78,
+ 92, 110, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 67,
+ 92, 99, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 69,
+ 92, 101, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 92,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 34,
+ 44, 61, 92, 127, 0, 31, 9, 13,
+ 32, 33, 34, 37, 39, 91, 92, 126,
+ 127, 0, 31, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 34, 44, 92, 127, 0, 31, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 80,
+ 92, 112, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 65,
+ 92, 97, 126, 127, 0, 31, 42, 46,
+ 48, 57, 66, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 81,
+ 92, 113, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 85,
+ 92, 117, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 69,
+ 92, 101, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 92,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 34,
+ 44, 61, 92, 127, 0, 31, 9, 13,
+ 32, 33, 34, 37, 39, 91, 92, 126,
+ 127, 0, 31, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 34, 44, 92, 127, 0, 31, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 79,
+ 92, 111, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 80,
+ 92, 112, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 92,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 34,
+ 44, 61, 92, 127, 0, 31, 9, 13,
+ 32, 33, 34, 37, 39, 91, 92, 126,
+ 127, 0, 31, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 69, 92, 101, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 65, 83, 92, 97, 115,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 66, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 76, 92, 108,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 77, 92, 109,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 61,
+ 92, 127, 0, 31, 9, 13, 32, 33,
+ 34, 37, 39, 91, 92, 126, 127, 0,
+ 31, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 34, 44,
+ 92, 127, 0, 31, 9, 13, 32, 34,
+ 44, 92, 127, 0, 31, 9, 13, 32,
+ 33, 34, 37, 39, 65, 67, 78, 79,
+ 81, 82, 85, 92, 97, 99, 110, 111,
+ 113, 114, 117, 126, 127, 0, 31, 42,
+ 43, 45, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 92, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 34, 44, 61, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 91, 92, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 92, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 34, 44, 92, 127, 0, 31, 13, 34,
+ 58, 92, 127, 0, 8, 10, 31, 48,
+ 57, 65, 70, 97, 102, 13, 34, 58,
+ 92, 93, 127, 0, 8, 10, 31, 48,
+ 57, 65, 70, 97, 102, 13, 34, 58,
+ 92, 93, 127, 0, 8, 10, 31, 48,
+ 57, 65, 70, 97, 102, 13, 34, 58,
+ 92, 93, 127, 0, 8, 10, 31, 48,
+ 57, 65, 70, 97, 102, 13, 34, 58,
+ 92, 93, 127, 0, 8, 10, 31, 13,
+ 34, 58, 92, 127, 0, 8, 10, 31,
+ 48, 57, 65, 70, 97, 102, 13, 34,
+ 46, 58, 92, 93, 127, 0, 8, 10,
+ 31, 48, 57, 65, 70, 97, 102, 13,
+ 34, 92, 127, 0, 8, 10, 31, 48,
+ 57, 13, 34, 46, 92, 127, 0, 8,
+ 10, 31, 48, 57, 13, 34, 92, 127,
+ 0, 8, 10, 31, 48, 57, 13, 34,
+ 46, 92, 127, 0, 8, 10, 31, 48,
+ 57, 13, 34, 92, 127, 0, 8, 10,
+ 31, 48, 57, 13, 34, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 13, 34,
+ 92, 93, 127, 0, 8, 10, 31, 48,
+ 57, 13, 34, 92, 93, 127, 0, 8,
+ 10, 31, 9, 13, 32, 34, 44, 92,
+ 127, 0, 31, 13, 34, 46, 92, 127,
+ 0, 8, 10, 31, 48, 57, 13, 34,
+ 46, 92, 127, 0, 8, 10, 31, 13,
+ 34, 46, 92, 127, 0, 8, 10, 31,
+ 48, 57, 13, 34, 46, 92, 127, 0,
+ 8, 10, 31, 13, 34, 46, 58, 92,
+ 93, 127, 0, 8, 10, 31, 48, 57,
+ 65, 70, 97, 102, 13, 34, 46, 58,
+ 92, 93, 127, 0, 8, 10, 31, 48,
+ 57, 65, 70, 97, 102, 13, 34, 58,
+ 92, 93, 127, 0, 8, 10, 31, 48,
+ 57, 65, 70, 97, 102, 13, 34, 58,
+ 92, 93, 127, 0, 8, 10, 31, 48,
+ 57, 65, 70, 97, 102, 13, 34, 58,
+ 92, 93, 127, 0, 8, 10, 31, 48,
+ 57, 65, 70, 97, 102, 13, 34, 58,
+ 92, 93, 127, 0, 8, 10, 31, 48,
+ 57, 65, 70, 97, 102, 13, 34, 58,
+ 92, 93, 127, 0, 8, 10, 31, 13,
+ 34, 92, 127, 0, 8, 10, 31, 48,
+ 57, 65, 70, 97, 102, 13, 34, 46,
+ 58, 92, 93, 127, 0, 8, 10, 31,
+ 48, 57, 65, 70, 97, 102, 13, 34,
+ 46, 58, 92, 93, 127, 0, 8, 10,
+ 31, 48, 57, 65, 70, 97, 102, 13,
+ 34, 46, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 92, 127, 0, 8, 10, 31,
+ 48, 57, 13, 34, 46, 92, 127, 0,
+ 8, 10, 31, 48, 57, 13, 34, 46,
+ 92, 127, 0, 8, 10, 31, 48, 57,
+ 13, 34, 46, 92, 127, 0, 8, 10,
+ 31, 13, 34, 58, 92, 127, 0, 8,
+ 10, 31, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 76, 92, 108, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 71, 92, 103, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 79, 92, 111, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 82, 92, 114, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 73, 92, 105, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 84, 92, 116, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 72, 92, 104, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 77, 92, 109, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 92, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 34, 44, 61, 92, 127,
+ 0, 31, 9, 13, 32, 33, 34, 37,
+ 39, 91, 92, 126, 127, 0, 31, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 92, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 78,
+ 92, 110, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 79,
+ 92, 111, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 78,
+ 92, 110, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 67,
+ 92, 99, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 69,
+ 92, 101, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 92,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 34,
+ 44, 61, 92, 127, 0, 31, 9, 13,
+ 32, 33, 34, 37, 39, 91, 92, 126,
+ 127, 0, 31, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 34, 44, 92, 127, 0, 31, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 67,
+ 79, 92, 99, 111, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 92, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 34, 44, 61, 92, 127, 0, 31,
+ 9, 13, 32, 33, 34, 37, 39, 91,
+ 92, 126, 127, 0, 31, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 96, 97,
+ 102, 103, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 92, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 96,
+ 97, 102, 103, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 92, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 96, 97, 102, 103, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 96, 97, 102, 103, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 92, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 96, 97, 102, 103, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 92,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 96, 97, 102, 103, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 92, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 96, 97, 102, 103,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 92, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 96, 97, 102,
+ 103, 122, 9, 13, 32, 34, 44, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 78, 92, 110, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 67, 92, 99, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 69, 92, 101, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 92, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 34, 44, 61, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 91, 92, 126, 127, 0, 31,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 80, 92, 112, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 65, 92, 97, 126,
+ 127, 0, 31, 42, 46, 48, 57, 66,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 81, 92, 113, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 85, 92, 117, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 69, 92, 101, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 92, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 34, 44, 61, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 91, 92, 126, 127, 0, 31,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 79, 92, 111, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 80, 92, 112, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 92, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 34, 44, 61, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 91, 92, 126, 127, 0, 31,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 92, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 69, 92, 101, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 65, 83, 92, 97, 115, 126, 127, 0,
+ 31, 42, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 76, 92, 108, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 77, 92, 109, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 92, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 34, 44, 61, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 91, 92, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 34, 44, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 80, 92, 112, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 79, 92, 111, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 78, 92, 110, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 83, 92, 115, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 69, 92, 101, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 92, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 34, 44, 61, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 91, 92, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 34, 44, 92, 127, 0,
+ 31, 9, 13, 32, 34, 44, 92, 127,
+ 0, 31, 9, 13, 32, 33, 34, 37,
+ 39, 65, 67, 78, 79, 81, 82, 85,
+ 92, 97, 99, 110, 111, 113, 114, 117,
+ 126, 127, 0, 31, 42, 43, 45, 46,
+ 48, 57, 66, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 92,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 34,
+ 44, 61, 92, 127, 0, 31, 9, 13,
+ 32, 33, 34, 37, 39, 91, 92, 126,
+ 127, 0, 31, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 92,
+ 127, 0, 31, 13, 34, 58, 92, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 13, 34, 58, 92,
+ 127, 0, 8, 10, 31, 48, 57, 65,
+ 70, 97, 102, 13, 34, 46, 58, 92,
+ 93, 127, 0, 8, 10, 31, 48, 57,
+ 65, 70, 97, 102, 13, 34, 92, 127,
+ 0, 8, 10, 31, 48, 57, 13, 34,
+ 46, 92, 127, 0, 8, 10, 31, 48,
+ 57, 13, 34, 92, 127, 0, 8, 10,
+ 31, 48, 57, 13, 34, 46, 92, 127,
+ 0, 8, 10, 31, 48, 57, 13, 34,
+ 92, 127, 0, 8, 10, 31, 48, 57,
+ 13, 34, 92, 93, 127, 0, 8, 10,
+ 31, 48, 57, 13, 34, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 13, 34,
+ 92, 93, 127, 0, 8, 10, 31, 9,
+ 13, 32, 34, 44, 92, 127, 0, 31,
+ 13, 34, 46, 92, 127, 0, 8, 10,
+ 31, 48, 57, 13, 34, 46, 92, 127,
+ 0, 8, 10, 31, 13, 34, 46, 92,
+ 127, 0, 8, 10, 31, 48, 57, 13,
+ 34, 46, 92, 127, 0, 8, 10, 31,
+ 13, 34, 46, 58, 92, 93, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 46, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 13, 34, 92, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 46, 58, 92, 93,
+ 127, 0, 8, 10, 31, 48, 57, 65,
+ 70, 97, 102, 13, 34, 46, 58, 92,
+ 93, 127, 0, 8, 10, 31, 48, 57,
+ 65, 70, 97, 102, 13, 34, 46, 58,
+ 92, 93, 127, 0, 8, 10, 31, 48,
+ 57, 65, 70, 97, 102, 13, 34, 92,
+ 127, 0, 8, 10, 31, 48, 57, 13,
+ 34, 46, 92, 127, 0, 8, 10, 31,
+ 48, 57, 13, 34, 46, 92, 127, 0,
+ 8, 10, 31, 48, 57, 13, 34, 46,
+ 92, 127, 0, 8, 10, 31, 13, 34,
+ 58, 92, 127, 0, 8, 10, 31, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 76, 92, 108, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 71, 92, 103, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 79, 92, 111, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 82, 92, 114, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 73, 92, 105, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 84, 92, 116, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 72, 92, 104, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 77, 92, 109, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 92, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 34, 44, 61, 92, 127, 0, 31, 9,
+ 13, 32, 33, 34, 37, 39, 91, 92,
+ 126, 127, 0, 31, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 92, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 78, 92, 110, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 79, 92, 111, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 78, 92, 110, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 67, 92, 99, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 69, 92, 101, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 92, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 34, 44, 61, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 91, 92, 126, 127, 0, 31,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 67, 79, 92, 99,
+ 111, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 92, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 34, 44,
+ 61, 92, 127, 0, 31, 9, 13, 32,
+ 33, 34, 37, 39, 91, 92, 126, 127,
+ 0, 31, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 96, 97, 102, 103, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 92, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 96, 97, 102, 103,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 92, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 96, 97, 102,
+ 103, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 92, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 96, 97,
+ 102, 103, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 92, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 96,
+ 97, 102, 103, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 92, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 96, 97, 102, 103, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 96, 97, 102, 103, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 92, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 96, 97, 102, 103, 122, 9,
+ 13, 32, 34, 44, 92, 127, 0, 31,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 78, 92, 110, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 67, 92, 99, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 69, 92, 101, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 92, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 34, 44, 61, 92, 127, 0, 31,
+ 9, 13, 32, 33, 34, 37, 39, 91,
+ 92, 126, 127, 0, 31, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 34, 44, 92, 127, 0, 31,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 80, 92, 112, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 65, 92, 97, 126, 127, 0, 31,
+ 42, 46, 48, 57, 66, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 81, 92, 113, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 85, 92, 117, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 69, 92, 101, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 92, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 34, 44, 61, 92, 127, 0, 31,
+ 9, 13, 32, 33, 34, 37, 39, 91,
+ 92, 126, 127, 0, 31, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 34, 44, 92, 127, 0, 31,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 79, 92, 111, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 80, 92, 112, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 92, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 34, 44, 61, 92, 127, 0, 31,
+ 9, 13, 32, 33, 34, 37, 39, 91,
+ 92, 126, 127, 0, 31, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 92,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 69, 92, 101,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 65, 83, 92,
+ 97, 115, 126, 127, 0, 31, 42, 46,
+ 48, 57, 66, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 76,
+ 92, 108, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 77,
+ 92, 109, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 92,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 34,
+ 44, 61, 92, 127, 0, 31, 9, 13,
+ 32, 33, 34, 37, 39, 91, 92, 126,
+ 127, 0, 31, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 34, 44, 92, 127, 0, 31, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 80,
+ 92, 112, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 79,
+ 92, 111, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 78,
+ 92, 110, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 83,
+ 92, 115, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 69,
+ 92, 101, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 92,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 34,
+ 44, 61, 92, 127, 0, 31, 9, 13,
+ 32, 33, 34, 37, 39, 91, 92, 126,
+ 127, 0, 31, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 34, 44, 92, 127, 0, 31, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 82,
+ 83, 92, 114, 115, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 73, 92, 105, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 92, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 34, 44, 61, 92, 127, 0, 31,
+ 9, 13, 32, 33, 34, 37, 39, 91,
+ 92, 126, 127, 0, 31, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 34, 44, 92, 127, 0, 31,
+ 9, 13, 32, 34, 44, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 65, 67, 78, 79, 81, 82, 85, 92,
+ 97, 99, 110, 111, 113, 114, 117, 126,
+ 127, 0, 31, 42, 43, 45, 46, 48,
+ 57, 66, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 92, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 34, 44,
+ 61, 92, 127, 0, 31, 9, 13, 32,
+ 33, 34, 37, 39, 91, 92, 126, 127,
+ 0, 31, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 92, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 13, 34, 58, 92, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 92, 93, 127, 0, 8,
+ 10, 31, 13, 34, 58, 92, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 46, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 92, 127, 0, 8,
+ 10, 31, 48, 57, 13, 34, 46, 92,
+ 127, 0, 8, 10, 31, 48, 57, 13,
+ 34, 92, 127, 0, 8, 10, 31, 48,
+ 57, 13, 34, 46, 92, 127, 0, 8,
+ 10, 31, 48, 57, 13, 34, 92, 127,
+ 0, 8, 10, 31, 48, 57, 13, 34,
+ 92, 93, 127, 0, 8, 10, 31, 48,
+ 57, 13, 34, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 13, 34, 92, 93,
+ 127, 0, 8, 10, 31, 9, 13, 32,
+ 34, 44, 92, 127, 0, 31, 13, 34,
+ 46, 92, 127, 0, 8, 10, 31, 48,
+ 57, 13, 34, 46, 92, 127, 0, 8,
+ 10, 31, 13, 34, 46, 92, 127, 0,
+ 8, 10, 31, 48, 57, 13, 34, 46,
+ 92, 127, 0, 8, 10, 31, 13, 34,
+ 46, 58, 92, 93, 127, 0, 8, 10,
+ 31, 48, 57, 65, 70, 97, 102, 13,
+ 34, 46, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 92, 93, 127, 0, 8,
+ 10, 31, 13, 34, 92, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 46, 58, 92, 93, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 46, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 46, 58, 92, 93,
+ 127, 0, 8, 10, 31, 48, 57, 65,
+ 70, 97, 102, 13, 34, 92, 127, 0,
+ 8, 10, 31, 48, 57, 13, 34, 46,
+ 92, 127, 0, 8, 10, 31, 48, 57,
+ 13, 34, 46, 92, 127, 0, 8, 10,
+ 31, 48, 57, 13, 34, 46, 92, 127,
+ 0, 8, 10, 31, 13, 34, 58, 92,
+ 127, 0, 8, 10, 31, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 76, 92,
+ 108, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 71, 92,
+ 103, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 79, 92,
+ 111, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 82, 92,
+ 114, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 73, 92,
+ 105, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 84, 92,
+ 116, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 72, 92,
+ 104, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 77, 92,
+ 109, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 92, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 34, 44,
+ 61, 92, 127, 0, 31, 9, 13, 32,
+ 33, 34, 37, 39, 91, 92, 126, 127,
+ 0, 31, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 92, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 78, 92, 110, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 79, 92, 111, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 78, 92, 110, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 67, 92, 99, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 69, 92, 101, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 92, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 34, 44, 61, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 91, 92, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 67, 79, 92, 99, 111, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 92, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 34, 44, 61, 92, 127,
+ 0, 31, 9, 13, 32, 33, 34, 37,
+ 39, 91, 92, 126, 127, 0, 31, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 96, 97, 102, 103, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 96, 97, 102, 103, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 92, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 96, 97, 102, 103, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 92,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 96, 97, 102, 103, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 92, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 96, 97, 102, 103,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 92, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 96, 97, 102,
+ 103, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 92, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 96, 97,
+ 102, 103, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 92, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 96,
+ 97, 102, 103, 122, 9, 13, 32, 34,
+ 44, 92, 127, 0, 31, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 78, 92,
+ 110, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 67, 92,
+ 99, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 69, 92,
+ 101, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 92, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 34, 44,
+ 61, 92, 127, 0, 31, 9, 13, 32,
+ 33, 34, 37, 39, 91, 92, 126, 127,
+ 0, 31, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 80, 92, 112,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 65, 92, 97,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 66, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 81, 92, 113,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 85, 92, 117,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 69, 92, 101,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 61,
+ 92, 127, 0, 31, 9, 13, 32, 33,
+ 34, 37, 39, 91, 92, 126, 127, 0,
+ 31, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 79, 92, 111, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 80, 92, 112, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 92, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 34, 44, 61, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 91, 92, 126, 127, 0, 31,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 92, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 69, 92, 101, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 65, 83, 92, 97, 115, 126, 127, 0,
+ 31, 42, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 76, 92, 108, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 77, 92, 109, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 92, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 34, 44, 61, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 91, 92, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 80, 92, 112, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 79, 92, 111, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 78, 92, 110, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 83, 92, 115, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 69, 92, 101, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 92, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 34, 44, 61, 92, 127, 0, 31,
+ 9, 13, 32, 33, 34, 37, 39, 91,
+ 92, 126, 127, 0, 31, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 82, 83, 92, 114, 115, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 73, 92, 105, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 92, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 34, 44, 61, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 91, 92, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 69, 92, 101, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 82, 92, 114, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 78, 92, 110, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 65, 92, 97, 126, 127, 0, 31,
+ 42, 46, 48, 57, 66, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 77, 92, 109, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 69, 92, 101, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 92, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 34, 44, 61, 92, 127, 0, 31,
+ 9, 13, 32, 33, 34, 37, 39, 91,
+ 92, 126, 127, 0, 31, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 34, 44, 92, 127, 0, 31,
+ 13, 34, 92, 127, 0, 8, 10, 31,
+ 9, 13, 32, 44, 13, 0, 9, 11,
+ 127, 9, 13, 32, 33, 34, 37, 39,
+ 65, 67, 78, 79, 81, 82, 85, 92,
+ 97, 99, 110, 111, 113, 114, 117, 126,
+ 127, 0, 31, 42, 43, 45, 46, 48,
+ 57, 66, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 92, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 34, 44,
+ 61, 92, 127, 0, 31, 9, 13, 32,
+ 33, 34, 37, 39, 91, 92, 126, 127,
+ 0, 31, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 92, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 34, 44, 92, 127,
+ 0, 31, 13, 34, 58, 92, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 58, 92, 93, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 58, 92, 93, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 58, 92, 93, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 58, 92, 93, 127, 0,
+ 8, 10, 31, 13, 34, 58, 92, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 46, 58, 92, 93,
+ 127, 0, 8, 10, 31, 48, 57, 65,
+ 70, 97, 102, 13, 34, 92, 127, 0,
+ 8, 10, 31, 48, 57, 13, 34, 46,
+ 92, 127, 0, 8, 10, 31, 48, 57,
+ 13, 34, 92, 127, 0, 8, 10, 31,
+ 48, 57, 13, 34, 46, 92, 127, 0,
+ 8, 10, 31, 48, 57, 13, 34, 92,
+ 127, 0, 8, 10, 31, 48, 57, 13,
+ 34, 92, 93, 127, 0, 8, 10, 31,
+ 48, 57, 13, 34, 92, 93, 127, 0,
+ 8, 10, 31, 48, 57, 13, 34, 92,
+ 93, 127, 0, 8, 10, 31, 9, 13,
+ 32, 34, 44, 92, 127, 0, 31, 13,
+ 34, 46, 92, 127, 0, 8, 10, 31,
+ 48, 57, 13, 34, 46, 92, 127, 0,
+ 8, 10, 31, 13, 34, 46, 92, 127,
+ 0, 8, 10, 31, 48, 57, 13, 34,
+ 46, 92, 127, 0, 8, 10, 31, 13,
+ 34, 46, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 46, 58, 92, 93, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 58, 92, 93, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 58, 92, 93, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 58, 92, 93, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 58, 92, 93, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 58, 92, 93, 127, 0,
+ 8, 10, 31, 13, 34, 92, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 46, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 46, 58, 92, 93,
+ 127, 0, 8, 10, 31, 48, 57, 65,
+ 70, 97, 102, 13, 34, 46, 58, 92,
+ 93, 127, 0, 8, 10, 31, 48, 57,
+ 65, 70, 97, 102, 13, 34, 92, 127,
+ 0, 8, 10, 31, 48, 57, 13, 34,
+ 46, 92, 127, 0, 8, 10, 31, 48,
+ 57, 13, 34, 46, 92, 127, 0, 8,
+ 10, 31, 48, 57, 13, 34, 46, 92,
+ 127, 0, 8, 10, 31, 13, 34, 58,
+ 92, 127, 0, 8, 10, 31, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 76,
+ 92, 108, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 71,
+ 92, 103, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 79,
+ 92, 111, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 82,
+ 92, 114, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 73,
+ 92, 105, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 84,
+ 92, 116, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 72,
+ 92, 104, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 77,
+ 92, 109, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 92,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 34,
+ 44, 61, 92, 127, 0, 31, 9, 13,
+ 32, 33, 34, 37, 39, 91, 92, 126,
+ 127, 0, 31, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 78, 92, 110, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 79, 92, 111, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 78, 92, 110, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 67, 92, 99, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 69, 92, 101, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 92, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 34, 44, 61, 92, 127,
+ 0, 31, 9, 13, 32, 33, 34, 37,
+ 39, 91, 92, 126, 127, 0, 31, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 34, 44, 92, 127,
+ 0, 31, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 67, 79, 92, 99, 111,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 61,
+ 92, 127, 0, 31, 9, 13, 32, 33,
+ 34, 37, 39, 91, 92, 126, 127, 0,
+ 31, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 96, 97, 102, 103, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 92,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 96, 97, 102, 103, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 92, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 96, 97, 102, 103,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 92, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 96, 97, 102,
+ 103, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 92, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 96, 97,
+ 102, 103, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 92, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 96,
+ 97, 102, 103, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 92, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 96, 97, 102, 103, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 96, 97, 102, 103, 122, 9, 13,
+ 32, 34, 44, 92, 127, 0, 31, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 78, 92, 110, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 67, 92, 99, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 69, 92, 101, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 92, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 34, 44, 61, 92, 127, 0, 31, 9,
+ 13, 32, 33, 34, 37, 39, 91, 92,
+ 126, 127, 0, 31, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 34, 44, 92, 127, 0, 31, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 80, 92, 112, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 65, 92, 97, 126, 127, 0, 31, 42,
+ 46, 48, 57, 66, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 81, 92, 113, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 85, 92, 117, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 69, 92, 101, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 92, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 34, 44, 61, 92, 127, 0, 31, 9,
+ 13, 32, 33, 34, 37, 39, 91, 92,
+ 126, 127, 0, 31, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 34, 44, 92, 127, 0, 31, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 79, 92, 111, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 80, 92, 112, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 92, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 34, 44, 61, 92, 127, 0, 31, 9,
+ 13, 32, 33, 34, 37, 39, 91, 92,
+ 126, 127, 0, 31, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 92, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 69, 92, 101, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 65, 83, 92, 97,
+ 115, 126, 127, 0, 31, 42, 46, 48,
+ 57, 66, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 76, 92,
+ 108, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 77, 92,
+ 109, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 92, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 34, 44,
+ 61, 92, 127, 0, 31, 9, 13, 32,
+ 33, 34, 37, 39, 91, 92, 126, 127,
+ 0, 31, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 34,
+ 44, 92, 127, 0, 31, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 80, 92,
+ 112, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 79, 92,
+ 111, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 78, 92,
+ 110, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 83, 92,
+ 115, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 69, 92,
+ 101, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 92, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 34, 44,
+ 61, 92, 127, 0, 31, 9, 13, 32,
+ 33, 34, 37, 39, 91, 92, 126, 127,
+ 0, 31, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 34,
+ 44, 92, 127, 0, 31, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 82, 83,
+ 92, 114, 115, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 73, 92, 105, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 92, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 34, 44, 61, 92, 127, 0, 31, 9,
+ 13, 32, 33, 34, 37, 39, 91, 92,
+ 126, 127, 0, 31, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 34, 44, 92, 127, 0, 31, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 69, 92, 101, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 82, 92, 114, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 78, 92, 110, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 65, 92, 97, 126, 127, 0, 31, 42,
+ 46, 48, 57, 66, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 77, 92, 109, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 69, 92, 101, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 92, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 34, 44, 61, 92, 127, 0, 31, 9,
+ 13, 32, 33, 34, 37, 39, 91, 92,
+ 126, 127, 0, 31, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 34, 44, 92, 127, 0, 31, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 69, 92, 101, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 82, 92, 114, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 78, 92, 110, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 65, 92, 97, 126, 127, 0, 31, 42,
+ 46, 48, 57, 66, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 77, 92, 109, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 69, 92, 101, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 92, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 34, 44, 61, 92, 127, 0, 31, 9,
+ 13, 32, 33, 34, 37, 39, 91, 92,
+ 126, 127, 0, 31, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 34, 44, 92, 127, 0, 31, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 82, 83, 92, 114, 115, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 73, 92, 105, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 92, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 34, 44, 61, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 91, 92, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 34, 44, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 69, 92, 101, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 82, 92, 114, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 78, 92, 110, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 65, 92, 97, 126, 127, 0,
+ 31, 42, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 77, 92, 109, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 69, 92, 101, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 92, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 34, 44, 61, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 91, 92, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 34, 44, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 80, 92, 112, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 79, 92, 111, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 78, 92, 110, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 83, 92, 115, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 69, 92, 101, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 92, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 34, 44, 61, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 91, 92, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 34, 44, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 82, 83, 92, 114, 115, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 73, 92, 105, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 92, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 34, 44, 61, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 91, 92, 126, 127, 0, 31,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 69, 92, 101, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 82, 92, 114, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 78, 92, 110, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 65, 92, 97, 126,
+ 127, 0, 31, 42, 46, 48, 57, 66,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 77, 92, 109, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 69, 92, 101, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 92, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 34, 44, 61, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 91, 92, 126, 127, 0, 31,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 79, 92, 111, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 80, 92, 112, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 92, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 34, 44, 61, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 91, 92, 126, 127, 0, 31,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 92, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 69, 92, 101, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 65, 83, 92, 97, 115, 126, 127, 0,
+ 31, 42, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 76, 92, 108, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 77, 92, 109, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 92, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 34, 44, 61, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 91, 92, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 34, 44, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 80, 92, 112, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 79, 92, 111, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 78, 92, 110, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 83, 92, 115, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 69, 92, 101, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 92, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 34, 44, 61, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 91, 92, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 34, 44, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 82, 83, 92, 114, 115, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 73, 92, 105, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 92, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 34, 44, 61, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 91, 92, 126, 127, 0, 31,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 69, 92, 101, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 82, 92, 114, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 78, 92, 110, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 65, 92, 97, 126,
+ 127, 0, 31, 42, 46, 48, 57, 66,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 77, 92, 109, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 69, 92, 101, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 92, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 34, 44, 61, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 91, 92, 126, 127, 0, 31,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 80, 92, 112, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 65, 92, 97, 126,
+ 127, 0, 31, 42, 46, 48, 57, 66,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 81, 92, 113, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 85, 92, 117, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 69, 92, 101, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 92, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 34, 44, 61, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 91, 92, 126, 127, 0, 31,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 79, 92, 111, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 80, 92, 112, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 92, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 34, 44, 61, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 91, 92, 126, 127, 0, 31,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 92, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 69, 92, 101, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 65, 83, 92, 97, 115, 126, 127, 0,
+ 31, 42, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 76, 92, 108, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 77, 92, 109, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 92, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 34, 44, 61, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 91, 92, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 34, 44, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 80, 92, 112, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 79, 92, 111, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 78, 92, 110, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 83, 92, 115, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 69, 92, 101, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 92, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 34, 44, 61, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 91, 92, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 34, 44, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 82, 83, 92, 114, 115, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 73, 92, 105, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 92, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 34, 44, 61, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 91, 92, 126, 127, 0, 31,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 69, 92, 101, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 82, 92, 114, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 78, 92, 110, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 65, 92, 97, 126,
+ 127, 0, 31, 42, 46, 48, 57, 66,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 77, 92, 109, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 69, 92, 101, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 92, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 34, 44, 61, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 91, 92, 126, 127, 0, 31,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 67, 79, 92, 99,
+ 111, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 92, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 34, 44,
+ 61, 92, 127, 0, 31, 9, 13, 32,
+ 33, 34, 37, 39, 91, 92, 126, 127,
+ 0, 31, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 96, 97, 102, 103, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 92, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 96, 97, 102, 103,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 92, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 96, 97, 102,
+ 103, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 92, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 96, 97,
+ 102, 103, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 92, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 96,
+ 97, 102, 103, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 92, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 96, 97, 102, 103, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 96, 97, 102, 103, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 92, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 96, 97, 102, 103, 122, 9,
+ 13, 32, 34, 44, 92, 127, 0, 31,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 78, 92, 110, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 67, 92, 99, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 69, 92, 101, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 92, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 34, 44, 61, 92, 127, 0, 31,
+ 9, 13, 32, 33, 34, 37, 39, 91,
+ 92, 126, 127, 0, 31, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 80, 92, 112, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 65, 92, 97, 126, 127, 0, 31, 42,
+ 46, 48, 57, 66, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 81, 92, 113, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 85, 92, 117, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 69, 92, 101, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 92, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 34, 44, 61, 92, 127, 0, 31, 9,
+ 13, 32, 33, 34, 37, 39, 91, 92,
+ 126, 127, 0, 31, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 79,
+ 92, 111, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 80,
+ 92, 112, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 92,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 34,
+ 44, 61, 92, 127, 0, 31, 9, 13,
+ 32, 33, 34, 37, 39, 91, 92, 126,
+ 127, 0, 31, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 69, 92, 101, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 65, 83, 92, 97, 115,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 66, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 76, 92, 108,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 77, 92, 109,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 61,
+ 92, 127, 0, 31, 9, 13, 32, 33,
+ 34, 37, 39, 91, 92, 126, 127, 0,
+ 31, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 80, 92, 112, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 79, 92, 111, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 78, 92, 110, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 83, 92, 115, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 69, 92, 101, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 92, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 34, 44, 61, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 91, 92, 126, 127, 0, 31,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 82, 83, 92, 114, 115,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 73, 92, 105,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 61,
+ 92, 127, 0, 31, 9, 13, 32, 33,
+ 34, 37, 39, 91, 92, 126, 127, 0,
+ 31, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 34, 44,
+ 92, 127, 0, 31, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 69, 92, 101,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 82, 92, 114,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 78, 92, 110,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 65, 92, 97,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 66, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 77, 92, 109,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 69, 92, 101,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 61,
+ 92, 127, 0, 31, 9, 13, 32, 33,
+ 34, 37, 39, 91, 92, 126, 127, 0,
+ 31, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 37,
+ 39, 44, 61, 69, 101, 126, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 37, 39, 44, 61, 82, 114,
+ 126, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 37, 39, 44,
+ 61, 78, 110, 126, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 37, 39, 44, 61, 65, 97, 126, 42,
+ 46, 48, 57, 66, 90, 95, 122, 9,
+ 13, 32, 33, 37, 39, 44, 61, 77,
+ 109, 126, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 37, 39,
+ 44, 61, 69, 101, 126, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 37, 39, 44, 61, 126, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 44, 61, 9, 13, 32, 33, 34,
+ 37, 39, 91, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 37, 39, 44, 61, 82, 83,
+ 114, 115, 126, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 37,
+ 39, 44, 61, 73, 105, 126, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 37, 39, 44, 61, 126, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 44, 61, 9, 13, 32, 33,
+ 34, 37, 39, 91, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 13,
+ 34, 92, 127, 0, 8, 10, 31, 13,
+ 34, 92, 127, 0, 8, 10, 31, 13,
+ 34, 0, 9, 11, 127, 9, 13, 32,
+ 34, 44, 92, 127, 0, 31, 9, 13,
+ 32, 33, 34, 37, 39, 65, 67, 78,
+ 79, 81, 82, 85, 92, 97, 99, 110,
+ 111, 113, 114, 117, 126, 127, 0, 31,
+ 42, 43, 45, 46, 48, 57, 66, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 92, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 34, 44, 61, 92, 127,
+ 0, 31, 9, 13, 32, 33, 34, 37,
+ 39, 91, 92, 126, 127, 0, 31, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 92, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 13, 34,
+ 58, 92, 127, 0, 8, 10, 31, 48,
+ 57, 65, 70, 97, 102, 13, 34, 58,
+ 92, 93, 127, 0, 8, 10, 31, 48,
+ 57, 65, 70, 97, 102, 13, 34, 58,
+ 92, 93, 127, 0, 8, 10, 31, 48,
+ 57, 65, 70, 97, 102, 13, 34, 58,
+ 92, 93, 127, 0, 8, 10, 31, 48,
+ 57, 65, 70, 97, 102, 13, 34, 58,
+ 92, 93, 127, 0, 8, 10, 31, 13,
+ 34, 58, 92, 127, 0, 8, 10, 31,
+ 48, 57, 65, 70, 97, 102, 13, 34,
+ 46, 58, 92, 93, 127, 0, 8, 10,
+ 31, 48, 57, 65, 70, 97, 102, 13,
+ 34, 92, 127, 0, 8, 10, 31, 48,
+ 57, 13, 34, 46, 92, 127, 0, 8,
+ 10, 31, 48, 57, 13, 34, 92, 127,
+ 0, 8, 10, 31, 48, 57, 13, 34,
+ 46, 92, 127, 0, 8, 10, 31, 48,
+ 57, 13, 34, 92, 127, 0, 8, 10,
+ 31, 48, 57, 13, 34, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 13, 34,
+ 92, 93, 127, 0, 8, 10, 31, 48,
+ 57, 13, 34, 92, 93, 127, 0, 8,
+ 10, 31, 9, 13, 32, 34, 44, 92,
+ 127, 0, 31, 13, 34, 46, 92, 127,
+ 0, 8, 10, 31, 48, 57, 13, 34,
+ 46, 92, 127, 0, 8, 10, 31, 13,
+ 34, 46, 92, 127, 0, 8, 10, 31,
+ 48, 57, 13, 34, 46, 92, 127, 0,
+ 8, 10, 31, 13, 34, 46, 58, 92,
+ 93, 127, 0, 8, 10, 31, 48, 57,
+ 65, 70, 97, 102, 13, 34, 46, 58,
+ 92, 93, 127, 0, 8, 10, 31, 48,
+ 57, 65, 70, 97, 102, 13, 34, 58,
+ 92, 93, 127, 0, 8, 10, 31, 48,
+ 57, 65, 70, 97, 102, 13, 34, 58,
+ 92, 93, 127, 0, 8, 10, 31, 48,
+ 57, 65, 70, 97, 102, 13, 34, 58,
+ 92, 93, 127, 0, 8, 10, 31, 48,
+ 57, 65, 70, 97, 102, 13, 34, 58,
+ 92, 93, 127, 0, 8, 10, 31, 48,
+ 57, 65, 70, 97, 102, 13, 34, 58,
+ 92, 93, 127, 0, 8, 10, 31, 13,
+ 34, 92, 127, 0, 8, 10, 31, 48,
+ 57, 65, 70, 97, 102, 13, 34, 46,
+ 58, 92, 93, 127, 0, 8, 10, 31,
+ 48, 57, 65, 70, 97, 102, 13, 34,
+ 46, 58, 92, 93, 127, 0, 8, 10,
+ 31, 48, 57, 65, 70, 97, 102, 13,
+ 34, 46, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 92, 127, 0, 8, 10, 31,
+ 48, 57, 13, 34, 46, 92, 127, 0,
+ 8, 10, 31, 48, 57, 13, 34, 46,
+ 92, 127, 0, 8, 10, 31, 48, 57,
+ 13, 34, 46, 92, 127, 0, 8, 10,
+ 31, 13, 34, 58, 92, 127, 0, 8,
+ 10, 31, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 76, 92, 108, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 71, 92, 103, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 79, 92, 111, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 82, 92, 114, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 73, 92, 105, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 84, 92, 116, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 72, 92, 104, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 77, 92, 109, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 92, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 34, 44, 61, 92, 127,
+ 0, 31, 9, 13, 32, 33, 34, 37,
+ 39, 91, 92, 126, 127, 0, 31, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 92, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 78,
+ 92, 110, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 79,
+ 92, 111, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 78,
+ 92, 110, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 67,
+ 92, 99, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 69,
+ 92, 101, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 92,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 34,
+ 44, 61, 92, 127, 0, 31, 9, 13,
+ 32, 33, 34, 37, 39, 91, 92, 126,
+ 127, 0, 31, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 67, 79,
+ 92, 99, 111, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 92, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 34, 44, 61, 92, 127, 0, 31, 9,
+ 13, 32, 33, 34, 37, 39, 91, 92,
+ 126, 127, 0, 31, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 96, 97, 102,
+ 103, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 92, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 96, 97,
+ 102, 103, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 92, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 96,
+ 97, 102, 103, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 92, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 96, 97, 102, 103, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 96, 97, 102, 103, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 92, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 96, 97, 102, 103, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 92,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 96, 97, 102, 103, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 92, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 96, 97, 102, 103,
+ 122, 9, 13, 32, 34, 44, 92, 127,
+ 0, 31, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 78, 92, 110, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 67, 92, 99, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 69, 92, 101, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 92, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 34, 44, 61, 92, 127,
+ 0, 31, 9, 13, 32, 33, 34, 37,
+ 39, 91, 92, 126, 127, 0, 31, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 80, 92, 112, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 65, 92, 97, 126, 127, 0,
+ 31, 42, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 81, 92, 113, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 85, 92, 117, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 69, 92, 101, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 92, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 34, 44, 61, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 91, 92, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 79, 92, 111, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 80, 92, 112, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 92, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 34, 44, 61, 92, 127, 0, 31,
+ 9, 13, 32, 33, 34, 37, 39, 91,
+ 92, 126, 127, 0, 31, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 92,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 69, 92, 101,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 65, 83, 92,
+ 97, 115, 126, 127, 0, 31, 42, 46,
+ 48, 57, 66, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 76,
+ 92, 108, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 77,
+ 92, 109, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 92,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 34,
+ 44, 61, 92, 127, 0, 31, 9, 13,
+ 32, 33, 34, 37, 39, 91, 92, 126,
+ 127, 0, 31, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 80, 92,
+ 112, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 79, 92,
+ 111, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 78, 92,
+ 110, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 83, 92,
+ 115, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 69, 92,
+ 101, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 92, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 34, 44,
+ 61, 92, 127, 0, 31, 9, 13, 32,
+ 33, 34, 37, 39, 91, 92, 126, 127,
+ 0, 31, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 82, 83, 92,
+ 114, 115, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 73,
+ 92, 105, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 92,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 34,
+ 44, 61, 92, 127, 0, 31, 9, 13,
+ 32, 33, 34, 37, 39, 91, 92, 126,
+ 127, 0, 31, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 34, 44, 92, 127, 0, 31, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 69,
+ 92, 101, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 82,
+ 92, 114, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 78,
+ 92, 110, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 65,
+ 92, 97, 126, 127, 0, 31, 42, 46,
+ 48, 57, 66, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 77,
+ 92, 109, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 69,
+ 92, 101, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 92,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 34,
+ 44, 61, 92, 127, 0, 31, 9, 13,
+ 32, 33, 34, 37, 39, 91, 92, 126,
+ 127, 0, 31, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 13, 73, 105,
+ 13, 71, 103, 13, 69, 101, 13, 83,
+ 115, 13, 84, 116, 9, 13, 32, 10,
+ 13, 9, 13, 32, 82, 114, 79, 111,
+ 88, 120, 89, 121, 45, 65, 97, 0
+};
+
+static const char _thttp_machine_parser_header_Authorization_single_lengths[] = {
+ 0, 4, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 3, 7,
+ 1, 1, 7, 3, 3, 3, 3, 3,
+ 21, 9, 5, 21, 11, 9, 8, 4,
+ 4, 4, 1, 2, 3, 3, 3, 3,
+ 2, 4, 1, 2, 1, 2, 1, 2,
+ 2, 2, 2, 2, 2, 2, 4, 4,
+ 3, 3, 3, 3, 3, 1, 4, 4,
+ 4, 1, 2, 2, 2, 2, 11, 11,
+ 11, 11, 11, 11, 11, 9, 5, 9,
+ 8, 11, 11, 11, 11, 11, 9, 5,
+ 9, 4, 4, 1, 13, 9, 5, 9,
+ 8, 8, 8, 8, 8, 8, 8, 4,
+ 11, 11, 11, 9, 5, 9, 4, 4,
+ 1, 11, 11, 11, 11, 11, 9, 5,
+ 9, 4, 4, 1, 11, 11, 9, 5,
+ 9, 8, 11, 13, 11, 11, 9, 5,
+ 9, 4, 4, 1, 11, 11, 11, 11,
+ 11, 9, 5, 9, 4, 4, 1, 13,
+ 11, 9, 5, 9, 4, 4, 2, 2,
+ 7, 24, 12, 8, 11, 11, 7, 5,
+ 6, 6, 6, 6, 5, 7, 4, 5,
+ 4, 5, 4, 5, 5, 5, 5, 5,
+ 5, 5, 7, 7, 6, 6, 6, 6,
+ 6, 4, 7, 7, 7, 4, 5, 5,
+ 5, 5, 14, 14, 14, 14, 14, 14,
+ 14, 14, 12, 8, 11, 11, 14, 14,
+ 14, 14, 14, 12, 8, 11, 7, 7,
+ 24, 12, 8, 11, 11, 7, 5, 6,
+ 6, 6, 6, 5, 7, 4, 5, 4,
+ 5, 4, 5, 5, 5, 5, 5, 5,
+ 5, 7, 7, 6, 6, 6, 6, 6,
+ 4, 7, 7, 7, 4, 5, 5, 5,
+ 5, 14, 14, 14, 14, 14, 14, 14,
+ 14, 12, 8, 11, 11, 14, 14, 14,
+ 14, 14, 12, 8, 11, 7, 16, 12,
+ 8, 11, 11, 11, 11, 11, 11, 11,
+ 11, 7, 14, 14, 14, 12, 8, 11,
+ 7, 7, 24, 12, 8, 11, 11, 7,
+ 5, 6, 6, 6, 6, 5, 7, 4,
+ 5, 4, 5, 4, 5, 5, 5, 7,
+ 5, 5, 5, 5, 7, 7, 6, 6,
+ 6, 6, 6, 4, 7, 7, 7, 4,
+ 5, 5, 5, 5, 14, 14, 14, 14,
+ 14, 14, 14, 14, 12, 8, 11, 11,
+ 14, 14, 14, 14, 14, 12, 8, 11,
+ 7, 16, 12, 8, 11, 11, 11, 11,
+ 11, 11, 11, 11, 7, 14, 14, 14,
+ 12, 8, 11, 7, 14, 14, 14, 14,
+ 14, 12, 8, 11, 7, 7, 24, 12,
+ 8, 11, 11, 7, 5, 6, 6, 6,
+ 6, 5, 7, 4, 5, 4, 5, 4,
+ 5, 5, 5, 7, 5, 5, 5, 5,
+ 7, 7, 6, 6, 6, 6, 6, 4,
+ 7, 7, 7, 4, 5, 5, 5, 5,
+ 14, 14, 14, 14, 14, 14, 14, 14,
+ 12, 8, 11, 11, 14, 14, 14, 14,
+ 14, 12, 8, 11, 7, 16, 12, 8,
+ 11, 11, 11, 11, 11, 11, 11, 11,
+ 7, 14, 14, 14, 12, 8, 11, 7,
+ 14, 14, 14, 14, 14, 12, 8, 11,
+ 7, 14, 14, 12, 8, 11, 11, 14,
+ 16, 14, 14, 12, 8, 11, 7, 7,
+ 24, 12, 8, 11, 11, 7, 5, 6,
+ 6, 6, 6, 5, 7, 4, 5, 4,
+ 5, 4, 5, 5, 5, 7, 5, 5,
+ 5, 5, 7, 7, 6, 6, 6, 6,
+ 6, 4, 7, 7, 7, 4, 5, 5,
+ 5, 5, 14, 14, 14, 14, 14, 14,
+ 14, 14, 12, 8, 11, 11, 14, 14,
+ 14, 14, 14, 12, 8, 11, 7, 16,
+ 12, 8, 11, 11, 11, 11, 11, 11,
+ 11, 11, 7, 14, 14, 14, 12, 8,
+ 11, 7, 14, 14, 14, 14, 14, 12,
+ 8, 11, 7, 14, 14, 12, 8, 11,
+ 11, 14, 16, 14, 14, 12, 8, 11,
+ 7, 14, 14, 14, 14, 14, 12, 8,
+ 11, 7, 7, 24, 12, 8, 11, 11,
+ 7, 5, 6, 6, 6, 6, 5, 7,
+ 4, 5, 4, 5, 4, 5, 5, 5,
+ 7, 5, 5, 5, 5, 7, 7, 6,
+ 6, 6, 6, 6, 4, 7, 7, 7,
+ 4, 5, 5, 5, 5, 14, 14, 14,
+ 14, 14, 14, 14, 14, 12, 8, 11,
+ 11, 14, 14, 14, 14, 14, 12, 8,
+ 11, 7, 16, 12, 8, 11, 11, 11,
+ 11, 11, 11, 11, 11, 7, 14, 14,
+ 14, 12, 8, 11, 7, 14, 14, 14,
+ 14, 14, 12, 8, 11, 7, 14, 14,
+ 12, 8, 11, 11, 14, 16, 14, 14,
+ 12, 8, 11, 7, 14, 14, 14, 14,
+ 14, 12, 8, 11, 7, 16, 14, 12,
+ 8, 11, 7, 7, 24, 12, 8, 11,
+ 11, 5, 6, 6, 6, 6, 5, 7,
+ 4, 5, 4, 5, 4, 5, 5, 5,
+ 7, 5, 5, 5, 5, 7, 7, 6,
+ 6, 6, 6, 6, 4, 7, 7, 7,
+ 4, 5, 5, 5, 5, 14, 14, 14,
+ 14, 14, 14, 14, 14, 12, 8, 11,
+ 11, 14, 14, 14, 14, 14, 12, 8,
+ 11, 16, 12, 8, 11, 11, 11, 11,
+ 11, 11, 11, 11, 7, 14, 14, 14,
+ 12, 8, 11, 14, 14, 14, 14, 14,
+ 12, 8, 11, 14, 14, 12, 8, 11,
+ 11, 14, 16, 14, 14, 12, 8, 11,
+ 14, 14, 14, 14, 14, 12, 8, 11,
+ 16, 14, 12, 8, 11, 14, 14, 14,
+ 14, 14, 14, 12, 8, 11, 7, 4,
+ 4, 1, 24, 12, 8, 11, 11, 7,
+ 5, 6, 6, 6, 6, 5, 7, 4,
+ 5, 4, 5, 4, 5, 5, 5, 7,
+ 5, 5, 5, 5, 7, 7, 6, 6,
+ 6, 6, 6, 4, 7, 7, 7, 4,
+ 5, 5, 5, 5, 14, 14, 14, 14,
+ 14, 14, 14, 14, 12, 8, 11, 11,
+ 14, 14, 14, 14, 14, 12, 8, 11,
+ 7, 16, 12, 8, 11, 11, 11, 11,
+ 11, 11, 11, 11, 7, 14, 14, 14,
+ 12, 8, 11, 7, 14, 14, 14, 14,
+ 14, 12, 8, 11, 7, 14, 14, 12,
+ 8, 11, 11, 14, 16, 14, 14, 12,
+ 8, 11, 7, 14, 14, 14, 14, 14,
+ 12, 8, 11, 7, 16, 14, 12, 8,
+ 11, 7, 14, 14, 14, 14, 14, 14,
+ 12, 8, 11, 7, 14, 14, 14, 14,
+ 14, 14, 12, 8, 11, 7, 16, 14,
+ 12, 8, 11, 7, 14, 14, 14, 14,
+ 14, 14, 12, 8, 11, 7, 14, 14,
+ 14, 14, 14, 12, 8, 11, 7, 16,
+ 14, 12, 8, 11, 7, 14, 14, 14,
+ 14, 14, 14, 12, 8, 11, 7, 14,
+ 14, 12, 8, 11, 11, 14, 16, 14,
+ 14, 12, 8, 11, 7, 14, 14, 14,
+ 14, 14, 12, 8, 11, 7, 16, 14,
+ 12, 8, 11, 7, 14, 14, 14, 14,
+ 14, 14, 12, 8, 11, 7, 14, 14,
+ 14, 14, 14, 12, 8, 11, 7, 14,
+ 14, 12, 8, 11, 11, 14, 16, 14,
+ 14, 12, 8, 11, 7, 14, 14, 14,
+ 14, 14, 12, 8, 11, 7, 16, 14,
+ 12, 8, 11, 7, 14, 14, 14, 14,
+ 14, 14, 12, 8, 11, 7, 16, 12,
+ 8, 11, 11, 11, 11, 11, 11, 11,
+ 11, 7, 14, 14, 14, 12, 8, 11,
+ 14, 14, 14, 14, 14, 12, 8, 11,
+ 14, 14, 12, 8, 11, 11, 14, 16,
+ 14, 14, 12, 8, 11, 14, 14, 14,
+ 14, 14, 12, 8, 11, 16, 14, 12,
+ 8, 11, 7, 14, 14, 14, 14, 14,
+ 14, 12, 8, 11, 11, 11, 11, 11,
+ 11, 11, 9, 5, 9, 13, 11, 9,
+ 5, 9, 4, 4, 2, 7, 24, 12,
+ 8, 11, 11, 5, 6, 6, 6, 6,
+ 5, 7, 4, 5, 4, 5, 4, 5,
+ 5, 5, 7, 5, 5, 5, 5, 7,
+ 7, 6, 6, 6, 6, 6, 4, 7,
+ 7, 7, 4, 5, 5, 5, 5, 14,
+ 14, 14, 14, 14, 14, 14, 14, 12,
+ 8, 11, 11, 14, 14, 14, 14, 14,
+ 12, 8, 11, 16, 12, 8, 11, 11,
+ 11, 11, 11, 11, 11, 11, 7, 14,
+ 14, 14, 12, 8, 11, 14, 14, 14,
+ 14, 14, 12, 8, 11, 14, 14, 12,
+ 8, 11, 11, 14, 16, 14, 14, 12,
+ 8, 11, 14, 14, 14, 14, 14, 12,
+ 8, 11, 16, 14, 12, 8, 11, 7,
+ 14, 14, 14, 14, 14, 14, 12, 8,
+ 11, 3, 3, 3, 3, 3, 3, 2,
+ 3, 2, 2, 2, 2, 1, 2, 0
+};
+
+static const char _thttp_machine_parser_header_Authorization_range_lengths[] = {
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 5, 4, 0, 5, 4, 5, 4, 0,
+ 2, 0, 2, 3, 3, 3, 3, 0,
+ 3, 3, 1, 1, 1, 1, 1, 1,
+ 1, 0, 1, 0, 1, 0, 3, 3,
+ 3, 3, 3, 3, 0, 3, 3, 3,
+ 3, 1, 1, 1, 0, 0, 4, 4,
+ 4, 4, 4, 4, 4, 4, 0, 5,
+ 4, 4, 4, 4, 4, 4, 4, 0,
+ 5, 2, 0, 2, 4, 4, 0, 7,
+ 6, 6, 6, 6, 6, 6, 6, 0,
+ 4, 4, 4, 4, 0, 5, 2, 0,
+ 2, 4, 4, 4, 4, 4, 4, 0,
+ 5, 2, 0, 2, 4, 4, 4, 0,
+ 5, 4, 4, 4, 4, 4, 4, 0,
+ 5, 2, 0, 2, 4, 4, 4, 4,
+ 4, 4, 0, 5, 2, 0, 2, 4,
+ 4, 4, 0, 5, 2, 2, 0, 2,
+ 1, 6, 5, 1, 6, 5, 1, 5,
+ 5, 5, 5, 2, 5, 5, 3, 3,
+ 3, 3, 3, 3, 3, 2, 3, 2,
+ 3, 2, 5, 5, 5, 5, 5, 5,
+ 2, 5, 5, 5, 5, 3, 3, 3,
+ 2, 2, 5, 5, 5, 5, 5, 5,
+ 5, 5, 5, 1, 6, 5, 5, 5,
+ 5, 5, 5, 5, 1, 6, 1, 1,
+ 6, 5, 1, 6, 5, 1, 5, 5,
+ 5, 5, 2, 5, 5, 3, 3, 3,
+ 3, 3, 3, 3, 2, 3, 2, 3,
+ 2, 5, 5, 5, 5, 5, 5, 2,
+ 5, 5, 5, 5, 3, 3, 3, 2,
+ 2, 5, 5, 5, 5, 5, 5, 5,
+ 5, 5, 1, 6, 5, 5, 5, 5,
+ 5, 5, 5, 1, 6, 1, 5, 5,
+ 1, 8, 7, 7, 7, 7, 7, 7,
+ 7, 1, 5, 5, 5, 5, 1, 6,
+ 1, 1, 6, 5, 1, 6, 5, 1,
+ 5, 5, 5, 5, 2, 5, 5, 3,
+ 3, 3, 3, 3, 3, 3, 2, 1,
+ 3, 2, 3, 2, 5, 5, 5, 5,
+ 5, 5, 2, 5, 5, 5, 5, 3,
+ 3, 3, 2, 2, 5, 5, 5, 5,
+ 5, 5, 5, 5, 5, 1, 6, 5,
+ 5, 5, 5, 5, 5, 5, 1, 6,
+ 1, 5, 5, 1, 8, 7, 7, 7,
+ 7, 7, 7, 7, 1, 5, 5, 5,
+ 5, 1, 6, 1, 5, 5, 5, 5,
+ 5, 5, 1, 6, 1, 1, 6, 5,
+ 1, 6, 5, 1, 5, 5, 5, 5,
+ 2, 5, 5, 3, 3, 3, 3, 3,
+ 3, 3, 2, 1, 3, 2, 3, 2,
+ 5, 5, 5, 5, 5, 5, 2, 5,
+ 5, 5, 5, 3, 3, 3, 2, 2,
+ 5, 5, 5, 5, 5, 5, 5, 5,
+ 5, 1, 6, 5, 5, 5, 5, 5,
+ 5, 5, 1, 6, 1, 5, 5, 1,
+ 8, 7, 7, 7, 7, 7, 7, 7,
+ 1, 5, 5, 5, 5, 1, 6, 1,
+ 5, 5, 5, 5, 5, 5, 1, 6,
+ 1, 5, 5, 5, 1, 6, 5, 5,
+ 5, 5, 5, 5, 1, 6, 1, 1,
+ 6, 5, 1, 6, 5, 1, 5, 5,
+ 5, 5, 2, 5, 5, 3, 3, 3,
+ 3, 3, 3, 3, 2, 1, 3, 2,
+ 3, 2, 5, 5, 5, 5, 5, 5,
+ 2, 5, 5, 5, 5, 3, 3, 3,
+ 2, 2, 5, 5, 5, 5, 5, 5,
+ 5, 5, 5, 1, 6, 5, 5, 5,
+ 5, 5, 5, 5, 1, 6, 1, 5,
+ 5, 1, 8, 7, 7, 7, 7, 7,
+ 7, 7, 1, 5, 5, 5, 5, 1,
+ 6, 1, 5, 5, 5, 5, 5, 5,
+ 1, 6, 1, 5, 5, 5, 1, 6,
+ 5, 5, 5, 5, 5, 5, 1, 6,
+ 1, 5, 5, 5, 5, 5, 5, 1,
+ 6, 1, 1, 6, 5, 1, 6, 5,
+ 1, 5, 5, 5, 5, 2, 5, 5,
+ 3, 3, 3, 3, 3, 3, 3, 2,
+ 1, 3, 2, 3, 2, 5, 5, 5,
+ 5, 5, 5, 2, 5, 5, 5, 5,
+ 3, 3, 3, 2, 2, 5, 5, 5,
+ 5, 5, 5, 5, 5, 5, 1, 6,
+ 5, 5, 5, 5, 5, 5, 5, 1,
+ 6, 1, 5, 5, 1, 8, 7, 7,
+ 7, 7, 7, 7, 7, 1, 5, 5,
+ 5, 5, 1, 6, 1, 5, 5, 5,
+ 5, 5, 5, 1, 6, 1, 5, 5,
+ 5, 1, 6, 5, 5, 5, 5, 5,
+ 5, 1, 6, 1, 5, 5, 5, 5,
+ 5, 5, 1, 6, 1, 5, 5, 5,
+ 1, 6, 1, 1, 6, 5, 1, 6,
+ 5, 5, 5, 5, 5, 2, 5, 5,
+ 3, 3, 3, 3, 3, 3, 3, 2,
+ 1, 3, 2, 3, 2, 5, 5, 5,
+ 5, 5, 5, 2, 5, 5, 5, 5,
+ 3, 3, 3, 2, 2, 5, 5, 5,
+ 5, 5, 5, 5, 5, 5, 1, 6,
+ 5, 5, 5, 5, 5, 5, 5, 1,
+ 6, 5, 5, 1, 8, 7, 7, 7,
+ 7, 7, 7, 7, 1, 5, 5, 5,
+ 5, 1, 6, 5, 5, 5, 5, 5,
+ 5, 1, 6, 5, 5, 5, 1, 6,
+ 5, 5, 5, 5, 5, 5, 1, 6,
+ 5, 5, 5, 5, 5, 5, 1, 6,
+ 5, 5, 5, 1, 6, 5, 5, 5,
+ 5, 5, 5, 5, 1, 6, 1, 2,
+ 0, 2, 6, 5, 1, 6, 5, 1,
+ 5, 5, 5, 5, 2, 5, 5, 3,
+ 3, 3, 3, 3, 3, 3, 2, 1,
+ 3, 2, 3, 2, 5, 5, 5, 5,
+ 5, 5, 2, 5, 5, 5, 5, 3,
+ 3, 3, 2, 2, 5, 5, 5, 5,
+ 5, 5, 5, 5, 5, 1, 6, 5,
+ 5, 5, 5, 5, 5, 5, 1, 6,
+ 1, 5, 5, 1, 8, 7, 7, 7,
+ 7, 7, 7, 7, 1, 5, 5, 5,
+ 5, 1, 6, 1, 5, 5, 5, 5,
+ 5, 5, 1, 6, 1, 5, 5, 5,
+ 1, 6, 5, 5, 5, 5, 5, 5,
+ 1, 6, 1, 5, 5, 5, 5, 5,
+ 5, 1, 6, 1, 5, 5, 5, 1,
+ 6, 1, 5, 5, 5, 5, 5, 5,
+ 5, 1, 6, 1, 5, 5, 5, 5,
+ 5, 5, 5, 1, 6, 1, 5, 5,
+ 5, 1, 6, 1, 5, 5, 5, 5,
+ 5, 5, 5, 1, 6, 1, 5, 5,
+ 5, 5, 5, 5, 1, 6, 1, 5,
+ 5, 5, 1, 6, 1, 5, 5, 5,
+ 5, 5, 5, 5, 1, 6, 1, 5,
+ 5, 5, 1, 6, 5, 5, 5, 5,
+ 5, 5, 1, 6, 1, 5, 5, 5,
+ 5, 5, 5, 1, 6, 1, 5, 5,
+ 5, 1, 6, 1, 5, 5, 5, 5,
+ 5, 5, 5, 1, 6, 1, 5, 5,
+ 5, 5, 5, 5, 1, 6, 1, 5,
+ 5, 5, 1, 6, 5, 5, 5, 5,
+ 5, 5, 1, 6, 1, 5, 5, 5,
+ 5, 5, 5, 1, 6, 1, 5, 5,
+ 5, 1, 6, 1, 5, 5, 5, 5,
+ 5, 5, 5, 1, 6, 1, 5, 5,
+ 1, 8, 7, 7, 7, 7, 7, 7,
+ 7, 1, 5, 5, 5, 5, 1, 6,
+ 5, 5, 5, 5, 5, 5, 1, 6,
+ 5, 5, 5, 1, 6, 5, 5, 5,
+ 5, 5, 5, 1, 6, 5, 5, 5,
+ 5, 5, 5, 1, 6, 5, 5, 5,
+ 1, 6, 1, 5, 5, 5, 5, 5,
+ 5, 5, 1, 6, 4, 4, 4, 4,
+ 4, 4, 4, 0, 5, 4, 4, 4,
+ 0, 5, 2, 2, 2, 1, 6, 5,
+ 1, 6, 5, 5, 5, 5, 5, 2,
+ 5, 5, 3, 3, 3, 3, 3, 3,
+ 3, 2, 1, 3, 2, 3, 2, 5,
+ 5, 5, 5, 5, 5, 2, 5, 5,
+ 5, 5, 3, 3, 3, 2, 2, 5,
+ 5, 5, 5, 5, 5, 5, 5, 5,
+ 1, 6, 5, 5, 5, 5, 5, 5,
+ 5, 1, 6, 5, 5, 1, 8, 7,
+ 7, 7, 7, 7, 7, 7, 1, 5,
+ 5, 5, 5, 1, 6, 5, 5, 5,
+ 5, 5, 5, 1, 6, 5, 5, 5,
+ 1, 6, 5, 5, 5, 5, 5, 5,
+ 1, 6, 5, 5, 5, 5, 5, 5,
+ 1, 6, 5, 5, 5, 1, 6, 1,
+ 5, 5, 5, 5, 5, 5, 5, 1,
+ 6, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0
+};
+
+static const short _thttp_machine_parser_header_Authorization_index_offsets[] = {
+ 0, 0, 5, 8, 11, 14, 17, 20,
+ 23, 26, 29, 32, 35, 38, 41, 45,
+ 53, 55, 57, 65, 69, 73, 77, 81,
+ 85, 112, 126, 132, 159, 175, 190, 203,
+ 208, 215, 220, 224, 230, 237, 244, 251,
+ 255, 261, 269, 272, 276, 279, 283, 286,
+ 290, 294, 297, 301, 304, 308, 311, 319,
+ 327, 334, 341, 348, 355, 359, 364, 372,
+ 380, 388, 391, 395, 399, 402, 405, 421,
+ 437, 453, 469, 485, 501, 517, 531, 537,
+ 552, 565, 581, 597, 613, 629, 645, 659,
+ 665, 680, 687, 692, 696, 714, 728, 734,
+ 751, 766, 781, 796, 811, 826, 841, 856,
+ 861, 877, 893, 909, 923, 929, 944, 951,
+ 956, 960, 976, 992, 1008, 1024, 1040, 1054,
+ 1060, 1075, 1082, 1087, 1091, 1107, 1123, 1137,
+ 1143, 1158, 1171, 1187, 1205, 1221, 1237, 1251,
+ 1257, 1272, 1279, 1284, 1288, 1304, 1320, 1336,
+ 1352, 1368, 1382, 1388, 1403, 1410, 1415, 1419,
+ 1437, 1453, 1467, 1473, 1488, 1495, 1502, 1505,
+ 1510, 1519, 1550, 1568, 1578, 1596, 1613, 1622,
+ 1633, 1645, 1657, 1669, 1678, 1689, 1702, 1710,
+ 1719, 1727, 1736, 1744, 1753, 1762, 1770, 1779,
+ 1787, 1796, 1804, 1817, 1830, 1842, 1854, 1866,
+ 1878, 1887, 1897, 1910, 1923, 1936, 1944, 1953,
+ 1962, 1970, 1978, 1998, 2018, 2038, 2058, 2078,
+ 2098, 2118, 2138, 2156, 2166, 2184, 2201, 2221,
+ 2241, 2261, 2281, 2301, 2319, 2329, 2347, 2356,
+ 2365, 2396, 2414, 2424, 2442, 2459, 2468, 2479,
+ 2491, 2503, 2515, 2524, 2535, 2548, 2556, 2565,
+ 2573, 2582, 2590, 2599, 2608, 2616, 2625, 2633,
+ 2642, 2650, 2663, 2676, 2688, 2700, 2712, 2724,
+ 2733, 2743, 2756, 2769, 2782, 2790, 2799, 2808,
+ 2816, 2824, 2844, 2864, 2884, 2904, 2924, 2944,
+ 2964, 2984, 3002, 3012, 3030, 3047, 3067, 3087,
+ 3107, 3127, 3147, 3165, 3175, 3193, 3202, 3224,
+ 3242, 3252, 3272, 3291, 3310, 3329, 3348, 3367,
+ 3386, 3405, 3414, 3434, 3454, 3474, 3492, 3502,
+ 3520, 3529, 3538, 3569, 3587, 3597, 3615, 3632,
+ 3641, 3652, 3664, 3676, 3688, 3697, 3708, 3721,
+ 3729, 3738, 3746, 3755, 3763, 3772, 3781, 3789,
+ 3798, 3807, 3815, 3824, 3832, 3845, 3858, 3870,
+ 3882, 3894, 3906, 3915, 3925, 3938, 3951, 3964,
+ 3972, 3981, 3990, 3998, 4006, 4026, 4046, 4066,
+ 4086, 4106, 4126, 4146, 4166, 4184, 4194, 4212,
+ 4229, 4249, 4269, 4289, 4309, 4329, 4347, 4357,
+ 4375, 4384, 4406, 4424, 4434, 4454, 4473, 4492,
+ 4511, 4530, 4549, 4568, 4587, 4596, 4616, 4636,
+ 4656, 4674, 4684, 4702, 4711, 4731, 4751, 4771,
+ 4791, 4811, 4829, 4839, 4857, 4866, 4875, 4906,
+ 4924, 4934, 4952, 4969, 4978, 4989, 5001, 5013,
+ 5025, 5034, 5045, 5058, 5066, 5075, 5083, 5092,
+ 5100, 5109, 5118, 5126, 5135, 5144, 5152, 5161,
+ 5169, 5182, 5195, 5207, 5219, 5231, 5243, 5252,
+ 5262, 5275, 5288, 5301, 5309, 5318, 5327, 5335,
+ 5343, 5363, 5383, 5403, 5423, 5443, 5463, 5483,
+ 5503, 5521, 5531, 5549, 5566, 5586, 5606, 5626,
+ 5646, 5666, 5684, 5694, 5712, 5721, 5743, 5761,
+ 5771, 5791, 5810, 5829, 5848, 5867, 5886, 5905,
+ 5924, 5933, 5953, 5973, 5993, 6011, 6021, 6039,
+ 6048, 6068, 6088, 6108, 6128, 6148, 6166, 6176,
+ 6194, 6203, 6223, 6243, 6261, 6271, 6289, 6306,
+ 6326, 6348, 6368, 6388, 6406, 6416, 6434, 6443,
+ 6452, 6483, 6501, 6511, 6529, 6546, 6555, 6566,
+ 6578, 6590, 6602, 6611, 6622, 6635, 6643, 6652,
+ 6660, 6669, 6677, 6686, 6695, 6703, 6712, 6721,
+ 6729, 6738, 6746, 6759, 6772, 6784, 6796, 6808,
+ 6820, 6829, 6839, 6852, 6865, 6878, 6886, 6895,
+ 6904, 6912, 6920, 6940, 6960, 6980, 7000, 7020,
+ 7040, 7060, 7080, 7098, 7108, 7126, 7143, 7163,
+ 7183, 7203, 7223, 7243, 7261, 7271, 7289, 7298,
+ 7320, 7338, 7348, 7368, 7387, 7406, 7425, 7444,
+ 7463, 7482, 7501, 7510, 7530, 7550, 7570, 7588,
+ 7598, 7616, 7625, 7645, 7665, 7685, 7705, 7725,
+ 7743, 7753, 7771, 7780, 7800, 7820, 7838, 7848,
+ 7866, 7883, 7903, 7925, 7945, 7965, 7983, 7993,
+ 8011, 8020, 8040, 8060, 8080, 8100, 8120, 8138,
+ 8148, 8166, 8175, 8184, 8215, 8233, 8243, 8261,
+ 8278, 8287, 8298, 8310, 8322, 8334, 8343, 8354,
+ 8367, 8375, 8384, 8392, 8401, 8409, 8418, 8427,
+ 8435, 8444, 8453, 8461, 8470, 8478, 8491, 8504,
+ 8516, 8528, 8540, 8552, 8561, 8571, 8584, 8597,
+ 8610, 8618, 8627, 8636, 8644, 8652, 8672, 8692,
+ 8712, 8732, 8752, 8772, 8792, 8812, 8830, 8840,
+ 8858, 8875, 8895, 8915, 8935, 8955, 8975, 8993,
+ 9003, 9021, 9030, 9052, 9070, 9080, 9100, 9119,
+ 9138, 9157, 9176, 9195, 9214, 9233, 9242, 9262,
+ 9282, 9302, 9320, 9330, 9348, 9357, 9377, 9397,
+ 9417, 9437, 9457, 9475, 9485, 9503, 9512, 9532,
+ 9552, 9570, 9580, 9598, 9615, 9635, 9657, 9677,
+ 9697, 9715, 9725, 9743, 9752, 9772, 9792, 9812,
+ 9832, 9852, 9870, 9880, 9898, 9907, 9929, 9949,
+ 9967, 9977, 9995, 10004, 10013, 10044, 10062, 10072,
+ 10090, 10107, 10118, 10130, 10142, 10154, 10163, 10174,
+ 10187, 10195, 10204, 10212, 10221, 10229, 10238, 10247,
+ 10255, 10264, 10273, 10281, 10290, 10298, 10311, 10324,
+ 10336, 10348, 10360, 10372, 10381, 10391, 10404, 10417,
+ 10430, 10438, 10447, 10456, 10464, 10472, 10492, 10512,
+ 10532, 10552, 10572, 10592, 10612, 10632, 10650, 10660,
+ 10678, 10695, 10715, 10735, 10755, 10775, 10795, 10813,
+ 10823, 10841, 10863, 10881, 10891, 10911, 10930, 10949,
+ 10968, 10987, 11006, 11025, 11044, 11053, 11073, 11093,
+ 11113, 11131, 11141, 11159, 11179, 11199, 11219, 11239,
+ 11259, 11277, 11287, 11305, 11325, 11345, 11363, 11373,
+ 11391, 11408, 11428, 11450, 11470, 11490, 11508, 11518,
+ 11536, 11556, 11576, 11596, 11616, 11636, 11654, 11664,
+ 11682, 11704, 11724, 11742, 11752, 11770, 11790, 11810,
+ 11830, 11850, 11870, 11890, 11908, 11918, 11936, 11945,
+ 11952, 11957, 11961, 11992, 12010, 12020, 12038, 12055,
+ 12064, 12075, 12087, 12099, 12111, 12120, 12131, 12144,
+ 12152, 12161, 12169, 12178, 12186, 12195, 12204, 12212,
+ 12221, 12230, 12238, 12247, 12255, 12268, 12281, 12293,
+ 12305, 12317, 12329, 12338, 12348, 12361, 12374, 12387,
+ 12395, 12404, 12413, 12421, 12429, 12449, 12469, 12489,
+ 12509, 12529, 12549, 12569, 12589, 12607, 12617, 12635,
+ 12652, 12672, 12692, 12712, 12732, 12752, 12770, 12780,
+ 12798, 12807, 12829, 12847, 12857, 12877, 12896, 12915,
+ 12934, 12953, 12972, 12991, 13010, 13019, 13039, 13059,
+ 13079, 13097, 13107, 13125, 13134, 13154, 13174, 13194,
+ 13214, 13234, 13252, 13262, 13280, 13289, 13309, 13329,
+ 13347, 13357, 13375, 13392, 13412, 13434, 13454, 13474,
+ 13492, 13502, 13520, 13529, 13549, 13569, 13589, 13609,
+ 13629, 13647, 13657, 13675, 13684, 13706, 13726, 13744,
+ 13754, 13772, 13781, 13801, 13821, 13841, 13861, 13881,
+ 13901, 13919, 13929, 13947, 13956, 13976, 13996, 14016,
+ 14036, 14056, 14076, 14094, 14104, 14122, 14131, 14153,
+ 14173, 14191, 14201, 14219, 14228, 14248, 14268, 14288,
+ 14308, 14328, 14348, 14366, 14376, 14394, 14403, 14423,
+ 14443, 14463, 14483, 14503, 14521, 14531, 14549, 14558,
+ 14580, 14600, 14618, 14628, 14646, 14655, 14675, 14695,
+ 14715, 14735, 14755, 14775, 14793, 14803, 14821, 14830,
+ 14850, 14870, 14888, 14898, 14916, 14933, 14953, 14975,
+ 14995, 15015, 15033, 15043, 15061, 15070, 15090, 15110,
+ 15130, 15150, 15170, 15188, 15198, 15216, 15225, 15247,
+ 15267, 15285, 15295, 15313, 15322, 15342, 15362, 15382,
+ 15402, 15422, 15442, 15460, 15470, 15488, 15497, 15517,
+ 15537, 15557, 15577, 15597, 15615, 15625, 15643, 15652,
+ 15672, 15692, 15710, 15720, 15738, 15755, 15775, 15797,
+ 15817, 15837, 15855, 15865, 15883, 15892, 15912, 15932,
+ 15952, 15972, 15992, 16010, 16020, 16038, 16047, 16069,
+ 16089, 16107, 16117, 16135, 16144, 16164, 16184, 16204,
+ 16224, 16244, 16264, 16282, 16292, 16310, 16319, 16341,
+ 16359, 16369, 16389, 16408, 16427, 16446, 16465, 16484,
+ 16503, 16522, 16531, 16551, 16571, 16591, 16609, 16619,
+ 16637, 16657, 16677, 16697, 16717, 16737, 16755, 16765,
+ 16783, 16803, 16823, 16841, 16851, 16869, 16886, 16906,
+ 16928, 16948, 16968, 16986, 16996, 17014, 17034, 17054,
+ 17074, 17094, 17114, 17132, 17142, 17160, 17182, 17202,
+ 17220, 17230, 17248, 17257, 17277, 17297, 17317, 17337,
+ 17357, 17377, 17395, 17405, 17423, 17439, 17455, 17471,
+ 17487, 17503, 17519, 17533, 17539, 17554, 17572, 17588,
+ 17602, 17608, 17623, 17630, 17637, 17642, 17651, 17682,
+ 17700, 17710, 17728, 17745, 17756, 17768, 17780, 17792,
+ 17801, 17812, 17825, 17833, 17842, 17850, 17859, 17867,
+ 17876, 17885, 17893, 17902, 17911, 17919, 17928, 17936,
+ 17949, 17962, 17974, 17986, 17998, 18010, 18019, 18029,
+ 18042, 18055, 18068, 18076, 18085, 18094, 18102, 18110,
+ 18130, 18150, 18170, 18190, 18210, 18230, 18250, 18270,
+ 18288, 18298, 18316, 18333, 18353, 18373, 18393, 18413,
+ 18433, 18451, 18461, 18479, 18501, 18519, 18529, 18549,
+ 18568, 18587, 18606, 18625, 18644, 18663, 18682, 18691,
+ 18711, 18731, 18751, 18769, 18779, 18797, 18817, 18837,
+ 18857, 18877, 18897, 18915, 18925, 18943, 18963, 18983,
+ 19001, 19011, 19029, 19046, 19066, 19088, 19108, 19128,
+ 19146, 19156, 19174, 19194, 19214, 19234, 19254, 19274,
+ 19292, 19302, 19320, 19342, 19362, 19380, 19390, 19408,
+ 19417, 19437, 19457, 19477, 19497, 19517, 19537, 19555,
+ 19565, 19583, 19587, 19591, 19595, 19599, 19603, 19607,
+ 19610, 19614, 19617, 19620, 19623, 19626, 19628, 19631
+};
+
+static const short _thttp_machine_parser_header_Authorization_indicies[] = {
+ 0, 2, 0, 2, 1, 3, 3, 1,
+ 4, 4, 1, 5, 5, 1, 6, 6,
+ 1, 7, 7, 1, 8, 8, 1, 9,
+ 9, 1, 10, 10, 1, 11, 11, 1,
+ 12, 12, 1, 13, 13, 1, 14, 14,
+ 1, 14, 14, 15, 1, 17, 18, 17,
+ 19, 20, 19, 20, 16, 21, 16, 22,
+ 1, 17, 21, 17, 19, 20, 19, 20,
+ 16, 21, 23, 23, 16, 21, 24, 24,
+ 16, 21, 25, 25, 16, 21, 26, 26,
+ 16, 27, 21, 27, 16, 28, 21, 28,
+ 29, 29, 29, 30, 31, 32, 33, 34,
+ 35, 36, 30, 31, 32, 33, 34, 35,
+ 36, 29, 29, 29, 29, 29, 29, 16,
+ 37, 38, 37, 39, 39, 39, 40, 41,
+ 39, 39, 39, 39, 39, 16, 42, 21,
+ 42, 43, 41, 16, 43, 21, 43, 29,
+ 29, 29, 30, 31, 32, 33, 34, 35,
+ 44, 30, 31, 32, 33, 34, 35, 44,
+ 29, 29, 29, 29, 29, 29, 16, 37,
+ 38, 37, 39, 39, 39, 40, 41, 45,
+ 45, 39, 39, 39, 39, 39, 16, 41,
+ 21, 41, 46, 47, 46, 46, 48, 46,
+ 46, 46, 46, 46, 46, 16, 49, 38,
+ 49, 46, 46, 46, 40, 46, 46, 46,
+ 46, 46, 16, 50, 21, 50, 43, 16,
+ 21, 51, 52, 16, 16, 16, 47, 49,
+ 38, 49, 40, 16, 21, 47, 47, 16,
+ 21, 54, 53, 53, 53, 16, 21, 56,
+ 51, 55, 55, 55, 16, 21, 56, 51,
+ 57, 57, 57, 16, 21, 56, 51, 58,
+ 58, 58, 16, 21, 56, 51, 16, 21,
+ 60, 59, 53, 53, 16, 21, 61, 56,
+ 51, 62, 55, 55, 16, 21, 63, 16,
+ 21, 64, 65, 16, 21, 66, 16, 21,
+ 67, 68, 16, 21, 69, 16, 21, 51,
+ 70, 16, 21, 51, 71, 16, 21, 51,
+ 16, 21, 67, 72, 16, 21, 67, 16,
+ 21, 64, 73, 16, 21, 64, 16, 21,
+ 61, 56, 51, 74, 57, 57, 16, 21,
+ 61, 56, 51, 58, 58, 58, 16, 21,
+ 76, 51, 75, 75, 75, 16, 21, 78,
+ 51, 77, 77, 77, 16, 21, 78, 51,
+ 79, 79, 79, 16, 21, 78, 51, 80,
+ 80, 80, 16, 21, 78, 51, 16, 21,
+ 81, 75, 75, 16, 21, 61, 78, 51,
+ 82, 77, 77, 16, 21, 61, 78, 51,
+ 83, 79, 79, 16, 21, 61, 78, 51,
+ 80, 80, 80, 16, 21, 84, 16, 21,
+ 61, 85, 16, 21, 61, 86, 16, 21,
+ 61, 16, 21, 60, 16, 37, 38, 37,
+ 39, 39, 39, 40, 41, 87, 87, 39,
+ 39, 39, 39, 39, 16, 37, 38, 37,
+ 39, 39, 39, 40, 41, 88, 88, 39,
+ 39, 39, 39, 39, 16, 37, 38, 37,
+ 39, 39, 39, 40, 41, 89, 89, 39,
+ 39, 39, 39, 39, 16, 37, 38, 37,
+ 39, 39, 39, 40, 41, 90, 90, 39,
+ 39, 39, 39, 39, 16, 37, 38, 37,
+ 39, 39, 39, 40, 41, 91, 91, 39,
+ 39, 39, 39, 39, 16, 37, 38, 37,
+ 39, 39, 39, 40, 41, 92, 92, 39,
+ 39, 39, 39, 39, 16, 37, 38, 37,
+ 39, 39, 39, 40, 41, 93, 93, 39,
+ 39, 39, 39, 39, 16, 94, 38, 94,
+ 39, 39, 39, 40, 95, 39, 39, 39,
+ 39, 39, 16, 96, 21, 96, 43, 95,
+ 16, 95, 21, 95, 97, 47, 97, 97,
+ 48, 97, 97, 97, 97, 97, 97, 16,
+ 98, 99, 98, 100, 100, 100, 101, 100,
+ 100, 100, 100, 100, 16, 37, 38, 37,
+ 39, 39, 39, 40, 41, 102, 102, 39,
+ 39, 39, 39, 39, 16, 37, 38, 37,
+ 39, 39, 39, 40, 41, 103, 103, 39,
+ 39, 39, 39, 39, 16, 37, 38, 37,
+ 39, 39, 39, 40, 41, 104, 104, 39,
+ 39, 39, 39, 39, 16, 37, 38, 37,
+ 39, 39, 39, 40, 41, 105, 105, 39,
+ 39, 39, 39, 39, 16, 37, 38, 37,
+ 39, 39, 39, 40, 41, 106, 106, 39,
+ 39, 39, 39, 39, 16, 107, 38, 107,
+ 39, 39, 39, 40, 108, 39, 39, 39,
+ 39, 39, 16, 109, 21, 109, 43, 108,
+ 16, 110, 21, 110, 46, 111, 46, 46,
+ 48, 46, 46, 46, 46, 46, 46, 16,
+ 21, 113, 114, 16, 16, 16, 112, 115,
+ 116, 115, 117, 16, 21, 112, 112, 16,
+ 37, 38, 37, 39, 39, 39, 40, 41,
+ 118, 119, 118, 119, 39, 39, 39, 39,
+ 39, 16, 120, 38, 120, 39, 39, 39,
+ 40, 121, 39, 39, 39, 39, 39, 16,
+ 122, 21, 122, 43, 121, 16, 121, 21,
+ 121, 46, 47, 46, 46, 48, 46, 46,
+ 46, 123, 46, 46, 123, 46, 16, 49,
+ 38, 49, 46, 46, 46, 40, 46, 46,
+ 124, 46, 46, 124, 46, 16, 49, 38,
+ 49, 46, 46, 46, 40, 46, 46, 125,
+ 46, 46, 125, 46, 16, 49, 38, 49,
+ 46, 46, 46, 40, 46, 46, 126, 46,
+ 46, 126, 46, 16, 49, 38, 49, 46,
+ 46, 46, 40, 46, 46, 127, 46, 46,
+ 127, 46, 16, 49, 38, 49, 46, 46,
+ 46, 40, 46, 46, 128, 46, 46, 128,
+ 46, 16, 49, 38, 49, 46, 46, 46,
+ 40, 46, 46, 129, 46, 46, 129, 46,
+ 16, 49, 38, 49, 46, 46, 46, 40,
+ 46, 46, 130, 46, 46, 130, 46, 16,
+ 131, 132, 131, 133, 16, 37, 38, 37,
+ 39, 39, 39, 40, 41, 134, 134, 39,
+ 39, 39, 39, 39, 16, 37, 38, 37,
+ 39, 39, 39, 40, 41, 135, 135, 39,
+ 39, 39, 39, 39, 16, 37, 38, 37,
+ 39, 39, 39, 40, 41, 136, 136, 39,
+ 39, 39, 39, 39, 16, 137, 38, 137,
+ 39, 39, 39, 40, 138, 39, 39, 39,
+ 39, 39, 16, 139, 21, 139, 43, 138,
+ 16, 140, 21, 140, 46, 141, 46, 46,
+ 48, 46, 46, 46, 46, 46, 46, 16,
+ 21, 143, 144, 16, 16, 16, 142, 145,
+ 146, 145, 147, 16, 21, 142, 142, 16,
+ 37, 38, 37, 39, 39, 39, 40, 41,
+ 148, 148, 39, 39, 39, 39, 39, 16,
+ 37, 38, 37, 39, 39, 39, 40, 41,
+ 149, 149, 39, 39, 39, 39, 39, 16,
+ 37, 38, 37, 39, 39, 39, 40, 41,
+ 150, 150, 39, 39, 39, 39, 39, 16,
+ 37, 38, 37, 39, 39, 39, 40, 41,
+ 151, 151, 39, 39, 39, 39, 39, 16,
+ 37, 38, 37, 39, 39, 39, 40, 41,
+ 152, 152, 39, 39, 39, 39, 39, 16,
+ 153, 38, 153, 39, 39, 39, 40, 154,
+ 39, 39, 39, 39, 39, 16, 155, 21,
+ 155, 43, 154, 16, 156, 21, 156, 46,
+ 157, 46, 46, 48, 46, 46, 46, 46,
+ 46, 46, 16, 21, 159, 160, 16, 16,
+ 16, 158, 161, 162, 161, 163, 16, 21,
+ 158, 158, 16, 37, 38, 37, 39, 39,
+ 39, 40, 41, 164, 164, 39, 39, 39,
+ 39, 39, 16, 37, 38, 37, 39, 39,
+ 39, 40, 41, 165, 165, 39, 39, 39,
+ 39, 39, 16, 166, 38, 166, 39, 39,
+ 39, 40, 167, 39, 39, 39, 39, 39,
+ 16, 168, 21, 168, 43, 167, 16, 167,
+ 21, 167, 169, 47, 169, 169, 48, 169,
+ 169, 169, 169, 169, 169, 16, 170, 171,
+ 170, 172, 172, 172, 173, 172, 172, 172,
+ 172, 172, 16, 37, 38, 37, 39, 39,
+ 39, 40, 41, 174, 174, 39, 39, 39,
+ 39, 39, 16, 37, 38, 37, 39, 39,
+ 39, 40, 41, 175, 176, 175, 176, 39,
+ 39, 39, 39, 39, 16, 37, 38, 37,
+ 39, 39, 39, 40, 41, 177, 177, 39,
+ 39, 39, 39, 39, 16, 37, 38, 37,
+ 39, 39, 39, 40, 41, 178, 178, 39,
+ 39, 39, 39, 39, 16, 179, 38, 179,
+ 39, 39, 39, 40, 180, 39, 39, 39,
+ 39, 39, 16, 181, 21, 181, 43, 180,
+ 16, 182, 21, 182, 46, 183, 46, 46,
+ 48, 46, 46, 46, 46, 46, 46, 16,
+ 21, 185, 186, 16, 16, 16, 184, 187,
+ 188, 187, 189, 16, 21, 184, 184, 16,
+ 37, 38, 37, 39, 39, 39, 40, 41,
+ 190, 190, 39, 39, 39, 39, 39, 16,
+ 37, 38, 37, 39, 39, 39, 40, 41,
+ 191, 191, 39, 39, 39, 39, 39, 16,
+ 37, 38, 37, 39, 39, 39, 40, 41,
+ 192, 192, 39, 39, 39, 39, 39, 16,
+ 37, 38, 37, 39, 39, 39, 40, 41,
+ 193, 193, 39, 39, 39, 39, 39, 16,
+ 37, 38, 37, 39, 39, 39, 40, 41,
+ 194, 194, 39, 39, 39, 39, 39, 16,
+ 195, 38, 195, 39, 39, 39, 40, 196,
+ 39, 39, 39, 39, 39, 16, 197, 21,
+ 197, 43, 196, 16, 198, 21, 198, 46,
+ 199, 46, 46, 48, 46, 46, 46, 46,
+ 46, 46, 16, 21, 201, 202, 16, 16,
+ 16, 200, 203, 204, 203, 205, 16, 21,
+ 200, 200, 16, 37, 38, 37, 39, 39,
+ 39, 40, 41, 206, 207, 206, 207, 39,
+ 39, 39, 39, 39, 16, 37, 38, 37,
+ 39, 39, 39, 40, 41, 208, 208, 39,
+ 39, 39, 39, 39, 16, 209, 38, 209,
+ 39, 39, 39, 40, 210, 39, 39, 39,
+ 39, 39, 16, 211, 21, 211, 43, 210,
+ 16, 210, 21, 210, 46, 212, 46, 46,
+ 48, 46, 46, 46, 46, 46, 46, 16,
+ 21, 215, 216, 214, 214, 214, 213, 21,
+ 219, 220, 218, 218, 218, 217, 21, 219,
+ 218, 21, 221, 217, 217, 218, 222, 21,
+ 222, 51, 223, 52, 16, 16, 47, 223,
+ 21, 223, 224, 51, 224, 224, 225, 226,
+ 227, 228, 229, 230, 231, 52, 225, 226,
+ 227, 228, 229, 230, 231, 224, 16, 16,
+ 224, 224, 224, 224, 224, 47, 232, 38,
+ 232, 233, 51, 233, 233, 234, 235, 52,
+ 233, 16, 16, 233, 233, 233, 233, 47,
+ 236, 21, 236, 51, 223, 235, 52, 16,
+ 16, 47, 235, 21, 235, 237, 238, 237,
+ 237, 239, 52, 237, 16, 16, 237, 237,
+ 237, 237, 237, 47, 240, 38, 240, 237,
+ 51, 237, 237, 234, 52, 237, 16, 16,
+ 237, 237, 237, 237, 47, 240, 38, 240,
+ 51, 234, 52, 16, 16, 47, 21, 51,
+ 242, 52, 16, 16, 16, 241, 241, 241,
+ 47, 21, 51, 244, 52, 238, 16, 16,
+ 16, 243, 243, 243, 47, 21, 51, 244,
+ 52, 238, 16, 16, 16, 245, 245, 245,
+ 47, 21, 51, 244, 52, 238, 16, 16,
+ 16, 246, 246, 246, 47, 21, 51, 244,
+ 52, 238, 16, 16, 16, 47, 21, 51,
+ 248, 52, 16, 16, 16, 247, 241, 241,
+ 47, 21, 51, 249, 244, 52, 238, 16,
+ 16, 16, 250, 243, 243, 47, 21, 51,
+ 52, 16, 16, 16, 251, 47, 21, 51,
+ 252, 52, 16, 16, 16, 253, 47, 21,
+ 51, 52, 16, 16, 16, 254, 47, 21,
+ 51, 255, 52, 16, 16, 16, 256, 47,
+ 21, 51, 52, 16, 16, 16, 257, 47,
+ 21, 51, 52, 238, 16, 16, 16, 258,
+ 47, 21, 51, 52, 238, 16, 16, 16,
+ 259, 47, 21, 51, 52, 238, 16, 16,
+ 16, 47, 21, 51, 255, 52, 16, 16,
+ 16, 260, 47, 21, 51, 255, 52, 16,
+ 16, 16, 47, 21, 51, 252, 52, 16,
+ 16, 16, 261, 47, 21, 51, 252, 52,
+ 16, 16, 16, 47, 21, 51, 249, 244,
+ 52, 238, 16, 16, 16, 262, 245, 245,
+ 47, 21, 51, 249, 244, 52, 238, 16,
+ 16, 16, 246, 246, 246, 47, 21, 51,
+ 264, 52, 238, 16, 16, 16, 263, 263,
+ 263, 47, 21, 51, 266, 52, 238, 16,
+ 16, 16, 265, 265, 265, 47, 21, 51,
+ 266, 52, 238, 16, 16, 16, 267, 267,
+ 267, 47, 21, 51, 266, 52, 238, 16,
+ 16, 16, 268, 268, 268, 47, 21, 51,
+ 266, 52, 238, 16, 16, 16, 47, 21,
+ 51, 52, 16, 16, 16, 269, 263, 263,
+ 47, 21, 51, 249, 266, 52, 238, 16,
+ 16, 16, 270, 265, 265, 47, 21, 51,
+ 249, 266, 52, 238, 16, 16, 16, 271,
+ 267, 267, 47, 21, 51, 249, 266, 52,
+ 238, 16, 16, 16, 268, 268, 268, 47,
+ 21, 51, 52, 16, 16, 16, 272, 47,
+ 21, 51, 249, 52, 16, 16, 16, 273,
+ 47, 21, 51, 249, 52, 16, 16, 16,
+ 274, 47, 21, 51, 249, 52, 16, 16,
+ 16, 47, 21, 51, 248, 52, 16, 16,
+ 16, 47, 232, 38, 232, 233, 51, 233,
+ 233, 234, 235, 275, 52, 275, 233, 16,
+ 16, 233, 233, 233, 233, 47, 232, 38,
+ 232, 233, 51, 233, 233, 234, 235, 276,
+ 52, 276, 233, 16, 16, 233, 233, 233,
+ 233, 47, 232, 38, 232, 233, 51, 233,
+ 233, 234, 235, 277, 52, 277, 233, 16,
+ 16, 233, 233, 233, 233, 47, 232, 38,
+ 232, 233, 51, 233, 233, 234, 235, 278,
+ 52, 278, 233, 16, 16, 233, 233, 233,
+ 233, 47, 232, 38, 232, 233, 51, 233,
+ 233, 234, 235, 279, 52, 279, 233, 16,
+ 16, 233, 233, 233, 233, 47, 232, 38,
+ 232, 233, 51, 233, 233, 234, 235, 280,
+ 52, 280, 233, 16, 16, 233, 233, 233,
+ 233, 47, 232, 38, 232, 233, 51, 233,
+ 233, 234, 235, 281, 52, 281, 233, 16,
+ 16, 233, 233, 233, 233, 47, 232, 38,
+ 232, 233, 51, 233, 233, 234, 235, 282,
+ 52, 282, 233, 16, 16, 233, 233, 233,
+ 233, 47, 283, 38, 283, 233, 51, 233,
+ 233, 234, 284, 52, 233, 16, 16, 233,
+ 233, 233, 233, 47, 285, 21, 285, 51,
+ 223, 284, 52, 16, 16, 47, 284, 21,
+ 284, 286, 238, 286, 286, 239, 52, 286,
+ 16, 16, 286, 286, 286, 286, 286, 47,
+ 287, 99, 287, 288, 51, 288, 288, 289,
+ 52, 288, 16, 16, 288, 288, 288, 288,
+ 47, 232, 38, 232, 233, 51, 233, 233,
+ 234, 235, 290, 52, 290, 233, 16, 16,
+ 233, 233, 233, 233, 47, 232, 38, 232,
+ 233, 51, 233, 233, 234, 235, 291, 52,
+ 291, 233, 16, 16, 233, 233, 233, 233,
+ 47, 232, 38, 232, 233, 51, 233, 233,
+ 234, 235, 292, 52, 292, 233, 16, 16,
+ 233, 233, 233, 233, 47, 232, 38, 232,
+ 233, 51, 233, 233, 234, 235, 293, 52,
+ 293, 233, 16, 16, 233, 233, 233, 233,
+ 47, 232, 38, 232, 233, 51, 233, 233,
+ 234, 235, 294, 52, 294, 233, 16, 16,
+ 233, 233, 233, 233, 47, 295, 38, 295,
+ 233, 51, 233, 233, 234, 296, 52, 233,
+ 16, 16, 233, 233, 233, 233, 47, 297,
+ 21, 297, 51, 223, 296, 52, 16, 16,
+ 47, 298, 21, 298, 237, 299, 237, 237,
+ 239, 52, 237, 16, 16, 237, 237, 237,
+ 237, 237, 47, 300, 38, 300, 113, 301,
+ 114, 16, 16, 112, 302, 21, 302, 113,
+ 303, 114, 16, 16, 112, 303, 21, 303,
+ 304, 113, 304, 304, 305, 306, 307, 308,
+ 309, 310, 311, 114, 305, 306, 307, 308,
+ 309, 310, 311, 304, 16, 16, 304, 304,
+ 304, 304, 304, 112, 312, 38, 312, 313,
+ 113, 313, 313, 301, 314, 114, 313, 16,
+ 16, 313, 313, 313, 313, 112, 315, 21,
+ 315, 113, 303, 314, 114, 16, 16, 112,
+ 314, 21, 314, 316, 317, 316, 316, 318,
+ 114, 316, 16, 16, 316, 316, 316, 316,
+ 316, 112, 300, 38, 300, 316, 113, 316,
+ 316, 301, 114, 316, 16, 16, 316, 316,
+ 316, 316, 112, 319, 116, 319, 51, 320,
+ 52, 16, 16, 47, 21, 113, 322, 114,
+ 16, 16, 16, 321, 321, 321, 112, 21,
+ 113, 324, 114, 325, 16, 16, 16, 323,
+ 323, 323, 112, 21, 113, 324, 114, 325,
+ 16, 16, 16, 326, 326, 326, 112, 21,
+ 113, 324, 114, 325, 16, 16, 16, 327,
+ 327, 327, 112, 21, 113, 324, 114, 325,
+ 16, 16, 16, 112, 21, 113, 329, 114,
+ 16, 16, 16, 328, 321, 321, 112, 21,
+ 113, 330, 324, 114, 325, 16, 16, 16,
+ 331, 323, 323, 112, 21, 113, 114, 16,
+ 16, 16, 332, 112, 21, 113, 333, 114,
+ 16, 16, 16, 334, 112, 21, 113, 114,
+ 16, 16, 16, 335, 112, 21, 113, 336,
+ 114, 16, 16, 16, 337, 112, 21, 113,
+ 114, 16, 16, 16, 338, 112, 21, 113,
+ 114, 325, 16, 16, 16, 339, 112, 21,
+ 113, 114, 325, 16, 16, 16, 340, 112,
+ 21, 113, 114, 325, 16, 16, 16, 112,
+ 21, 113, 336, 114, 16, 16, 16, 341,
+ 112, 21, 113, 336, 114, 16, 16, 16,
+ 112, 21, 113, 333, 114, 16, 16, 16,
+ 342, 112, 21, 113, 333, 114, 16, 16,
+ 16, 112, 21, 113, 330, 324, 114, 325,
+ 16, 16, 16, 343, 326, 326, 112, 21,
+ 113, 330, 324, 114, 325, 16, 16, 16,
+ 327, 327, 327, 112, 21, 113, 345, 114,
+ 325, 16, 16, 16, 344, 344, 344, 112,
+ 21, 113, 347, 114, 325, 16, 16, 16,
+ 346, 346, 346, 112, 21, 113, 347, 114,
+ 325, 16, 16, 16, 348, 348, 348, 112,
+ 21, 113, 347, 114, 325, 16, 16, 16,
+ 349, 349, 349, 112, 21, 113, 347, 114,
+ 325, 16, 16, 16, 112, 21, 113, 114,
+ 16, 16, 16, 350, 344, 344, 112, 21,
+ 113, 330, 347, 114, 325, 16, 16, 16,
+ 351, 346, 346, 112, 21, 113, 330, 347,
+ 114, 325, 16, 16, 16, 352, 348, 348,
+ 112, 21, 113, 330, 347, 114, 325, 16,
+ 16, 16, 349, 349, 349, 112, 21, 113,
+ 114, 16, 16, 16, 353, 112, 21, 113,
+ 330, 114, 16, 16, 16, 354, 112, 21,
+ 113, 330, 114, 16, 16, 16, 355, 112,
+ 21, 113, 330, 114, 16, 16, 16, 112,
+ 21, 113, 329, 114, 16, 16, 16, 112,
+ 312, 38, 312, 313, 113, 313, 313, 301,
+ 314, 356, 114, 356, 313, 16, 16, 313,
+ 313, 313, 313, 112, 312, 38, 312, 313,
+ 113, 313, 313, 301, 314, 357, 114, 357,
+ 313, 16, 16, 313, 313, 313, 313, 112,
+ 312, 38, 312, 313, 113, 313, 313, 301,
+ 314, 358, 114, 358, 313, 16, 16, 313,
+ 313, 313, 313, 112, 312, 38, 312, 313,
+ 113, 313, 313, 301, 314, 359, 114, 359,
+ 313, 16, 16, 313, 313, 313, 313, 112,
+ 312, 38, 312, 313, 113, 313, 313, 301,
+ 314, 360, 114, 360, 313, 16, 16, 313,
+ 313, 313, 313, 112, 312, 38, 312, 313,
+ 113, 313, 313, 301, 314, 361, 114, 361,
+ 313, 16, 16, 313, 313, 313, 313, 112,
+ 312, 38, 312, 313, 113, 313, 313, 301,
+ 314, 362, 114, 362, 313, 16, 16, 313,
+ 313, 313, 313, 112, 312, 38, 312, 313,
+ 113, 313, 313, 301, 314, 363, 114, 363,
+ 313, 16, 16, 313, 313, 313, 313, 112,
+ 364, 38, 364, 313, 113, 313, 313, 301,
+ 365, 114, 313, 16, 16, 313, 313, 313,
+ 313, 112, 366, 21, 366, 113, 303, 365,
+ 114, 16, 16, 112, 365, 21, 365, 367,
+ 317, 367, 367, 318, 114, 367, 16, 16,
+ 367, 367, 367, 367, 367, 112, 368, 99,
+ 368, 369, 113, 369, 369, 370, 114, 369,
+ 16, 16, 369, 369, 369, 369, 112, 312,
+ 38, 312, 313, 113, 313, 313, 301, 314,
+ 371, 114, 371, 313, 16, 16, 313, 313,
+ 313, 313, 112, 312, 38, 312, 313, 113,
+ 313, 313, 301, 314, 372, 114, 372, 313,
+ 16, 16, 313, 313, 313, 313, 112, 312,
+ 38, 312, 313, 113, 313, 313, 301, 314,
+ 373, 114, 373, 313, 16, 16, 313, 313,
+ 313, 313, 112, 312, 38, 312, 313, 113,
+ 313, 313, 301, 314, 374, 114, 374, 313,
+ 16, 16, 313, 313, 313, 313, 112, 312,
+ 38, 312, 313, 113, 313, 313, 301, 314,
+ 375, 114, 375, 313, 16, 16, 313, 313,
+ 313, 313, 112, 376, 38, 376, 313, 113,
+ 313, 313, 301, 377, 114, 313, 16, 16,
+ 313, 313, 313, 313, 112, 378, 21, 378,
+ 113, 303, 377, 114, 16, 16, 112, 379,
+ 21, 379, 316, 380, 316, 316, 318, 114,
+ 316, 16, 16, 316, 316, 316, 316, 316,
+ 112, 381, 116, 381, 113, 382, 114, 16,
+ 16, 112, 312, 38, 312, 313, 113, 313,
+ 313, 301, 314, 383, 384, 114, 383, 384,
+ 313, 16, 16, 313, 313, 313, 313, 112,
+ 385, 38, 385, 313, 113, 313, 313, 301,
+ 386, 114, 313, 16, 16, 313, 313, 313,
+ 313, 112, 387, 21, 387, 113, 303, 386,
+ 114, 16, 16, 112, 386, 21, 386, 316,
+ 317, 316, 316, 318, 114, 316, 16, 16,
+ 316, 316, 388, 316, 316, 388, 316, 112,
+ 300, 38, 300, 316, 113, 316, 316, 301,
+ 114, 316, 16, 16, 316, 389, 316, 316,
+ 389, 316, 112, 300, 38, 300, 316, 113,
+ 316, 316, 301, 114, 316, 16, 16, 316,
+ 390, 316, 316, 390, 316, 112, 300, 38,
+ 300, 316, 113, 316, 316, 301, 114, 316,
+ 16, 16, 316, 391, 316, 316, 391, 316,
+ 112, 300, 38, 300, 316, 113, 316, 316,
+ 301, 114, 316, 16, 16, 316, 392, 316,
+ 316, 392, 316, 112, 300, 38, 300, 316,
+ 113, 316, 316, 301, 114, 316, 16, 16,
+ 316, 393, 316, 316, 393, 316, 112, 300,
+ 38, 300, 316, 113, 316, 316, 301, 114,
+ 316, 16, 16, 316, 394, 316, 316, 394,
+ 316, 112, 300, 38, 300, 316, 113, 316,
+ 316, 301, 114, 316, 16, 16, 316, 395,
+ 316, 316, 395, 316, 112, 396, 132, 396,
+ 113, 397, 114, 16, 16, 112, 312, 38,
+ 312, 313, 113, 313, 313, 301, 314, 398,
+ 114, 398, 313, 16, 16, 313, 313, 313,
+ 313, 112, 312, 38, 312, 313, 113, 313,
+ 313, 301, 314, 399, 114, 399, 313, 16,
+ 16, 313, 313, 313, 313, 112, 312, 38,
+ 312, 313, 113, 313, 313, 301, 314, 400,
+ 114, 400, 313, 16, 16, 313, 313, 313,
+ 313, 112, 401, 38, 401, 313, 113, 313,
+ 313, 301, 402, 114, 313, 16, 16, 313,
+ 313, 313, 313, 112, 403, 21, 403, 113,
+ 303, 402, 114, 16, 16, 112, 404, 21,
+ 404, 316, 405, 316, 316, 318, 114, 316,
+ 16, 16, 316, 316, 316, 316, 316, 112,
+ 406, 116, 406, 143, 407, 144, 16, 16,
+ 142, 408, 21, 408, 143, 409, 144, 16,
+ 16, 142, 409, 21, 409, 410, 143, 410,
+ 410, 411, 412, 413, 414, 415, 416, 417,
+ 144, 411, 412, 413, 414, 415, 416, 417,
+ 410, 16, 16, 410, 410, 410, 410, 410,
+ 142, 418, 38, 418, 419, 143, 419, 419,
+ 420, 421, 144, 419, 16, 16, 419, 419,
+ 419, 419, 142, 422, 21, 422, 143, 409,
+ 421, 144, 16, 16, 142, 421, 21, 421,
+ 423, 424, 423, 423, 425, 144, 423, 16,
+ 16, 423, 423, 423, 423, 423, 142, 426,
+ 38, 426, 423, 143, 423, 423, 420, 144,
+ 423, 16, 16, 423, 423, 423, 423, 142,
+ 427, 146, 427, 51, 428, 52, 16, 16,
+ 47, 21, 143, 430, 144, 16, 16, 16,
+ 429, 429, 429, 142, 21, 143, 432, 144,
+ 433, 16, 16, 16, 431, 431, 431, 142,
+ 21, 143, 432, 144, 433, 16, 16, 16,
+ 434, 434, 434, 142, 21, 143, 432, 144,
+ 433, 16, 16, 16, 435, 435, 435, 142,
+ 21, 143, 432, 144, 433, 16, 16, 16,
+ 142, 21, 143, 437, 144, 16, 16, 16,
+ 436, 429, 429, 142, 21, 143, 438, 432,
+ 144, 433, 16, 16, 16, 439, 431, 431,
+ 142, 21, 143, 144, 16, 16, 16, 440,
+ 142, 21, 143, 441, 144, 16, 16, 16,
+ 442, 142, 21, 143, 144, 16, 16, 16,
+ 443, 142, 21, 143, 444, 144, 16, 16,
+ 16, 445, 142, 21, 143, 144, 16, 16,
+ 16, 446, 142, 21, 143, 144, 433, 16,
+ 16, 16, 447, 142, 21, 143, 144, 433,
+ 16, 16, 16, 448, 142, 21, 143, 144,
+ 433, 16, 16, 16, 142, 426, 38, 426,
+ 143, 420, 144, 16, 16, 142, 21, 143,
+ 444, 144, 16, 16, 16, 449, 142, 21,
+ 143, 444, 144, 16, 16, 16, 142, 21,
+ 143, 441, 144, 16, 16, 16, 450, 142,
+ 21, 143, 441, 144, 16, 16, 16, 142,
+ 21, 143, 438, 432, 144, 433, 16, 16,
+ 16, 451, 434, 434, 142, 21, 143, 438,
+ 432, 144, 433, 16, 16, 16, 435, 435,
+ 435, 142, 21, 143, 453, 144, 433, 16,
+ 16, 16, 452, 452, 452, 142, 21, 143,
+ 455, 144, 433, 16, 16, 16, 454, 454,
+ 454, 142, 21, 143, 455, 144, 433, 16,
+ 16, 16, 456, 456, 456, 142, 21, 143,
+ 455, 144, 433, 16, 16, 16, 457, 457,
+ 457, 142, 21, 143, 455, 144, 433, 16,
+ 16, 16, 142, 21, 143, 144, 16, 16,
+ 16, 458, 452, 452, 142, 21, 143, 438,
+ 455, 144, 433, 16, 16, 16, 459, 454,
+ 454, 142, 21, 143, 438, 455, 144, 433,
+ 16, 16, 16, 460, 456, 456, 142, 21,
+ 143, 438, 455, 144, 433, 16, 16, 16,
+ 457, 457, 457, 142, 21, 143, 144, 16,
+ 16, 16, 461, 142, 21, 143, 438, 144,
+ 16, 16, 16, 462, 142, 21, 143, 438,
+ 144, 16, 16, 16, 463, 142, 21, 143,
+ 438, 144, 16, 16, 16, 142, 21, 143,
+ 437, 144, 16, 16, 16, 142, 418, 38,
+ 418, 419, 143, 419, 419, 420, 421, 464,
+ 144, 464, 419, 16, 16, 419, 419, 419,
+ 419, 142, 418, 38, 418, 419, 143, 419,
+ 419, 420, 421, 465, 144, 465, 419, 16,
+ 16, 419, 419, 419, 419, 142, 418, 38,
+ 418, 419, 143, 419, 419, 420, 421, 466,
+ 144, 466, 419, 16, 16, 419, 419, 419,
+ 419, 142, 418, 38, 418, 419, 143, 419,
+ 419, 420, 421, 467, 144, 467, 419, 16,
+ 16, 419, 419, 419, 419, 142, 418, 38,
+ 418, 419, 143, 419, 419, 420, 421, 468,
+ 144, 468, 419, 16, 16, 419, 419, 419,
+ 419, 142, 418, 38, 418, 419, 143, 419,
+ 419, 420, 421, 469, 144, 469, 419, 16,
+ 16, 419, 419, 419, 419, 142, 418, 38,
+ 418, 419, 143, 419, 419, 420, 421, 470,
+ 144, 470, 419, 16, 16, 419, 419, 419,
+ 419, 142, 418, 38, 418, 419, 143, 419,
+ 419, 420, 421, 471, 144, 471, 419, 16,
+ 16, 419, 419, 419, 419, 142, 472, 38,
+ 472, 419, 143, 419, 419, 420, 473, 144,
+ 419, 16, 16, 419, 419, 419, 419, 142,
+ 474, 21, 474, 143, 409, 473, 144, 16,
+ 16, 142, 473, 21, 473, 475, 424, 475,
+ 475, 425, 144, 475, 16, 16, 475, 475,
+ 475, 475, 475, 142, 476, 99, 476, 477,
+ 143, 477, 477, 478, 144, 477, 16, 16,
+ 477, 477, 477, 477, 142, 418, 38, 418,
+ 419, 143, 419, 419, 420, 421, 479, 144,
+ 479, 419, 16, 16, 419, 419, 419, 419,
+ 142, 418, 38, 418, 419, 143, 419, 419,
+ 420, 421, 480, 144, 480, 419, 16, 16,
+ 419, 419, 419, 419, 142, 418, 38, 418,
+ 419, 143, 419, 419, 420, 421, 481, 144,
+ 481, 419, 16, 16, 419, 419, 419, 419,
+ 142, 418, 38, 418, 419, 143, 419, 419,
+ 420, 421, 482, 144, 482, 419, 16, 16,
+ 419, 419, 419, 419, 142, 418, 38, 418,
+ 419, 143, 419, 419, 420, 421, 483, 144,
+ 483, 419, 16, 16, 419, 419, 419, 419,
+ 142, 484, 38, 484, 419, 143, 419, 419,
+ 420, 485, 144, 419, 16, 16, 419, 419,
+ 419, 419, 142, 486, 21, 486, 143, 409,
+ 485, 144, 16, 16, 142, 487, 21, 487,
+ 423, 488, 423, 423, 425, 144, 423, 16,
+ 16, 423, 423, 423, 423, 423, 142, 489,
+ 146, 489, 113, 490, 114, 16, 16, 112,
+ 418, 38, 418, 419, 143, 419, 419, 420,
+ 421, 491, 492, 144, 491, 492, 419, 16,
+ 16, 419, 419, 419, 419, 142, 493, 38,
+ 493, 419, 143, 419, 419, 420, 494, 144,
+ 419, 16, 16, 419, 419, 419, 419, 142,
+ 495, 21, 495, 143, 409, 494, 144, 16,
+ 16, 142, 494, 21, 494, 423, 424, 423,
+ 423, 425, 144, 423, 16, 16, 423, 423,
+ 496, 423, 423, 496, 423, 142, 426, 38,
+ 426, 423, 143, 423, 423, 420, 144, 423,
+ 16, 16, 423, 497, 423, 423, 497, 423,
+ 142, 426, 38, 426, 423, 143, 423, 423,
+ 420, 144, 423, 16, 16, 423, 498, 423,
+ 423, 498, 423, 142, 426, 38, 426, 423,
+ 143, 423, 423, 420, 144, 423, 16, 16,
+ 423, 499, 423, 423, 499, 423, 142, 426,
+ 38, 426, 423, 143, 423, 423, 420, 144,
+ 423, 16, 16, 423, 500, 423, 423, 500,
+ 423, 142, 426, 38, 426, 423, 143, 423,
+ 423, 420, 144, 423, 16, 16, 423, 501,
+ 423, 423, 501, 423, 142, 426, 38, 426,
+ 423, 143, 423, 423, 420, 144, 423, 16,
+ 16, 423, 502, 423, 423, 502, 423, 142,
+ 426, 38, 426, 423, 143, 423, 423, 420,
+ 144, 423, 16, 16, 423, 503, 423, 423,
+ 503, 423, 142, 504, 132, 504, 143, 505,
+ 144, 16, 16, 142, 418, 38, 418, 419,
+ 143, 419, 419, 420, 421, 506, 144, 506,
+ 419, 16, 16, 419, 419, 419, 419, 142,
+ 418, 38, 418, 419, 143, 419, 419, 420,
+ 421, 507, 144, 507, 419, 16, 16, 419,
+ 419, 419, 419, 142, 418, 38, 418, 419,
+ 143, 419, 419, 420, 421, 508, 144, 508,
+ 419, 16, 16, 419, 419, 419, 419, 142,
+ 509, 38, 509, 419, 143, 419, 419, 420,
+ 510, 144, 419, 16, 16, 419, 419, 419,
+ 419, 142, 511, 21, 511, 143, 409, 510,
+ 144, 16, 16, 142, 512, 21, 512, 423,
+ 513, 423, 423, 425, 144, 423, 16, 16,
+ 423, 423, 423, 423, 423, 142, 514, 146,
+ 514, 143, 515, 144, 16, 16, 142, 418,
+ 38, 418, 419, 143, 419, 419, 420, 421,
+ 516, 144, 516, 419, 16, 16, 419, 419,
+ 419, 419, 142, 418, 38, 418, 419, 143,
+ 419, 419, 420, 421, 517, 144, 517, 419,
+ 16, 16, 419, 419, 419, 419, 142, 418,
+ 38, 418, 419, 143, 419, 419, 420, 421,
+ 518, 144, 518, 419, 16, 16, 419, 419,
+ 419, 419, 142, 418, 38, 418, 419, 143,
+ 419, 419, 420, 421, 519, 144, 519, 419,
+ 16, 16, 419, 419, 419, 419, 142, 418,
+ 38, 418, 419, 143, 419, 419, 420, 421,
+ 520, 144, 520, 419, 16, 16, 419, 419,
+ 419, 419, 142, 521, 38, 521, 419, 143,
+ 419, 419, 420, 522, 144, 419, 16, 16,
+ 419, 419, 419, 419, 142, 523, 21, 523,
+ 143, 409, 522, 144, 16, 16, 142, 524,
+ 21, 524, 423, 525, 423, 423, 425, 144,
+ 423, 16, 16, 423, 423, 423, 423, 423,
+ 142, 526, 146, 526, 159, 527, 160, 16,
+ 16, 158, 528, 21, 528, 159, 529, 160,
+ 16, 16, 158, 529, 21, 529, 530, 159,
+ 530, 530, 531, 532, 533, 534, 535, 536,
+ 537, 160, 531, 532, 533, 534, 535, 536,
+ 537, 530, 16, 16, 530, 530, 530, 530,
+ 530, 158, 538, 38, 538, 539, 159, 539,
+ 539, 540, 541, 160, 539, 16, 16, 539,
+ 539, 539, 539, 158, 542, 21, 542, 159,
+ 529, 541, 160, 16, 16, 158, 541, 21,
+ 541, 543, 544, 543, 543, 545, 160, 543,
+ 16, 16, 543, 543, 543, 543, 543, 158,
+ 546, 38, 546, 543, 159, 543, 543, 540,
+ 160, 543, 16, 16, 543, 543, 543, 543,
+ 158, 547, 162, 547, 51, 548, 52, 16,
+ 16, 47, 21, 159, 550, 160, 16, 16,
+ 16, 549, 549, 549, 158, 21, 159, 552,
+ 160, 553, 16, 16, 16, 551, 551, 551,
+ 158, 21, 159, 552, 160, 553, 16, 16,
+ 16, 554, 554, 554, 158, 21, 159, 552,
+ 160, 553, 16, 16, 16, 555, 555, 555,
+ 158, 21, 159, 552, 160, 553, 16, 16,
+ 16, 158, 21, 159, 557, 160, 16, 16,
+ 16, 556, 549, 549, 158, 21, 159, 558,
+ 552, 160, 553, 16, 16, 16, 559, 551,
+ 551, 158, 21, 159, 160, 16, 16, 16,
+ 560, 158, 21, 159, 561, 160, 16, 16,
+ 16, 562, 158, 21, 159, 160, 16, 16,
+ 16, 563, 158, 21, 159, 564, 160, 16,
+ 16, 16, 565, 158, 21, 159, 160, 16,
+ 16, 16, 566, 158, 21, 159, 160, 553,
+ 16, 16, 16, 567, 158, 21, 159, 160,
+ 553, 16, 16, 16, 568, 158, 21, 159,
+ 160, 553, 16, 16, 16, 158, 546, 38,
+ 546, 159, 540, 160, 16, 16, 158, 21,
+ 159, 564, 160, 16, 16, 16, 569, 158,
+ 21, 159, 564, 160, 16, 16, 16, 158,
+ 21, 159, 561, 160, 16, 16, 16, 570,
+ 158, 21, 159, 561, 160, 16, 16, 16,
+ 158, 21, 159, 558, 552, 160, 553, 16,
+ 16, 16, 571, 554, 554, 158, 21, 159,
+ 558, 552, 160, 553, 16, 16, 16, 555,
+ 555, 555, 158, 21, 159, 573, 160, 553,
+ 16, 16, 16, 572, 572, 572, 158, 21,
+ 159, 575, 160, 553, 16, 16, 16, 574,
+ 574, 574, 158, 21, 159, 575, 160, 553,
+ 16, 16, 16, 576, 576, 576, 158, 21,
+ 159, 575, 160, 553, 16, 16, 16, 577,
+ 577, 577, 158, 21, 159, 575, 160, 553,
+ 16, 16, 16, 158, 21, 159, 160, 16,
+ 16, 16, 578, 572, 572, 158, 21, 159,
+ 558, 575, 160, 553, 16, 16, 16, 579,
+ 574, 574, 158, 21, 159, 558, 575, 160,
+ 553, 16, 16, 16, 580, 576, 576, 158,
+ 21, 159, 558, 575, 160, 553, 16, 16,
+ 16, 577, 577, 577, 158, 21, 159, 160,
+ 16, 16, 16, 581, 158, 21, 159, 558,
+ 160, 16, 16, 16, 582, 158, 21, 159,
+ 558, 160, 16, 16, 16, 583, 158, 21,
+ 159, 558, 160, 16, 16, 16, 158, 21,
+ 159, 557, 160, 16, 16, 16, 158, 538,
+ 38, 538, 539, 159, 539, 539, 540, 541,
+ 584, 160, 584, 539, 16, 16, 539, 539,
+ 539, 539, 158, 538, 38, 538, 539, 159,
+ 539, 539, 540, 541, 585, 160, 585, 539,
+ 16, 16, 539, 539, 539, 539, 158, 538,
+ 38, 538, 539, 159, 539, 539, 540, 541,
+ 586, 160, 586, 539, 16, 16, 539, 539,
+ 539, 539, 158, 538, 38, 538, 539, 159,
+ 539, 539, 540, 541, 587, 160, 587, 539,
+ 16, 16, 539, 539, 539, 539, 158, 538,
+ 38, 538, 539, 159, 539, 539, 540, 541,
+ 588, 160, 588, 539, 16, 16, 539, 539,
+ 539, 539, 158, 538, 38, 538, 539, 159,
+ 539, 539, 540, 541, 589, 160, 589, 539,
+ 16, 16, 539, 539, 539, 539, 158, 538,
+ 38, 538, 539, 159, 539, 539, 540, 541,
+ 590, 160, 590, 539, 16, 16, 539, 539,
+ 539, 539, 158, 538, 38, 538, 539, 159,
+ 539, 539, 540, 541, 591, 160, 591, 539,
+ 16, 16, 539, 539, 539, 539, 158, 592,
+ 38, 592, 539, 159, 539, 539, 540, 593,
+ 160, 539, 16, 16, 539, 539, 539, 539,
+ 158, 594, 21, 594, 159, 529, 593, 160,
+ 16, 16, 158, 593, 21, 593, 595, 544,
+ 595, 595, 545, 160, 595, 16, 16, 595,
+ 595, 595, 595, 595, 158, 596, 99, 596,
+ 597, 159, 597, 597, 598, 160, 597, 16,
+ 16, 597, 597, 597, 597, 158, 538, 38,
+ 538, 539, 159, 539, 539, 540, 541, 599,
+ 160, 599, 539, 16, 16, 539, 539, 539,
+ 539, 158, 538, 38, 538, 539, 159, 539,
+ 539, 540, 541, 600, 160, 600, 539, 16,
+ 16, 539, 539, 539, 539, 158, 538, 38,
+ 538, 539, 159, 539, 539, 540, 541, 601,
+ 160, 601, 539, 16, 16, 539, 539, 539,
+ 539, 158, 538, 38, 538, 539, 159, 539,
+ 539, 540, 541, 602, 160, 602, 539, 16,
+ 16, 539, 539, 539, 539, 158, 538, 38,
+ 538, 539, 159, 539, 539, 540, 541, 603,
+ 160, 603, 539, 16, 16, 539, 539, 539,
+ 539, 158, 604, 38, 604, 539, 159, 539,
+ 539, 540, 605, 160, 539, 16, 16, 539,
+ 539, 539, 539, 158, 606, 21, 606, 159,
+ 529, 605, 160, 16, 16, 158, 607, 21,
+ 607, 543, 608, 543, 543, 545, 160, 543,
+ 16, 16, 543, 543, 543, 543, 543, 158,
+ 609, 162, 609, 113, 610, 114, 16, 16,
+ 112, 538, 38, 538, 539, 159, 539, 539,
+ 540, 541, 611, 612, 160, 611, 612, 539,
+ 16, 16, 539, 539, 539, 539, 158, 613,
+ 38, 613, 539, 159, 539, 539, 540, 614,
+ 160, 539, 16, 16, 539, 539, 539, 539,
+ 158, 615, 21, 615, 159, 529, 614, 160,
+ 16, 16, 158, 614, 21, 614, 543, 544,
+ 543, 543, 545, 160, 543, 16, 16, 543,
+ 543, 616, 543, 543, 616, 543, 158, 546,
+ 38, 546, 543, 159, 543, 543, 540, 160,
+ 543, 16, 16, 543, 617, 543, 543, 617,
+ 543, 158, 546, 38, 546, 543, 159, 543,
+ 543, 540, 160, 543, 16, 16, 543, 618,
+ 543, 543, 618, 543, 158, 546, 38, 546,
+ 543, 159, 543, 543, 540, 160, 543, 16,
+ 16, 543, 619, 543, 543, 619, 543, 158,
+ 546, 38, 546, 543, 159, 543, 543, 540,
+ 160, 543, 16, 16, 543, 620, 543, 543,
+ 620, 543, 158, 546, 38, 546, 543, 159,
+ 543, 543, 540, 160, 543, 16, 16, 543,
+ 621, 543, 543, 621, 543, 158, 546, 38,
+ 546, 543, 159, 543, 543, 540, 160, 543,
+ 16, 16, 543, 622, 543, 543, 622, 543,
+ 158, 546, 38, 546, 543, 159, 543, 543,
+ 540, 160, 543, 16, 16, 543, 623, 543,
+ 543, 623, 543, 158, 624, 132, 624, 159,
+ 625, 160, 16, 16, 158, 538, 38, 538,
+ 539, 159, 539, 539, 540, 541, 626, 160,
+ 626, 539, 16, 16, 539, 539, 539, 539,
+ 158, 538, 38, 538, 539, 159, 539, 539,
+ 540, 541, 627, 160, 627, 539, 16, 16,
+ 539, 539, 539, 539, 158, 538, 38, 538,
+ 539, 159, 539, 539, 540, 541, 628, 160,
+ 628, 539, 16, 16, 539, 539, 539, 539,
+ 158, 629, 38, 629, 539, 159, 539, 539,
+ 540, 630, 160, 539, 16, 16, 539, 539,
+ 539, 539, 158, 631, 21, 631, 159, 529,
+ 630, 160, 16, 16, 158, 632, 21, 632,
+ 543, 633, 543, 543, 545, 160, 543, 16,
+ 16, 543, 543, 543, 543, 543, 158, 634,
+ 162, 634, 143, 635, 144, 16, 16, 142,
+ 538, 38, 538, 539, 159, 539, 539, 540,
+ 541, 636, 160, 636, 539, 16, 16, 539,
+ 539, 539, 539, 158, 538, 38, 538, 539,
+ 159, 539, 539, 540, 541, 637, 160, 637,
+ 539, 16, 16, 539, 539, 539, 539, 158,
+ 538, 38, 538, 539, 159, 539, 539, 540,
+ 541, 638, 160, 638, 539, 16, 16, 539,
+ 539, 539, 539, 158, 538, 38, 538, 539,
+ 159, 539, 539, 540, 541, 639, 160, 639,
+ 539, 16, 16, 539, 539, 539, 539, 158,
+ 538, 38, 538, 539, 159, 539, 539, 540,
+ 541, 640, 160, 640, 539, 16, 16, 539,
+ 539, 539, 539, 158, 641, 38, 641, 539,
+ 159, 539, 539, 540, 642, 160, 539, 16,
+ 16, 539, 539, 539, 539, 158, 643, 21,
+ 643, 159, 529, 642, 160, 16, 16, 158,
+ 644, 21, 644, 543, 645, 543, 543, 545,
+ 160, 543, 16, 16, 543, 543, 543, 543,
+ 543, 158, 646, 162, 646, 159, 647, 160,
+ 16, 16, 158, 538, 38, 538, 539, 159,
+ 539, 539, 540, 541, 648, 160, 648, 539,
+ 16, 16, 539, 539, 539, 539, 158, 538,
+ 38, 538, 539, 159, 539, 539, 540, 541,
+ 649, 160, 649, 539, 16, 16, 539, 539,
+ 539, 539, 158, 650, 38, 650, 539, 159,
+ 539, 539, 540, 651, 160, 539, 16, 16,
+ 539, 539, 539, 539, 158, 652, 21, 652,
+ 159, 529, 651, 160, 16, 16, 158, 651,
+ 21, 651, 653, 544, 653, 653, 545, 160,
+ 653, 16, 16, 653, 653, 653, 653, 653,
+ 158, 654, 171, 654, 655, 159, 655, 655,
+ 656, 160, 655, 16, 16, 655, 655, 655,
+ 655, 158, 538, 38, 538, 539, 159, 539,
+ 539, 540, 541, 657, 160, 657, 539, 16,
+ 16, 539, 539, 539, 539, 158, 538, 38,
+ 538, 539, 159, 539, 539, 540, 541, 658,
+ 659, 160, 658, 659, 539, 16, 16, 539,
+ 539, 539, 539, 158, 538, 38, 538, 539,
+ 159, 539, 539, 540, 541, 660, 160, 660,
+ 539, 16, 16, 539, 539, 539, 539, 158,
+ 538, 38, 538, 539, 159, 539, 539, 540,
+ 541, 661, 160, 661, 539, 16, 16, 539,
+ 539, 539, 539, 158, 662, 38, 662, 539,
+ 159, 539, 539, 540, 663, 160, 539, 16,
+ 16, 539, 539, 539, 539, 158, 664, 21,
+ 664, 159, 529, 663, 160, 16, 16, 158,
+ 665, 21, 665, 543, 666, 543, 543, 545,
+ 160, 543, 16, 16, 543, 543, 543, 543,
+ 543, 158, 667, 162, 667, 185, 668, 186,
+ 16, 16, 184, 669, 21, 669, 185, 670,
+ 186, 16, 16, 184, 670, 21, 670, 671,
+ 185, 671, 671, 672, 673, 674, 675, 676,
+ 677, 678, 186, 672, 673, 674, 675, 676,
+ 677, 678, 671, 16, 16, 671, 671, 671,
+ 671, 671, 184, 679, 38, 679, 680, 185,
+ 680, 680, 681, 682, 186, 680, 16, 16,
+ 680, 680, 680, 680, 184, 683, 21, 683,
+ 185, 670, 682, 186, 16, 16, 184, 682,
+ 21, 682, 684, 685, 684, 684, 686, 186,
+ 684, 16, 16, 684, 684, 684, 684, 684,
+ 184, 687, 38, 687, 684, 185, 684, 684,
+ 681, 186, 684, 16, 16, 684, 684, 684,
+ 684, 184, 688, 188, 688, 51, 689, 52,
+ 16, 16, 47, 21, 185, 691, 186, 16,
+ 16, 16, 690, 690, 690, 184, 21, 185,
+ 693, 186, 694, 16, 16, 16, 692, 692,
+ 692, 184, 21, 185, 693, 186, 694, 16,
+ 16, 16, 695, 695, 695, 184, 21, 185,
+ 693, 186, 694, 16, 16, 16, 696, 696,
+ 696, 184, 21, 185, 693, 186, 694, 16,
+ 16, 16, 184, 21, 185, 698, 186, 16,
+ 16, 16, 697, 690, 690, 184, 21, 185,
+ 699, 693, 186, 694, 16, 16, 16, 700,
+ 692, 692, 184, 21, 185, 186, 16, 16,
+ 16, 701, 184, 21, 185, 702, 186, 16,
+ 16, 16, 703, 184, 21, 185, 186, 16,
+ 16, 16, 704, 184, 21, 185, 705, 186,
+ 16, 16, 16, 706, 184, 21, 185, 186,
+ 16, 16, 16, 707, 184, 21, 185, 186,
+ 694, 16, 16, 16, 708, 184, 21, 185,
+ 186, 694, 16, 16, 16, 709, 184, 21,
+ 185, 186, 694, 16, 16, 16, 184, 687,
+ 38, 687, 185, 681, 186, 16, 16, 184,
+ 21, 185, 705, 186, 16, 16, 16, 710,
+ 184, 21, 185, 705, 186, 16, 16, 16,
+ 184, 21, 185, 702, 186, 16, 16, 16,
+ 711, 184, 21, 185, 702, 186, 16, 16,
+ 16, 184, 21, 185, 699, 693, 186, 694,
+ 16, 16, 16, 712, 695, 695, 184, 21,
+ 185, 699, 693, 186, 694, 16, 16, 16,
+ 696, 696, 696, 184, 21, 185, 714, 186,
+ 694, 16, 16, 16, 713, 713, 713, 184,
+ 21, 185, 716, 186, 694, 16, 16, 16,
+ 715, 715, 715, 184, 21, 185, 716, 186,
+ 694, 16, 16, 16, 717, 717, 717, 184,
+ 21, 185, 716, 186, 694, 16, 16, 16,
+ 718, 718, 718, 184, 21, 185, 716, 186,
+ 694, 16, 16, 16, 184, 21, 185, 186,
+ 16, 16, 16, 719, 713, 713, 184, 21,
+ 185, 699, 716, 186, 694, 16, 16, 16,
+ 720, 715, 715, 184, 21, 185, 699, 716,
+ 186, 694, 16, 16, 16, 721, 717, 717,
+ 184, 21, 185, 699, 716, 186, 694, 16,
+ 16, 16, 718, 718, 718, 184, 21, 185,
+ 186, 16, 16, 16, 722, 184, 21, 185,
+ 699, 186, 16, 16, 16, 723, 184, 21,
+ 185, 699, 186, 16, 16, 16, 724, 184,
+ 21, 185, 699, 186, 16, 16, 16, 184,
+ 21, 185, 698, 186, 16, 16, 16, 184,
+ 679, 38, 679, 680, 185, 680, 680, 681,
+ 682, 725, 186, 725, 680, 16, 16, 680,
+ 680, 680, 680, 184, 679, 38, 679, 680,
+ 185, 680, 680, 681, 682, 726, 186, 726,
+ 680, 16, 16, 680, 680, 680, 680, 184,
+ 679, 38, 679, 680, 185, 680, 680, 681,
+ 682, 727, 186, 727, 680, 16, 16, 680,
+ 680, 680, 680, 184, 679, 38, 679, 680,
+ 185, 680, 680, 681, 682, 728, 186, 728,
+ 680, 16, 16, 680, 680, 680, 680, 184,
+ 679, 38, 679, 680, 185, 680, 680, 681,
+ 682, 729, 186, 729, 680, 16, 16, 680,
+ 680, 680, 680, 184, 679, 38, 679, 680,
+ 185, 680, 680, 681, 682, 730, 186, 730,
+ 680, 16, 16, 680, 680, 680, 680, 184,
+ 679, 38, 679, 680, 185, 680, 680, 681,
+ 682, 731, 186, 731, 680, 16, 16, 680,
+ 680, 680, 680, 184, 679, 38, 679, 680,
+ 185, 680, 680, 681, 682, 732, 186, 732,
+ 680, 16, 16, 680, 680, 680, 680, 184,
+ 733, 38, 733, 680, 185, 680, 680, 681,
+ 734, 186, 680, 16, 16, 680, 680, 680,
+ 680, 184, 735, 21, 735, 185, 670, 734,
+ 186, 16, 16, 184, 734, 21, 734, 736,
+ 685, 736, 736, 686, 186, 736, 16, 16,
+ 736, 736, 736, 736, 736, 184, 737, 99,
+ 737, 738, 185, 738, 738, 739, 186, 738,
+ 16, 16, 738, 738, 738, 738, 184, 679,
+ 38, 679, 680, 185, 680, 680, 681, 682,
+ 740, 186, 740, 680, 16, 16, 680, 680,
+ 680, 680, 184, 679, 38, 679, 680, 185,
+ 680, 680, 681, 682, 741, 186, 741, 680,
+ 16, 16, 680, 680, 680, 680, 184, 679,
+ 38, 679, 680, 185, 680, 680, 681, 682,
+ 742, 186, 742, 680, 16, 16, 680, 680,
+ 680, 680, 184, 679, 38, 679, 680, 185,
+ 680, 680, 681, 682, 743, 186, 743, 680,
+ 16, 16, 680, 680, 680, 680, 184, 679,
+ 38, 679, 680, 185, 680, 680, 681, 682,
+ 744, 186, 744, 680, 16, 16, 680, 680,
+ 680, 680, 184, 745, 38, 745, 680, 185,
+ 680, 680, 681, 746, 186, 680, 16, 16,
+ 680, 680, 680, 680, 184, 747, 21, 747,
+ 185, 670, 746, 186, 16, 16, 184, 748,
+ 21, 748, 684, 749, 684, 684, 686, 186,
+ 684, 16, 16, 684, 684, 684, 684, 684,
+ 184, 750, 188, 750, 113, 751, 114, 16,
+ 16, 112, 679, 38, 679, 680, 185, 680,
+ 680, 681, 682, 752, 753, 186, 752, 753,
+ 680, 16, 16, 680, 680, 680, 680, 184,
+ 754, 38, 754, 680, 185, 680, 680, 681,
+ 755, 186, 680, 16, 16, 680, 680, 680,
+ 680, 184, 756, 21, 756, 185, 670, 755,
+ 186, 16, 16, 184, 755, 21, 755, 684,
+ 685, 684, 684, 686, 186, 684, 16, 16,
+ 684, 684, 757, 684, 684, 757, 684, 184,
+ 687, 38, 687, 684, 185, 684, 684, 681,
+ 186, 684, 16, 16, 684, 758, 684, 684,
+ 758, 684, 184, 687, 38, 687, 684, 185,
+ 684, 684, 681, 186, 684, 16, 16, 684,
+ 759, 684, 684, 759, 684, 184, 687, 38,
+ 687, 684, 185, 684, 684, 681, 186, 684,
+ 16, 16, 684, 760, 684, 684, 760, 684,
+ 184, 687, 38, 687, 684, 185, 684, 684,
+ 681, 186, 684, 16, 16, 684, 761, 684,
+ 684, 761, 684, 184, 687, 38, 687, 684,
+ 185, 684, 684, 681, 186, 684, 16, 16,
+ 684, 762, 684, 684, 762, 684, 184, 687,
+ 38, 687, 684, 185, 684, 684, 681, 186,
+ 684, 16, 16, 684, 763, 684, 684, 763,
+ 684, 184, 687, 38, 687, 684, 185, 684,
+ 684, 681, 186, 684, 16, 16, 684, 764,
+ 684, 684, 764, 684, 184, 765, 132, 765,
+ 185, 766, 186, 16, 16, 184, 679, 38,
+ 679, 680, 185, 680, 680, 681, 682, 767,
+ 186, 767, 680, 16, 16, 680, 680, 680,
+ 680, 184, 679, 38, 679, 680, 185, 680,
+ 680, 681, 682, 768, 186, 768, 680, 16,
+ 16, 680, 680, 680, 680, 184, 679, 38,
+ 679, 680, 185, 680, 680, 681, 682, 769,
+ 186, 769, 680, 16, 16, 680, 680, 680,
+ 680, 184, 770, 38, 770, 680, 185, 680,
+ 680, 681, 771, 186, 680, 16, 16, 680,
+ 680, 680, 680, 184, 772, 21, 772, 185,
+ 670, 771, 186, 16, 16, 184, 773, 21,
+ 773, 684, 774, 684, 684, 686, 186, 684,
+ 16, 16, 684, 684, 684, 684, 684, 184,
+ 775, 188, 775, 143, 776, 144, 16, 16,
+ 142, 679, 38, 679, 680, 185, 680, 680,
+ 681, 682, 777, 186, 777, 680, 16, 16,
+ 680, 680, 680, 680, 184, 679, 38, 679,
+ 680, 185, 680, 680, 681, 682, 778, 186,
+ 778, 680, 16, 16, 680, 680, 680, 680,
+ 184, 679, 38, 679, 680, 185, 680, 680,
+ 681, 682, 779, 186, 779, 680, 16, 16,
+ 680, 680, 680, 680, 184, 679, 38, 679,
+ 680, 185, 680, 680, 681, 682, 780, 186,
+ 780, 680, 16, 16, 680, 680, 680, 680,
+ 184, 679, 38, 679, 680, 185, 680, 680,
+ 681, 682, 781, 186, 781, 680, 16, 16,
+ 680, 680, 680, 680, 184, 782, 38, 782,
+ 680, 185, 680, 680, 681, 783, 186, 680,
+ 16, 16, 680, 680, 680, 680, 184, 784,
+ 21, 784, 185, 670, 783, 186, 16, 16,
+ 184, 785, 21, 785, 684, 786, 684, 684,
+ 686, 186, 684, 16, 16, 684, 684, 684,
+ 684, 684, 184, 787, 188, 787, 159, 788,
+ 160, 16, 16, 158, 679, 38, 679, 680,
+ 185, 680, 680, 681, 682, 789, 186, 789,
+ 680, 16, 16, 680, 680, 680, 680, 184,
+ 679, 38, 679, 680, 185, 680, 680, 681,
+ 682, 790, 186, 790, 680, 16, 16, 680,
+ 680, 680, 680, 184, 791, 38, 791, 680,
+ 185, 680, 680, 681, 792, 186, 680, 16,
+ 16, 680, 680, 680, 680, 184, 793, 21,
+ 793, 185, 670, 792, 186, 16, 16, 184,
+ 792, 21, 792, 794, 685, 794, 794, 686,
+ 186, 794, 16, 16, 794, 794, 794, 794,
+ 794, 184, 795, 171, 795, 796, 185, 796,
+ 796, 797, 186, 796, 16, 16, 796, 796,
+ 796, 796, 184, 679, 38, 679, 680, 185,
+ 680, 680, 681, 682, 798, 186, 798, 680,
+ 16, 16, 680, 680, 680, 680, 184, 679,
+ 38, 679, 680, 185, 680, 680, 681, 682,
+ 799, 800, 186, 799, 800, 680, 16, 16,
+ 680, 680, 680, 680, 184, 679, 38, 679,
+ 680, 185, 680, 680, 681, 682, 801, 186,
+ 801, 680, 16, 16, 680, 680, 680, 680,
+ 184, 679, 38, 679, 680, 185, 680, 680,
+ 681, 682, 802, 186, 802, 680, 16, 16,
+ 680, 680, 680, 680, 184, 803, 38, 803,
+ 680, 185, 680, 680, 681, 804, 186, 680,
+ 16, 16, 680, 680, 680, 680, 184, 805,
+ 21, 805, 185, 670, 804, 186, 16, 16,
+ 184, 806, 21, 806, 684, 807, 684, 684,
+ 686, 186, 684, 16, 16, 684, 684, 684,
+ 684, 684, 184, 808, 188, 808, 185, 809,
+ 186, 16, 16, 184, 679, 38, 679, 680,
+ 185, 680, 680, 681, 682, 810, 186, 810,
+ 680, 16, 16, 680, 680, 680, 680, 184,
+ 679, 38, 679, 680, 185, 680, 680, 681,
+ 682, 811, 186, 811, 680, 16, 16, 680,
+ 680, 680, 680, 184, 679, 38, 679, 680,
+ 185, 680, 680, 681, 682, 812, 186, 812,
+ 680, 16, 16, 680, 680, 680, 680, 184,
+ 679, 38, 679, 680, 185, 680, 680, 681,
+ 682, 813, 186, 813, 680, 16, 16, 680,
+ 680, 680, 680, 184, 679, 38, 679, 680,
+ 185, 680, 680, 681, 682, 814, 186, 814,
+ 680, 16, 16, 680, 680, 680, 680, 184,
+ 815, 38, 815, 680, 185, 680, 680, 681,
+ 816, 186, 680, 16, 16, 680, 680, 680,
+ 680, 184, 817, 21, 817, 185, 670, 816,
+ 186, 16, 16, 184, 818, 21, 818, 684,
+ 819, 684, 684, 686, 186, 684, 16, 16,
+ 684, 684, 684, 684, 684, 184, 820, 188,
+ 820, 201, 821, 202, 16, 16, 200, 822,
+ 21, 822, 201, 823, 202, 16, 16, 200,
+ 823, 21, 823, 824, 201, 824, 824, 825,
+ 826, 827, 828, 829, 830, 831, 202, 825,
+ 826, 827, 828, 829, 830, 831, 824, 16,
+ 16, 824, 824, 824, 824, 824, 200, 832,
+ 38, 832, 833, 201, 833, 833, 834, 835,
+ 202, 833, 16, 16, 833, 833, 833, 833,
+ 200, 836, 21, 836, 201, 823, 835, 202,
+ 16, 16, 200, 835, 21, 835, 837, 838,
+ 837, 837, 839, 202, 837, 16, 16, 837,
+ 837, 837, 837, 837, 200, 840, 38, 840,
+ 837, 201, 837, 837, 834, 202, 837, 16,
+ 16, 837, 837, 837, 837, 200, 841, 204,
+ 841, 51, 842, 52, 16, 16, 47, 21,
+ 201, 844, 202, 16, 16, 16, 843, 843,
+ 843, 200, 21, 201, 846, 202, 847, 16,
+ 16, 16, 845, 845, 845, 200, 21, 201,
+ 846, 202, 847, 16, 16, 16, 848, 848,
+ 848, 200, 21, 201, 846, 202, 847, 16,
+ 16, 16, 849, 849, 849, 200, 21, 201,
+ 846, 202, 847, 16, 16, 16, 200, 21,
+ 201, 851, 202, 16, 16, 16, 850, 843,
+ 843, 200, 21, 201, 852, 846, 202, 847,
+ 16, 16, 16, 853, 845, 845, 200, 21,
+ 201, 202, 16, 16, 16, 854, 200, 21,
+ 201, 855, 202, 16, 16, 16, 856, 200,
+ 21, 201, 202, 16, 16, 16, 857, 200,
+ 21, 201, 858, 202, 16, 16, 16, 859,
+ 200, 21, 201, 202, 16, 16, 16, 860,
+ 200, 21, 201, 202, 847, 16, 16, 16,
+ 861, 200, 21, 201, 202, 847, 16, 16,
+ 16, 862, 200, 21, 201, 202, 847, 16,
+ 16, 16, 200, 840, 38, 840, 201, 834,
+ 202, 16, 16, 200, 21, 201, 858, 202,
+ 16, 16, 16, 863, 200, 21, 201, 858,
+ 202, 16, 16, 16, 200, 21, 201, 855,
+ 202, 16, 16, 16, 864, 200, 21, 201,
+ 855, 202, 16, 16, 16, 200, 21, 201,
+ 852, 846, 202, 847, 16, 16, 16, 865,
+ 848, 848, 200, 21, 201, 852, 846, 202,
+ 847, 16, 16, 16, 849, 849, 849, 200,
+ 21, 201, 867, 202, 847, 16, 16, 16,
+ 866, 866, 866, 200, 21, 201, 869, 202,
+ 847, 16, 16, 16, 868, 868, 868, 200,
+ 21, 201, 869, 202, 847, 16, 16, 16,
+ 870, 870, 870, 200, 21, 201, 869, 202,
+ 847, 16, 16, 16, 871, 871, 871, 200,
+ 21, 201, 869, 202, 847, 16, 16, 16,
+ 200, 21, 201, 202, 16, 16, 16, 872,
+ 866, 866, 200, 21, 201, 852, 869, 202,
+ 847, 16, 16, 16, 873, 868, 868, 200,
+ 21, 201, 852, 869, 202, 847, 16, 16,
+ 16, 874, 870, 870, 200, 21, 201, 852,
+ 869, 202, 847, 16, 16, 16, 871, 871,
+ 871, 200, 21, 201, 202, 16, 16, 16,
+ 875, 200, 21, 201, 852, 202, 16, 16,
+ 16, 876, 200, 21, 201, 852, 202, 16,
+ 16, 16, 877, 200, 21, 201, 852, 202,
+ 16, 16, 16, 200, 21, 201, 851, 202,
+ 16, 16, 16, 200, 832, 38, 832, 833,
+ 201, 833, 833, 834, 835, 878, 202, 878,
+ 833, 16, 16, 833, 833, 833, 833, 200,
+ 832, 38, 832, 833, 201, 833, 833, 834,
+ 835, 879, 202, 879, 833, 16, 16, 833,
+ 833, 833, 833, 200, 832, 38, 832, 833,
+ 201, 833, 833, 834, 835, 880, 202, 880,
+ 833, 16, 16, 833, 833, 833, 833, 200,
+ 832, 38, 832, 833, 201, 833, 833, 834,
+ 835, 881, 202, 881, 833, 16, 16, 833,
+ 833, 833, 833, 200, 832, 38, 832, 833,
+ 201, 833, 833, 834, 835, 882, 202, 882,
+ 833, 16, 16, 833, 833, 833, 833, 200,
+ 832, 38, 832, 833, 201, 833, 833, 834,
+ 835, 883, 202, 883, 833, 16, 16, 833,
+ 833, 833, 833, 200, 832, 38, 832, 833,
+ 201, 833, 833, 834, 835, 884, 202, 884,
+ 833, 16, 16, 833, 833, 833, 833, 200,
+ 832, 38, 832, 833, 201, 833, 833, 834,
+ 835, 885, 202, 885, 833, 16, 16, 833,
+ 833, 833, 833, 200, 886, 38, 886, 833,
+ 201, 833, 833, 834, 887, 202, 833, 16,
+ 16, 833, 833, 833, 833, 200, 888, 21,
+ 888, 201, 823, 887, 202, 16, 16, 200,
+ 887, 21, 887, 889, 838, 889, 889, 839,
+ 202, 889, 16, 16, 889, 889, 889, 889,
+ 889, 200, 890, 99, 890, 891, 201, 891,
+ 891, 892, 202, 891, 16, 16, 891, 891,
+ 891, 891, 200, 832, 38, 832, 833, 201,
+ 833, 833, 834, 835, 893, 202, 893, 833,
+ 16, 16, 833, 833, 833, 833, 200, 832,
+ 38, 832, 833, 201, 833, 833, 834, 835,
+ 894, 202, 894, 833, 16, 16, 833, 833,
+ 833, 833, 200, 832, 38, 832, 833, 201,
+ 833, 833, 834, 835, 895, 202, 895, 833,
+ 16, 16, 833, 833, 833, 833, 200, 832,
+ 38, 832, 833, 201, 833, 833, 834, 835,
+ 896, 202, 896, 833, 16, 16, 833, 833,
+ 833, 833, 200, 832, 38, 832, 833, 201,
+ 833, 833, 834, 835, 897, 202, 897, 833,
+ 16, 16, 833, 833, 833, 833, 200, 898,
+ 38, 898, 833, 201, 833, 833, 834, 899,
+ 202, 833, 16, 16, 833, 833, 833, 833,
+ 200, 900, 21, 900, 201, 823, 899, 202,
+ 16, 16, 200, 901, 21, 901, 837, 902,
+ 837, 837, 839, 202, 837, 16, 16, 837,
+ 837, 837, 837, 837, 200, 903, 204, 903,
+ 113, 904, 114, 16, 16, 112, 832, 38,
+ 832, 833, 201, 833, 833, 834, 835, 905,
+ 906, 202, 905, 906, 833, 16, 16, 833,
+ 833, 833, 833, 200, 907, 38, 907, 833,
+ 201, 833, 833, 834, 908, 202, 833, 16,
+ 16, 833, 833, 833, 833, 200, 909, 21,
+ 909, 201, 823, 908, 202, 16, 16, 200,
+ 908, 21, 908, 837, 838, 837, 837, 839,
+ 202, 837, 16, 16, 837, 837, 910, 837,
+ 837, 910, 837, 200, 840, 38, 840, 837,
+ 201, 837, 837, 834, 202, 837, 16, 16,
+ 837, 911, 837, 837, 911, 837, 200, 840,
+ 38, 840, 837, 201, 837, 837, 834, 202,
+ 837, 16, 16, 837, 912, 837, 837, 912,
+ 837, 200, 840, 38, 840, 837, 201, 837,
+ 837, 834, 202, 837, 16, 16, 837, 913,
+ 837, 837, 913, 837, 200, 840, 38, 840,
+ 837, 201, 837, 837, 834, 202, 837, 16,
+ 16, 837, 914, 837, 837, 914, 837, 200,
+ 840, 38, 840, 837, 201, 837, 837, 834,
+ 202, 837, 16, 16, 837, 915, 837, 837,
+ 915, 837, 200, 840, 38, 840, 837, 201,
+ 837, 837, 834, 202, 837, 16, 16, 837,
+ 916, 837, 837, 916, 837, 200, 840, 38,
+ 840, 837, 201, 837, 837, 834, 202, 837,
+ 16, 16, 837, 917, 837, 837, 917, 837,
+ 200, 918, 132, 918, 201, 919, 202, 16,
+ 16, 200, 832, 38, 832, 833, 201, 833,
+ 833, 834, 835, 920, 202, 920, 833, 16,
+ 16, 833, 833, 833, 833, 200, 832, 38,
+ 832, 833, 201, 833, 833, 834, 835, 921,
+ 202, 921, 833, 16, 16, 833, 833, 833,
+ 833, 200, 832, 38, 832, 833, 201, 833,
+ 833, 834, 835, 922, 202, 922, 833, 16,
+ 16, 833, 833, 833, 833, 200, 923, 38,
+ 923, 833, 201, 833, 833, 834, 924, 202,
+ 833, 16, 16, 833, 833, 833, 833, 200,
+ 925, 21, 925, 201, 823, 924, 202, 16,
+ 16, 200, 926, 21, 926, 837, 927, 837,
+ 837, 839, 202, 837, 16, 16, 837, 837,
+ 837, 837, 837, 200, 928, 204, 928, 143,
+ 929, 144, 16, 16, 142, 832, 38, 832,
+ 833, 201, 833, 833, 834, 835, 930, 202,
+ 930, 833, 16, 16, 833, 833, 833, 833,
+ 200, 832, 38, 832, 833, 201, 833, 833,
+ 834, 835, 931, 202, 931, 833, 16, 16,
+ 833, 833, 833, 833, 200, 832, 38, 832,
+ 833, 201, 833, 833, 834, 835, 932, 202,
+ 932, 833, 16, 16, 833, 833, 833, 833,
+ 200, 832, 38, 832, 833, 201, 833, 833,
+ 834, 835, 933, 202, 933, 833, 16, 16,
+ 833, 833, 833, 833, 200, 832, 38, 832,
+ 833, 201, 833, 833, 834, 835, 934, 202,
+ 934, 833, 16, 16, 833, 833, 833, 833,
+ 200, 935, 38, 935, 833, 201, 833, 833,
+ 834, 936, 202, 833, 16, 16, 833, 833,
+ 833, 833, 200, 937, 21, 937, 201, 823,
+ 936, 202, 16, 16, 200, 938, 21, 938,
+ 837, 939, 837, 837, 839, 202, 837, 16,
+ 16, 837, 837, 837, 837, 837, 200, 940,
+ 204, 940, 159, 941, 160, 16, 16, 158,
+ 832, 38, 832, 833, 201, 833, 833, 834,
+ 835, 942, 202, 942, 833, 16, 16, 833,
+ 833, 833, 833, 200, 832, 38, 832, 833,
+ 201, 833, 833, 834, 835, 943, 202, 943,
+ 833, 16, 16, 833, 833, 833, 833, 200,
+ 944, 38, 944, 833, 201, 833, 833, 834,
+ 945, 202, 833, 16, 16, 833, 833, 833,
+ 833, 200, 946, 21, 946, 201, 823, 945,
+ 202, 16, 16, 200, 945, 21, 945, 947,
+ 838, 947, 947, 839, 202, 947, 16, 16,
+ 947, 947, 947, 947, 947, 200, 948, 171,
+ 948, 949, 201, 949, 949, 950, 202, 949,
+ 16, 16, 949, 949, 949, 949, 200, 832,
+ 38, 832, 833, 201, 833, 833, 834, 835,
+ 951, 202, 951, 833, 16, 16, 833, 833,
+ 833, 833, 200, 832, 38, 832, 833, 201,
+ 833, 833, 834, 835, 952, 953, 202, 952,
+ 953, 833, 16, 16, 833, 833, 833, 833,
+ 200, 832, 38, 832, 833, 201, 833, 833,
+ 834, 835, 954, 202, 954, 833, 16, 16,
+ 833, 833, 833, 833, 200, 832, 38, 832,
+ 833, 201, 833, 833, 834, 835, 955, 202,
+ 955, 833, 16, 16, 833, 833, 833, 833,
+ 200, 956, 38, 956, 833, 201, 833, 833,
+ 834, 957, 202, 833, 16, 16, 833, 833,
+ 833, 833, 200, 958, 21, 958, 201, 823,
+ 957, 202, 16, 16, 200, 959, 21, 959,
+ 837, 960, 837, 837, 839, 202, 837, 16,
+ 16, 837, 837, 837, 837, 837, 200, 961,
+ 204, 961, 185, 962, 186, 16, 16, 184,
+ 832, 38, 832, 833, 201, 833, 833, 834,
+ 835, 963, 202, 963, 833, 16, 16, 833,
+ 833, 833, 833, 200, 832, 38, 832, 833,
+ 201, 833, 833, 834, 835, 964, 202, 964,
+ 833, 16, 16, 833, 833, 833, 833, 200,
+ 832, 38, 832, 833, 201, 833, 833, 834,
+ 835, 965, 202, 965, 833, 16, 16, 833,
+ 833, 833, 833, 200, 832, 38, 832, 833,
+ 201, 833, 833, 834, 835, 966, 202, 966,
+ 833, 16, 16, 833, 833, 833, 833, 200,
+ 832, 38, 832, 833, 201, 833, 833, 834,
+ 835, 967, 202, 967, 833, 16, 16, 833,
+ 833, 833, 833, 200, 968, 38, 968, 833,
+ 201, 833, 833, 834, 969, 202, 833, 16,
+ 16, 833, 833, 833, 833, 200, 970, 21,
+ 970, 201, 823, 969, 202, 16, 16, 200,
+ 971, 21, 971, 837, 972, 837, 837, 839,
+ 202, 837, 16, 16, 837, 837, 837, 837,
+ 837, 200, 973, 204, 973, 201, 974, 202,
+ 16, 16, 200, 832, 38, 832, 833, 201,
+ 833, 833, 834, 835, 975, 976, 202, 975,
+ 976, 833, 16, 16, 833, 833, 833, 833,
+ 200, 832, 38, 832, 833, 201, 833, 833,
+ 834, 835, 977, 202, 977, 833, 16, 16,
+ 833, 833, 833, 833, 200, 978, 38, 978,
+ 833, 201, 833, 833, 834, 979, 202, 833,
+ 16, 16, 833, 833, 833, 833, 200, 980,
+ 21, 980, 201, 823, 979, 202, 16, 16,
+ 200, 979, 21, 979, 837, 981, 837, 837,
+ 839, 202, 837, 16, 16, 837, 837, 837,
+ 837, 837, 200, 982, 204, 982, 215, 983,
+ 216, 214, 214, 213, 984, 21, 984, 219,
+ 985, 220, 218, 218, 217, 985, 21, 985,
+ 986, 219, 986, 986, 987, 988, 989, 990,
+ 991, 992, 993, 220, 987, 988, 989, 990,
+ 991, 992, 993, 986, 218, 218, 986, 986,
+ 986, 986, 986, 217, 994, 38, 994, 995,
+ 219, 995, 995, 996, 997, 220, 995, 218,
+ 218, 995, 995, 995, 995, 217, 998, 21,
+ 998, 219, 985, 997, 220, 218, 218, 217,
+ 997, 21, 997, 999, 221, 999, 999, 1000,
+ 220, 999, 218, 218, 999, 999, 999, 999,
+ 999, 217, 1001, 38, 1001, 999, 219, 999,
+ 999, 996, 220, 999, 218, 218, 999, 999,
+ 999, 999, 217, 21, 219, 1003, 220, 218,
+ 218, 218, 1002, 1002, 1002, 217, 21, 219,
+ 1005, 220, 1006, 218, 218, 218, 1004, 1004,
+ 1004, 217, 21, 219, 1005, 220, 1006, 218,
+ 218, 218, 1007, 1007, 1007, 217, 21, 219,
+ 1005, 220, 1006, 218, 218, 218, 1008, 1008,
+ 1008, 217, 21, 219, 1005, 220, 1006, 218,
+ 218, 218, 217, 21, 219, 1010, 220, 218,
+ 218, 218, 1009, 1002, 1002, 217, 21, 219,
+ 1011, 1005, 220, 1006, 218, 218, 218, 1012,
+ 1004, 1004, 217, 21, 219, 220, 218, 218,
+ 218, 1013, 217, 21, 219, 1014, 220, 218,
+ 218, 218, 1015, 217, 21, 219, 220, 218,
+ 218, 218, 1016, 217, 21, 219, 1017, 220,
+ 218, 218, 218, 1018, 217, 21, 219, 220,
+ 218, 218, 218, 1019, 217, 21, 219, 220,
+ 1006, 218, 218, 218, 1020, 217, 21, 219,
+ 220, 1006, 218, 218, 218, 1021, 217, 21,
+ 219, 220, 1006, 218, 218, 218, 217, 1001,
+ 38, 1001, 219, 996, 220, 218, 218, 217,
+ 21, 219, 1017, 220, 218, 218, 218, 1022,
+ 217, 21, 219, 1017, 220, 218, 218, 218,
+ 217, 21, 219, 1014, 220, 218, 218, 218,
+ 1023, 217, 21, 219, 1014, 220, 218, 218,
+ 218, 217, 21, 219, 1011, 1005, 220, 1006,
+ 218, 218, 218, 1024, 1007, 1007, 217, 21,
+ 219, 1011, 1005, 220, 1006, 218, 218, 218,
+ 1008, 1008, 1008, 217, 21, 219, 1026, 220,
+ 1006, 218, 218, 218, 1025, 1025, 1025, 217,
+ 21, 219, 1028, 220, 1006, 218, 218, 218,
+ 1027, 1027, 1027, 217, 21, 219, 1028, 220,
+ 1006, 218, 218, 218, 1029, 1029, 1029, 217,
+ 21, 219, 1028, 220, 1006, 218, 218, 218,
+ 1030, 1030, 1030, 217, 21, 219, 1028, 220,
+ 1006, 218, 218, 218, 217, 21, 219, 220,
+ 218, 218, 218, 1031, 1025, 1025, 217, 21,
+ 219, 1011, 1028, 220, 1006, 218, 218, 218,
+ 1032, 1027, 1027, 217, 21, 219, 1011, 1028,
+ 220, 1006, 218, 218, 218, 1033, 1029, 1029,
+ 217, 21, 219, 1011, 1028, 220, 1006, 218,
+ 218, 218, 1030, 1030, 1030, 217, 21, 219,
+ 220, 218, 218, 218, 1034, 217, 21, 219,
+ 1011, 220, 218, 218, 218, 1035, 217, 21,
+ 219, 1011, 220, 218, 218, 218, 1036, 217,
+ 21, 219, 1011, 220, 218, 218, 218, 217,
+ 21, 219, 1010, 220, 218, 218, 218, 217,
+ 994, 38, 994, 995, 219, 995, 995, 996,
+ 997, 1037, 220, 1037, 995, 218, 218, 995,
+ 995, 995, 995, 217, 994, 38, 994, 995,
+ 219, 995, 995, 996, 997, 1038, 220, 1038,
+ 995, 218, 218, 995, 995, 995, 995, 217,
+ 994, 38, 994, 995, 219, 995, 995, 996,
+ 997, 1039, 220, 1039, 995, 218, 218, 995,
+ 995, 995, 995, 217, 994, 38, 994, 995,
+ 219, 995, 995, 996, 997, 1040, 220, 1040,
+ 995, 218, 218, 995, 995, 995, 995, 217,
+ 994, 38, 994, 995, 219, 995, 995, 996,
+ 997, 1041, 220, 1041, 995, 218, 218, 995,
+ 995, 995, 995, 217, 994, 38, 994, 995,
+ 219, 995, 995, 996, 997, 1042, 220, 1042,
+ 995, 218, 218, 995, 995, 995, 995, 217,
+ 994, 38, 994, 995, 219, 995, 995, 996,
+ 997, 1043, 220, 1043, 995, 218, 218, 995,
+ 995, 995, 995, 217, 994, 38, 994, 995,
+ 219, 995, 995, 996, 997, 1044, 220, 1044,
+ 995, 218, 218, 995, 995, 995, 995, 217,
+ 1045, 38, 1045, 995, 219, 995, 995, 996,
+ 1046, 220, 995, 218, 218, 995, 995, 995,
+ 995, 217, 1047, 21, 1047, 219, 985, 1046,
+ 220, 218, 218, 217, 1046, 21, 1046, 1048,
+ 221, 1048, 1048, 1000, 220, 1048, 218, 218,
+ 1048, 1048, 1048, 1048, 1048, 217, 1049, 99,
+ 1049, 1050, 219, 1050, 1050, 1051, 220, 1050,
+ 218, 218, 1050, 1050, 1050, 1050, 217, 994,
+ 38, 994, 995, 219, 995, 995, 996, 997,
+ 1052, 220, 1052, 995, 218, 218, 995, 995,
+ 995, 995, 217, 994, 38, 994, 995, 219,
+ 995, 995, 996, 997, 1053, 220, 1053, 995,
+ 218, 218, 995, 995, 995, 995, 217, 994,
+ 38, 994, 995, 219, 995, 995, 996, 997,
+ 1054, 220, 1054, 995, 218, 218, 995, 995,
+ 995, 995, 217, 994, 38, 994, 995, 219,
+ 995, 995, 996, 997, 1055, 220, 1055, 995,
+ 218, 218, 995, 995, 995, 995, 217, 994,
+ 38, 994, 995, 219, 995, 995, 996, 997,
+ 1056, 220, 1056, 995, 218, 218, 995, 995,
+ 995, 995, 217, 1057, 38, 1057, 995, 219,
+ 995, 995, 996, 1058, 220, 995, 218, 218,
+ 995, 995, 995, 995, 217, 1059, 21, 1059,
+ 219, 985, 1058, 220, 218, 218, 217, 1060,
+ 21, 1060, 999, 1061, 999, 999, 1000, 220,
+ 999, 218, 218, 999, 999, 999, 999, 999,
+ 217, 994, 38, 994, 995, 219, 995, 995,
+ 996, 997, 1062, 1063, 220, 1062, 1063, 995,
+ 218, 218, 995, 995, 995, 995, 217, 1064,
+ 38, 1064, 995, 219, 995, 995, 996, 1065,
+ 220, 995, 218, 218, 995, 995, 995, 995,
+ 217, 1066, 21, 1066, 219, 985, 1065, 220,
+ 218, 218, 217, 1065, 21, 1065, 999, 221,
+ 999, 999, 1000, 220, 999, 218, 218, 999,
+ 999, 1067, 999, 999, 1067, 999, 217, 1001,
+ 38, 1001, 999, 219, 999, 999, 996, 220,
+ 999, 218, 218, 999, 1068, 999, 999, 1068,
+ 999, 217, 1001, 38, 1001, 999, 219, 999,
+ 999, 996, 220, 999, 218, 218, 999, 1069,
+ 999, 999, 1069, 999, 217, 1001, 38, 1001,
+ 999, 219, 999, 999, 996, 220, 999, 218,
+ 218, 999, 1070, 999, 999, 1070, 999, 217,
+ 1001, 38, 1001, 999, 219, 999, 999, 996,
+ 220, 999, 218, 218, 999, 1071, 999, 999,
+ 1071, 999, 217, 1001, 38, 1001, 999, 219,
+ 999, 999, 996, 220, 999, 218, 218, 999,
+ 1072, 999, 999, 1072, 999, 217, 1001, 38,
+ 1001, 999, 219, 999, 999, 996, 220, 999,
+ 218, 218, 999, 1073, 999, 999, 1073, 999,
+ 217, 1001, 38, 1001, 999, 219, 999, 999,
+ 996, 220, 999, 218, 218, 999, 1074, 999,
+ 999, 1074, 999, 217, 1075, 132, 1075, 219,
+ 1076, 220, 218, 218, 217, 994, 38, 994,
+ 995, 219, 995, 995, 996, 997, 1077, 220,
+ 1077, 995, 218, 218, 995, 995, 995, 995,
+ 217, 994, 38, 994, 995, 219, 995, 995,
+ 996, 997, 1078, 220, 1078, 995, 218, 218,
+ 995, 995, 995, 995, 217, 994, 38, 994,
+ 995, 219, 995, 995, 996, 997, 1079, 220,
+ 1079, 995, 218, 218, 995, 995, 995, 995,
+ 217, 1080, 38, 1080, 995, 219, 995, 995,
+ 996, 1081, 220, 995, 218, 218, 995, 995,
+ 995, 995, 217, 1082, 21, 1082, 219, 985,
+ 1081, 220, 218, 218, 217, 1083, 21, 1083,
+ 999, 1084, 999, 999, 1000, 220, 999, 218,
+ 218, 999, 999, 999, 999, 999, 217, 994,
+ 38, 994, 995, 219, 995, 995, 996, 997,
+ 1085, 220, 1085, 995, 218, 218, 995, 995,
+ 995, 995, 217, 994, 38, 994, 995, 219,
+ 995, 995, 996, 997, 1086, 220, 1086, 995,
+ 218, 218, 995, 995, 995, 995, 217, 994,
+ 38, 994, 995, 219, 995, 995, 996, 997,
+ 1087, 220, 1087, 995, 218, 218, 995, 995,
+ 995, 995, 217, 994, 38, 994, 995, 219,
+ 995, 995, 996, 997, 1088, 220, 1088, 995,
+ 218, 218, 995, 995, 995, 995, 217, 994,
+ 38, 994, 995, 219, 995, 995, 996, 997,
+ 1089, 220, 1089, 995, 218, 218, 995, 995,
+ 995, 995, 217, 1090, 38, 1090, 995, 219,
+ 995, 995, 996, 1091, 220, 995, 218, 218,
+ 995, 995, 995, 995, 217, 1092, 21, 1092,
+ 219, 985, 1091, 220, 218, 218, 217, 1093,
+ 21, 1093, 999, 1094, 999, 999, 1000, 220,
+ 999, 218, 218, 999, 999, 999, 999, 999,
+ 217, 994, 38, 994, 995, 219, 995, 995,
+ 996, 997, 1095, 220, 1095, 995, 218, 218,
+ 995, 995, 995, 995, 217, 994, 38, 994,
+ 995, 219, 995, 995, 996, 997, 1096, 220,
+ 1096, 995, 218, 218, 995, 995, 995, 995,
+ 217, 1097, 38, 1097, 995, 219, 995, 995,
+ 996, 1098, 220, 995, 218, 218, 995, 995,
+ 995, 995, 217, 1099, 21, 1099, 219, 985,
+ 1098, 220, 218, 218, 217, 1098, 21, 1098,
+ 1100, 221, 1100, 1100, 1000, 220, 1100, 218,
+ 218, 1100, 1100, 1100, 1100, 1100, 217, 1101,
+ 171, 1101, 1102, 219, 1102, 1102, 1103, 220,
+ 1102, 218, 218, 1102, 1102, 1102, 1102, 217,
+ 994, 38, 994, 995, 219, 995, 995, 996,
+ 997, 1104, 220, 1104, 995, 218, 218, 995,
+ 995, 995, 995, 217, 994, 38, 994, 995,
+ 219, 995, 995, 996, 997, 1105, 1106, 220,
+ 1105, 1106, 995, 218, 218, 995, 995, 995,
+ 995, 217, 994, 38, 994, 995, 219, 995,
+ 995, 996, 997, 1107, 220, 1107, 995, 218,
+ 218, 995, 995, 995, 995, 217, 994, 38,
+ 994, 995, 219, 995, 995, 996, 997, 1108,
+ 220, 1108, 995, 218, 218, 995, 995, 995,
+ 995, 217, 1109, 38, 1109, 995, 219, 995,
+ 995, 996, 1110, 220, 995, 218, 218, 995,
+ 995, 995, 995, 217, 1111, 21, 1111, 219,
+ 985, 1110, 220, 218, 218, 217, 1112, 21,
+ 1112, 999, 1113, 999, 999, 1000, 220, 999,
+ 218, 218, 999, 999, 999, 999, 999, 217,
+ 994, 38, 994, 995, 219, 995, 995, 996,
+ 997, 1114, 220, 1114, 995, 218, 218, 995,
+ 995, 995, 995, 217, 994, 38, 994, 995,
+ 219, 995, 995, 996, 997, 1115, 220, 1115,
+ 995, 218, 218, 995, 995, 995, 995, 217,
+ 994, 38, 994, 995, 219, 995, 995, 996,
+ 997, 1116, 220, 1116, 995, 218, 218, 995,
+ 995, 995, 995, 217, 994, 38, 994, 995,
+ 219, 995, 995, 996, 997, 1117, 220, 1117,
+ 995, 218, 218, 995, 995, 995, 995, 217,
+ 994, 38, 994, 995, 219, 995, 995, 996,
+ 997, 1118, 220, 1118, 995, 218, 218, 995,
+ 995, 995, 995, 217, 1119, 38, 1119, 995,
+ 219, 995, 995, 996, 1120, 220, 995, 218,
+ 218, 995, 995, 995, 995, 217, 1121, 21,
+ 1121, 219, 985, 1120, 220, 218, 218, 217,
+ 1122, 21, 1122, 999, 1123, 999, 999, 1000,
+ 220, 999, 218, 218, 999, 999, 999, 999,
+ 999, 217, 994, 38, 994, 995, 219, 995,
+ 995, 996, 997, 1124, 1125, 220, 1124, 1125,
+ 995, 218, 218, 995, 995, 995, 995, 217,
+ 994, 38, 994, 995, 219, 995, 995, 996,
+ 997, 1126, 220, 1126, 995, 218, 218, 995,
+ 995, 995, 995, 217, 1127, 38, 1127, 995,
+ 219, 995, 995, 996, 1128, 220, 995, 218,
+ 218, 995, 995, 995, 995, 217, 1129, 21,
+ 1129, 219, 985, 1128, 220, 218, 218, 217,
+ 1128, 21, 1128, 999, 219, 999, 999, 1000,
+ 220, 999, 218, 218, 999, 999, 999, 999,
+ 999, 217, 994, 38, 994, 995, 219, 995,
+ 995, 996, 997, 1130, 220, 1130, 995, 218,
+ 218, 995, 995, 995, 995, 217, 994, 38,
+ 994, 995, 219, 995, 995, 996, 997, 1131,
+ 220, 1131, 995, 218, 218, 995, 995, 995,
+ 995, 217, 994, 38, 994, 995, 219, 995,
+ 995, 996, 997, 1132, 220, 1132, 995, 218,
+ 218, 995, 995, 995, 995, 217, 994, 38,
+ 994, 995, 219, 995, 995, 996, 997, 1133,
+ 220, 1133, 995, 218, 218, 995, 995, 995,
+ 995, 217, 994, 38, 994, 995, 219, 995,
+ 995, 996, 997, 1134, 220, 1134, 995, 218,
+ 218, 995, 995, 995, 995, 217, 994, 38,
+ 994, 995, 219, 995, 995, 996, 997, 1135,
+ 220, 1135, 995, 218, 218, 995, 995, 995,
+ 995, 217, 1136, 38, 1136, 995, 219, 995,
+ 995, 996, 1137, 220, 995, 218, 218, 995,
+ 995, 995, 995, 217, 1138, 21, 1138, 219,
+ 985, 1137, 220, 218, 218, 217, 1139, 21,
+ 1139, 999, 1140, 999, 999, 1000, 220, 999,
+ 218, 218, 999, 999, 999, 999, 999, 217,
+ 1142, 21, 1142, 1143, 1144, 1145, 16, 16,
+ 1141, 21, 1143, 1145, 16, 16, 16, 1141,
+ 1146, 1147, 1146, 1148, 16, 21, 1141, 1141,
+ 16, 1144, 21, 1144, 1149, 1143, 1149, 1149,
+ 1150, 1151, 1152, 1153, 1154, 1155, 1156, 1145,
+ 1150, 1151, 1152, 1153, 1154, 1155, 1156, 1149,
+ 16, 16, 1149, 1149, 1149, 1149, 1149, 1141,
+ 1157, 38, 1157, 1158, 1143, 1158, 1158, 1159,
+ 1160, 1145, 1158, 16, 16, 1158, 1158, 1158,
+ 1158, 1141, 1161, 21, 1161, 1143, 1144, 1160,
+ 1145, 16, 16, 1141, 1160, 21, 1160, 1162,
+ 1163, 1162, 1162, 1164, 1145, 1162, 16, 16,
+ 1162, 1162, 1162, 1162, 1162, 1141, 1165, 38,
+ 1165, 1162, 1143, 1162, 1162, 1159, 1145, 1162,
+ 16, 16, 1162, 1162, 1162, 1162, 1141, 1166,
+ 1147, 1166, 51, 1167, 52, 16, 16, 47,
+ 21, 1143, 1169, 1145, 16, 16, 16, 1168,
+ 1168, 1168, 1141, 21, 1143, 1171, 1145, 1172,
+ 16, 16, 16, 1170, 1170, 1170, 1141, 21,
+ 1143, 1171, 1145, 1172, 16, 16, 16, 1173,
+ 1173, 1173, 1141, 21, 1143, 1171, 1145, 1172,
+ 16, 16, 16, 1174, 1174, 1174, 1141, 21,
+ 1143, 1171, 1145, 1172, 16, 16, 16, 1141,
+ 21, 1143, 1176, 1145, 16, 16, 16, 1175,
+ 1168, 1168, 1141, 21, 1143, 1177, 1171, 1145,
+ 1172, 16, 16, 16, 1178, 1170, 1170, 1141,
+ 21, 1143, 1145, 16, 16, 16, 1179, 1141,
+ 21, 1143, 1180, 1145, 16, 16, 16, 1181,
+ 1141, 21, 1143, 1145, 16, 16, 16, 1182,
+ 1141, 21, 1143, 1183, 1145, 16, 16, 16,
+ 1184, 1141, 21, 1143, 1145, 16, 16, 16,
+ 1185, 1141, 21, 1143, 1145, 1172, 16, 16,
+ 16, 1186, 1141, 21, 1143, 1145, 1172, 16,
+ 16, 16, 1187, 1141, 21, 1143, 1145, 1172,
+ 16, 16, 16, 1141, 1165, 38, 1165, 1143,
+ 1159, 1145, 16, 16, 1141, 21, 1143, 1183,
+ 1145, 16, 16, 16, 1188, 1141, 21, 1143,
+ 1183, 1145, 16, 16, 16, 1141, 21, 1143,
+ 1180, 1145, 16, 16, 16, 1189, 1141, 21,
+ 1143, 1180, 1145, 16, 16, 16, 1141, 21,
+ 1143, 1177, 1171, 1145, 1172, 16, 16, 16,
+ 1190, 1173, 1173, 1141, 21, 1143, 1177, 1171,
+ 1145, 1172, 16, 16, 16, 1174, 1174, 1174,
+ 1141, 21, 1143, 1192, 1145, 1172, 16, 16,
+ 16, 1191, 1191, 1191, 1141, 21, 1143, 1194,
+ 1145, 1172, 16, 16, 16, 1193, 1193, 1193,
+ 1141, 21, 1143, 1194, 1145, 1172, 16, 16,
+ 16, 1195, 1195, 1195, 1141, 21, 1143, 1194,
+ 1145, 1172, 16, 16, 16, 1196, 1196, 1196,
+ 1141, 21, 1143, 1194, 1145, 1172, 16, 16,
+ 16, 1141, 21, 1143, 1145, 16, 16, 16,
+ 1197, 1191, 1191, 1141, 21, 1143, 1177, 1194,
+ 1145, 1172, 16, 16, 16, 1198, 1193, 1193,
+ 1141, 21, 1143, 1177, 1194, 1145, 1172, 16,
+ 16, 16, 1199, 1195, 1195, 1141, 21, 1143,
+ 1177, 1194, 1145, 1172, 16, 16, 16, 1196,
+ 1196, 1196, 1141, 21, 1143, 1145, 16, 16,
+ 16, 1200, 1141, 21, 1143, 1177, 1145, 16,
+ 16, 16, 1201, 1141, 21, 1143, 1177, 1145,
+ 16, 16, 16, 1202, 1141, 21, 1143, 1177,
+ 1145, 16, 16, 16, 1141, 21, 1143, 1176,
+ 1145, 16, 16, 16, 1141, 1157, 38, 1157,
+ 1158, 1143, 1158, 1158, 1159, 1160, 1203, 1145,
+ 1203, 1158, 16, 16, 1158, 1158, 1158, 1158,
+ 1141, 1157, 38, 1157, 1158, 1143, 1158, 1158,
+ 1159, 1160, 1204, 1145, 1204, 1158, 16, 16,
+ 1158, 1158, 1158, 1158, 1141, 1157, 38, 1157,
+ 1158, 1143, 1158, 1158, 1159, 1160, 1205, 1145,
+ 1205, 1158, 16, 16, 1158, 1158, 1158, 1158,
+ 1141, 1157, 38, 1157, 1158, 1143, 1158, 1158,
+ 1159, 1160, 1206, 1145, 1206, 1158, 16, 16,
+ 1158, 1158, 1158, 1158, 1141, 1157, 38, 1157,
+ 1158, 1143, 1158, 1158, 1159, 1160, 1207, 1145,
+ 1207, 1158, 16, 16, 1158, 1158, 1158, 1158,
+ 1141, 1157, 38, 1157, 1158, 1143, 1158, 1158,
+ 1159, 1160, 1208, 1145, 1208, 1158, 16, 16,
+ 1158, 1158, 1158, 1158, 1141, 1157, 38, 1157,
+ 1158, 1143, 1158, 1158, 1159, 1160, 1209, 1145,
+ 1209, 1158, 16, 16, 1158, 1158, 1158, 1158,
+ 1141, 1157, 38, 1157, 1158, 1143, 1158, 1158,
+ 1159, 1160, 1210, 1145, 1210, 1158, 16, 16,
+ 1158, 1158, 1158, 1158, 1141, 1211, 38, 1211,
+ 1158, 1143, 1158, 1158, 1159, 1212, 1145, 1158,
+ 16, 16, 1158, 1158, 1158, 1158, 1141, 1213,
+ 21, 1213, 1143, 1144, 1212, 1145, 16, 16,
+ 1141, 1212, 21, 1212, 1214, 1163, 1214, 1214,
+ 1164, 1145, 1214, 16, 16, 1214, 1214, 1214,
+ 1214, 1214, 1141, 1215, 99, 1215, 1216, 1143,
+ 1216, 1216, 1217, 1145, 1216, 16, 16, 1216,
+ 1216, 1216, 1216, 1141, 1157, 38, 1157, 1158,
+ 1143, 1158, 1158, 1159, 1160, 1218, 1145, 1218,
+ 1158, 16, 16, 1158, 1158, 1158, 1158, 1141,
+ 1157, 38, 1157, 1158, 1143, 1158, 1158, 1159,
+ 1160, 1219, 1145, 1219, 1158, 16, 16, 1158,
+ 1158, 1158, 1158, 1141, 1157, 38, 1157, 1158,
+ 1143, 1158, 1158, 1159, 1160, 1220, 1145, 1220,
+ 1158, 16, 16, 1158, 1158, 1158, 1158, 1141,
+ 1157, 38, 1157, 1158, 1143, 1158, 1158, 1159,
+ 1160, 1221, 1145, 1221, 1158, 16, 16, 1158,
+ 1158, 1158, 1158, 1141, 1157, 38, 1157, 1158,
+ 1143, 1158, 1158, 1159, 1160, 1222, 1145, 1222,
+ 1158, 16, 16, 1158, 1158, 1158, 1158, 1141,
+ 1223, 38, 1223, 1158, 1143, 1158, 1158, 1159,
+ 1224, 1145, 1158, 16, 16, 1158, 1158, 1158,
+ 1158, 1141, 1225, 21, 1225, 1143, 1144, 1224,
+ 1145, 16, 16, 1141, 1226, 21, 1226, 1162,
+ 1227, 1162, 1162, 1164, 1145, 1162, 16, 16,
+ 1162, 1162, 1162, 1162, 1162, 1141, 1228, 1147,
+ 1228, 113, 1229, 114, 16, 16, 112, 1157,
+ 38, 1157, 1158, 1143, 1158, 1158, 1159, 1160,
+ 1230, 1231, 1145, 1230, 1231, 1158, 16, 16,
+ 1158, 1158, 1158, 1158, 1141, 1232, 38, 1232,
+ 1158, 1143, 1158, 1158, 1159, 1233, 1145, 1158,
+ 16, 16, 1158, 1158, 1158, 1158, 1141, 1234,
+ 21, 1234, 1143, 1144, 1233, 1145, 16, 16,
+ 1141, 1233, 21, 1233, 1162, 1163, 1162, 1162,
+ 1164, 1145, 1162, 16, 16, 1162, 1162, 1235,
+ 1162, 1162, 1235, 1162, 1141, 1165, 38, 1165,
+ 1162, 1143, 1162, 1162, 1159, 1145, 1162, 16,
+ 16, 1162, 1236, 1162, 1162, 1236, 1162, 1141,
+ 1165, 38, 1165, 1162, 1143, 1162, 1162, 1159,
+ 1145, 1162, 16, 16, 1162, 1237, 1162, 1162,
+ 1237, 1162, 1141, 1165, 38, 1165, 1162, 1143,
+ 1162, 1162, 1159, 1145, 1162, 16, 16, 1162,
+ 1238, 1162, 1162, 1238, 1162, 1141, 1165, 38,
+ 1165, 1162, 1143, 1162, 1162, 1159, 1145, 1162,
+ 16, 16, 1162, 1239, 1162, 1162, 1239, 1162,
+ 1141, 1165, 38, 1165, 1162, 1143, 1162, 1162,
+ 1159, 1145, 1162, 16, 16, 1162, 1240, 1162,
+ 1162, 1240, 1162, 1141, 1165, 38, 1165, 1162,
+ 1143, 1162, 1162, 1159, 1145, 1162, 16, 16,
+ 1162, 1241, 1162, 1162, 1241, 1162, 1141, 1165,
+ 38, 1165, 1162, 1143, 1162, 1162, 1159, 1145,
+ 1162, 16, 16, 1162, 1242, 1162, 1162, 1242,
+ 1162, 1141, 1243, 132, 1243, 1143, 1244, 1145,
+ 16, 16, 1141, 1157, 38, 1157, 1158, 1143,
+ 1158, 1158, 1159, 1160, 1245, 1145, 1245, 1158,
+ 16, 16, 1158, 1158, 1158, 1158, 1141, 1157,
+ 38, 1157, 1158, 1143, 1158, 1158, 1159, 1160,
+ 1246, 1145, 1246, 1158, 16, 16, 1158, 1158,
+ 1158, 1158, 1141, 1157, 38, 1157, 1158, 1143,
+ 1158, 1158, 1159, 1160, 1247, 1145, 1247, 1158,
+ 16, 16, 1158, 1158, 1158, 1158, 1141, 1248,
+ 38, 1248, 1158, 1143, 1158, 1158, 1159, 1249,
+ 1145, 1158, 16, 16, 1158, 1158, 1158, 1158,
+ 1141, 1250, 21, 1250, 1143, 1144, 1249, 1145,
+ 16, 16, 1141, 1251, 21, 1251, 1162, 1252,
+ 1162, 1162, 1164, 1145, 1162, 16, 16, 1162,
+ 1162, 1162, 1162, 1162, 1141, 1253, 1147, 1253,
+ 143, 1254, 144, 16, 16, 142, 1157, 38,
+ 1157, 1158, 1143, 1158, 1158, 1159, 1160, 1255,
+ 1145, 1255, 1158, 16, 16, 1158, 1158, 1158,
+ 1158, 1141, 1157, 38, 1157, 1158, 1143, 1158,
+ 1158, 1159, 1160, 1256, 1145, 1256, 1158, 16,
+ 16, 1158, 1158, 1158, 1158, 1141, 1157, 38,
+ 1157, 1158, 1143, 1158, 1158, 1159, 1160, 1257,
+ 1145, 1257, 1158, 16, 16, 1158, 1158, 1158,
+ 1158, 1141, 1157, 38, 1157, 1158, 1143, 1158,
+ 1158, 1159, 1160, 1258, 1145, 1258, 1158, 16,
+ 16, 1158, 1158, 1158, 1158, 1141, 1157, 38,
+ 1157, 1158, 1143, 1158, 1158, 1159, 1160, 1259,
+ 1145, 1259, 1158, 16, 16, 1158, 1158, 1158,
+ 1158, 1141, 1260, 38, 1260, 1158, 1143, 1158,
+ 1158, 1159, 1261, 1145, 1158, 16, 16, 1158,
+ 1158, 1158, 1158, 1141, 1262, 21, 1262, 1143,
+ 1144, 1261, 1145, 16, 16, 1141, 1263, 21,
+ 1263, 1162, 1264, 1162, 1162, 1164, 1145, 1162,
+ 16, 16, 1162, 1162, 1162, 1162, 1162, 1141,
+ 1265, 1147, 1265, 159, 1266, 160, 16, 16,
+ 158, 1157, 38, 1157, 1158, 1143, 1158, 1158,
+ 1159, 1160, 1267, 1145, 1267, 1158, 16, 16,
+ 1158, 1158, 1158, 1158, 1141, 1157, 38, 1157,
+ 1158, 1143, 1158, 1158, 1159, 1160, 1268, 1145,
+ 1268, 1158, 16, 16, 1158, 1158, 1158, 1158,
+ 1141, 1269, 38, 1269, 1158, 1143, 1158, 1158,
+ 1159, 1270, 1145, 1158, 16, 16, 1158, 1158,
+ 1158, 1158, 1141, 1271, 21, 1271, 1143, 1144,
+ 1270, 1145, 16, 16, 1141, 1270, 21, 1270,
+ 1272, 1163, 1272, 1272, 1164, 1145, 1272, 16,
+ 16, 1272, 1272, 1272, 1272, 1272, 1141, 1273,
+ 171, 1273, 1274, 1143, 1274, 1274, 1275, 1145,
+ 1274, 16, 16, 1274, 1274, 1274, 1274, 1141,
+ 1157, 38, 1157, 1158, 1143, 1158, 1158, 1159,
+ 1160, 1276, 1145, 1276, 1158, 16, 16, 1158,
+ 1158, 1158, 1158, 1141, 1157, 38, 1157, 1158,
+ 1143, 1158, 1158, 1159, 1160, 1277, 1278, 1145,
+ 1277, 1278, 1158, 16, 16, 1158, 1158, 1158,
+ 1158, 1141, 1157, 38, 1157, 1158, 1143, 1158,
+ 1158, 1159, 1160, 1279, 1145, 1279, 1158, 16,
+ 16, 1158, 1158, 1158, 1158, 1141, 1157, 38,
+ 1157, 1158, 1143, 1158, 1158, 1159, 1160, 1280,
+ 1145, 1280, 1158, 16, 16, 1158, 1158, 1158,
+ 1158, 1141, 1281, 38, 1281, 1158, 1143, 1158,
+ 1158, 1159, 1282, 1145, 1158, 16, 16, 1158,
+ 1158, 1158, 1158, 1141, 1283, 21, 1283, 1143,
+ 1144, 1282, 1145, 16, 16, 1141, 1284, 21,
+ 1284, 1162, 1285, 1162, 1162, 1164, 1145, 1162,
+ 16, 16, 1162, 1162, 1162, 1162, 1162, 1141,
+ 1286, 1147, 1286, 185, 1287, 186, 16, 16,
+ 184, 1157, 38, 1157, 1158, 1143, 1158, 1158,
+ 1159, 1160, 1288, 1145, 1288, 1158, 16, 16,
+ 1158, 1158, 1158, 1158, 1141, 1157, 38, 1157,
+ 1158, 1143, 1158, 1158, 1159, 1160, 1289, 1145,
+ 1289, 1158, 16, 16, 1158, 1158, 1158, 1158,
+ 1141, 1157, 38, 1157, 1158, 1143, 1158, 1158,
+ 1159, 1160, 1290, 1145, 1290, 1158, 16, 16,
+ 1158, 1158, 1158, 1158, 1141, 1157, 38, 1157,
+ 1158, 1143, 1158, 1158, 1159, 1160, 1291, 1145,
+ 1291, 1158, 16, 16, 1158, 1158, 1158, 1158,
+ 1141, 1157, 38, 1157, 1158, 1143, 1158, 1158,
+ 1159, 1160, 1292, 1145, 1292, 1158, 16, 16,
+ 1158, 1158, 1158, 1158, 1141, 1293, 38, 1293,
+ 1158, 1143, 1158, 1158, 1159, 1294, 1145, 1158,
+ 16, 16, 1158, 1158, 1158, 1158, 1141, 1295,
+ 21, 1295, 1143, 1144, 1294, 1145, 16, 16,
+ 1141, 1296, 21, 1296, 1162, 1297, 1162, 1162,
+ 1164, 1145, 1162, 16, 16, 1162, 1162, 1162,
+ 1162, 1162, 1141, 1298, 1147, 1298, 201, 1299,
+ 202, 16, 16, 200, 1157, 38, 1157, 1158,
+ 1143, 1158, 1158, 1159, 1160, 1300, 1301, 1145,
+ 1300, 1301, 1158, 16, 16, 1158, 1158, 1158,
+ 1158, 1141, 1157, 38, 1157, 1158, 1143, 1158,
+ 1158, 1159, 1160, 1302, 1145, 1302, 1158, 16,
+ 16, 1158, 1158, 1158, 1158, 1141, 1303, 38,
+ 1303, 1158, 1143, 1158, 1158, 1159, 1304, 1145,
+ 1158, 16, 16, 1158, 1158, 1158, 1158, 1141,
+ 1305, 21, 1305, 1143, 1144, 1304, 1145, 16,
+ 16, 1141, 1304, 21, 1304, 1162, 1306, 1162,
+ 1162, 1164, 1145, 1162, 16, 16, 1162, 1162,
+ 1162, 1162, 1162, 1141, 1307, 1147, 1307, 215,
+ 1308, 216, 214, 214, 213, 1157, 38, 1157,
+ 1158, 1143, 1158, 1158, 1159, 1160, 1309, 1145,
+ 1309, 1158, 16, 16, 1158, 1158, 1158, 1158,
+ 1141, 1157, 38, 1157, 1158, 1143, 1158, 1158,
+ 1159, 1160, 1310, 1145, 1310, 1158, 16, 16,
+ 1158, 1158, 1158, 1158, 1141, 1157, 38, 1157,
+ 1158, 1143, 1158, 1158, 1159, 1160, 1311, 1145,
+ 1311, 1158, 16, 16, 1158, 1158, 1158, 1158,
+ 1141, 1157, 38, 1157, 1158, 1143, 1158, 1158,
+ 1159, 1160, 1312, 1145, 1312, 1158, 16, 16,
+ 1158, 1158, 1158, 1158, 1141, 1157, 38, 1157,
+ 1158, 1143, 1158, 1158, 1159, 1160, 1313, 1145,
+ 1313, 1158, 16, 16, 1158, 1158, 1158, 1158,
+ 1141, 1157, 38, 1157, 1158, 1143, 1158, 1158,
+ 1159, 1160, 1314, 1145, 1314, 1158, 16, 16,
+ 1158, 1158, 1158, 1158, 1141, 1315, 38, 1315,
+ 1158, 1143, 1158, 1158, 1159, 1316, 1145, 1158,
+ 16, 16, 1158, 1158, 1158, 1158, 1141, 1317,
+ 21, 1317, 1143, 1144, 1316, 1145, 16, 16,
+ 1141, 1318, 21, 1318, 1162, 1319, 1162, 1162,
+ 1164, 1145, 1162, 16, 16, 1162, 1162, 1162,
+ 1162, 1162, 1141, 1320, 1147, 1320, 1143, 1321,
+ 1145, 16, 16, 1141, 832, 38, 832, 833,
+ 201, 833, 833, 834, 835, 1322, 202, 1322,
+ 833, 16, 16, 833, 833, 833, 833, 200,
+ 832, 38, 832, 833, 201, 833, 833, 834,
+ 835, 1323, 202, 1323, 833, 16, 16, 833,
+ 833, 833, 833, 200, 832, 38, 832, 833,
+ 201, 833, 833, 834, 835, 1324, 202, 1324,
+ 833, 16, 16, 833, 833, 833, 833, 200,
+ 832, 38, 832, 833, 201, 833, 833, 834,
+ 835, 1325, 202, 1325, 833, 16, 16, 833,
+ 833, 833, 833, 200, 832, 38, 832, 833,
+ 201, 833, 833, 834, 835, 1326, 202, 1326,
+ 833, 16, 16, 833, 833, 833, 833, 200,
+ 832, 38, 832, 833, 201, 833, 833, 834,
+ 835, 1327, 202, 1327, 833, 16, 16, 833,
+ 833, 833, 833, 200, 1328, 38, 1328, 833,
+ 201, 833, 833, 834, 1329, 202, 833, 16,
+ 16, 833, 833, 833, 833, 200, 1330, 21,
+ 1330, 201, 823, 1329, 202, 16, 16, 200,
+ 1331, 21, 1331, 837, 1332, 837, 837, 839,
+ 202, 837, 16, 16, 837, 837, 837, 837,
+ 837, 200, 1333, 204, 1333, 1143, 1334, 1145,
+ 16, 16, 1141, 679, 38, 679, 680, 185,
+ 680, 680, 681, 682, 1335, 1336, 186, 1335,
+ 1336, 680, 16, 16, 680, 680, 680, 680,
+ 184, 679, 38, 679, 680, 185, 680, 680,
+ 681, 682, 1337, 186, 1337, 680, 16, 16,
+ 680, 680, 680, 680, 184, 1338, 38, 1338,
+ 680, 185, 680, 680, 681, 1339, 186, 680,
+ 16, 16, 680, 680, 680, 680, 184, 1340,
+ 21, 1340, 185, 670, 1339, 186, 16, 16,
+ 184, 1339, 21, 1339, 684, 1341, 684, 684,
+ 686, 186, 684, 16, 16, 684, 684, 684,
+ 684, 684, 184, 1342, 188, 1342, 215, 1343,
+ 216, 214, 214, 213, 679, 38, 679, 680,
+ 185, 680, 680, 681, 682, 1344, 186, 1344,
+ 680, 16, 16, 680, 680, 680, 680, 184,
+ 679, 38, 679, 680, 185, 680, 680, 681,
+ 682, 1345, 186, 1345, 680, 16, 16, 680,
+ 680, 680, 680, 184, 679, 38, 679, 680,
+ 185, 680, 680, 681, 682, 1346, 186, 1346,
+ 680, 16, 16, 680, 680, 680, 680, 184,
+ 679, 38, 679, 680, 185, 680, 680, 681,
+ 682, 1347, 186, 1347, 680, 16, 16, 680,
+ 680, 680, 680, 184, 679, 38, 679, 680,
+ 185, 680, 680, 681, 682, 1348, 186, 1348,
+ 680, 16, 16, 680, 680, 680, 680, 184,
+ 679, 38, 679, 680, 185, 680, 680, 681,
+ 682, 1349, 186, 1349, 680, 16, 16, 680,
+ 680, 680, 680, 184, 1350, 38, 1350, 680,
+ 185, 680, 680, 681, 1351, 186, 680, 16,
+ 16, 680, 680, 680, 680, 184, 1352, 21,
+ 1352, 185, 670, 1351, 186, 16, 16, 184,
+ 1353, 21, 1353, 684, 1354, 684, 684, 686,
+ 186, 684, 16, 16, 684, 684, 684, 684,
+ 684, 184, 1355, 188, 1355, 1143, 1356, 1145,
+ 16, 16, 1141, 538, 38, 538, 539, 159,
+ 539, 539, 540, 541, 1357, 160, 1357, 539,
+ 16, 16, 539, 539, 539, 539, 158, 538,
+ 38, 538, 539, 159, 539, 539, 540, 541,
+ 1358, 160, 1358, 539, 16, 16, 539, 539,
+ 539, 539, 158, 538, 38, 538, 539, 159,
+ 539, 539, 540, 541, 1359, 160, 1359, 539,
+ 16, 16, 539, 539, 539, 539, 158, 538,
+ 38, 538, 539, 159, 539, 539, 540, 541,
+ 1360, 160, 1360, 539, 16, 16, 539, 539,
+ 539, 539, 158, 538, 38, 538, 539, 159,
+ 539, 539, 540, 541, 1361, 160, 1361, 539,
+ 16, 16, 539, 539, 539, 539, 158, 1362,
+ 38, 1362, 539, 159, 539, 539, 540, 1363,
+ 160, 539, 16, 16, 539, 539, 539, 539,
+ 158, 1364, 21, 1364, 159, 529, 1363, 160,
+ 16, 16, 158, 1365, 21, 1365, 543, 1366,
+ 543, 543, 545, 160, 543, 16, 16, 543,
+ 543, 543, 543, 543, 158, 1367, 162, 1367,
+ 201, 1368, 202, 16, 16, 200, 538, 38,
+ 538, 539, 159, 539, 539, 540, 541, 1369,
+ 1370, 160, 1369, 1370, 539, 16, 16, 539,
+ 539, 539, 539, 158, 538, 38, 538, 539,
+ 159, 539, 539, 540, 541, 1371, 160, 1371,
+ 539, 16, 16, 539, 539, 539, 539, 158,
+ 1372, 38, 1372, 539, 159, 539, 539, 540,
+ 1373, 160, 539, 16, 16, 539, 539, 539,
+ 539, 158, 1374, 21, 1374, 159, 529, 1373,
+ 160, 16, 16, 158, 1373, 21, 1373, 543,
+ 1375, 543, 543, 545, 160, 543, 16, 16,
+ 543, 543, 543, 543, 543, 158, 1376, 162,
+ 1376, 215, 1377, 216, 214, 214, 213, 538,
+ 38, 538, 539, 159, 539, 539, 540, 541,
+ 1378, 160, 1378, 539, 16, 16, 539, 539,
+ 539, 539, 158, 538, 38, 538, 539, 159,
+ 539, 539, 540, 541, 1379, 160, 1379, 539,
+ 16, 16, 539, 539, 539, 539, 158, 538,
+ 38, 538, 539, 159, 539, 539, 540, 541,
+ 1380, 160, 1380, 539, 16, 16, 539, 539,
+ 539, 539, 158, 538, 38, 538, 539, 159,
+ 539, 539, 540, 541, 1381, 160, 1381, 539,
+ 16, 16, 539, 539, 539, 539, 158, 538,
+ 38, 538, 539, 159, 539, 539, 540, 541,
+ 1382, 160, 1382, 539, 16, 16, 539, 539,
+ 539, 539, 158, 538, 38, 538, 539, 159,
+ 539, 539, 540, 541, 1383, 160, 1383, 539,
+ 16, 16, 539, 539, 539, 539, 158, 1384,
+ 38, 1384, 539, 159, 539, 539, 540, 1385,
+ 160, 539, 16, 16, 539, 539, 539, 539,
+ 158, 1386, 21, 1386, 159, 529, 1385, 160,
+ 16, 16, 158, 1387, 21, 1387, 543, 1388,
+ 543, 543, 545, 160, 543, 16, 16, 543,
+ 543, 543, 543, 543, 158, 1389, 162, 1389,
+ 1143, 1390, 1145, 16, 16, 1141, 418, 38,
+ 418, 419, 143, 419, 419, 420, 421, 1391,
+ 144, 1391, 419, 16, 16, 419, 419, 419,
+ 419, 142, 418, 38, 418, 419, 143, 419,
+ 419, 420, 421, 1392, 144, 1392, 419, 16,
+ 16, 419, 419, 419, 419, 142, 1393, 38,
+ 1393, 419, 143, 419, 419, 420, 1394, 144,
+ 419, 16, 16, 419, 419, 419, 419, 142,
+ 1395, 21, 1395, 143, 409, 1394, 144, 16,
+ 16, 142, 1394, 21, 1394, 1396, 424, 1396,
+ 1396, 425, 144, 1396, 16, 16, 1396, 1396,
+ 1396, 1396, 1396, 142, 1397, 171, 1397, 1398,
+ 143, 1398, 1398, 1399, 144, 1398, 16, 16,
+ 1398, 1398, 1398, 1398, 142, 418, 38, 418,
+ 419, 143, 419, 419, 420, 421, 1400, 144,
+ 1400, 419, 16, 16, 419, 419, 419, 419,
+ 142, 418, 38, 418, 419, 143, 419, 419,
+ 420, 421, 1401, 1402, 144, 1401, 1402, 419,
+ 16, 16, 419, 419, 419, 419, 142, 418,
+ 38, 418, 419, 143, 419, 419, 420, 421,
+ 1403, 144, 1403, 419, 16, 16, 419, 419,
+ 419, 419, 142, 418, 38, 418, 419, 143,
+ 419, 419, 420, 421, 1404, 144, 1404, 419,
+ 16, 16, 419, 419, 419, 419, 142, 1405,
+ 38, 1405, 419, 143, 419, 419, 420, 1406,
+ 144, 419, 16, 16, 419, 419, 419, 419,
+ 142, 1407, 21, 1407, 143, 409, 1406, 144,
+ 16, 16, 142, 1408, 21, 1408, 423, 1409,
+ 423, 423, 425, 144, 423, 16, 16, 423,
+ 423, 423, 423, 423, 142, 1410, 146, 1410,
+ 185, 1411, 186, 16, 16, 184, 418, 38,
+ 418, 419, 143, 419, 419, 420, 421, 1412,
+ 144, 1412, 419, 16, 16, 419, 419, 419,
+ 419, 142, 418, 38, 418, 419, 143, 419,
+ 419, 420, 421, 1413, 144, 1413, 419, 16,
+ 16, 419, 419, 419, 419, 142, 418, 38,
+ 418, 419, 143, 419, 419, 420, 421, 1414,
+ 144, 1414, 419, 16, 16, 419, 419, 419,
+ 419, 142, 418, 38, 418, 419, 143, 419,
+ 419, 420, 421, 1415, 144, 1415, 419, 16,
+ 16, 419, 419, 419, 419, 142, 418, 38,
+ 418, 419, 143, 419, 419, 420, 421, 1416,
+ 144, 1416, 419, 16, 16, 419, 419, 419,
+ 419, 142, 1417, 38, 1417, 419, 143, 419,
+ 419, 420, 1418, 144, 419, 16, 16, 419,
+ 419, 419, 419, 142, 1419, 21, 1419, 143,
+ 409, 1418, 144, 16, 16, 142, 1420, 21,
+ 1420, 423, 1421, 423, 423, 425, 144, 423,
+ 16, 16, 423, 423, 423, 423, 423, 142,
+ 1422, 146, 1422, 201, 1423, 202, 16, 16,
+ 200, 418, 38, 418, 419, 143, 419, 419,
+ 420, 421, 1424, 1425, 144, 1424, 1425, 419,
+ 16, 16, 419, 419, 419, 419, 142, 418,
+ 38, 418, 419, 143, 419, 419, 420, 421,
+ 1426, 144, 1426, 419, 16, 16, 419, 419,
+ 419, 419, 142, 1427, 38, 1427, 419, 143,
+ 419, 419, 420, 1428, 144, 419, 16, 16,
+ 419, 419, 419, 419, 142, 1429, 21, 1429,
+ 143, 409, 1428, 144, 16, 16, 142, 1428,
+ 21, 1428, 423, 1430, 423, 423, 425, 144,
+ 423, 16, 16, 423, 423, 423, 423, 423,
+ 142, 1431, 146, 1431, 215, 1432, 216, 214,
+ 214, 213, 418, 38, 418, 419, 143, 419,
+ 419, 420, 421, 1433, 144, 1433, 419, 16,
+ 16, 419, 419, 419, 419, 142, 418, 38,
+ 418, 419, 143, 419, 419, 420, 421, 1434,
+ 144, 1434, 419, 16, 16, 419, 419, 419,
+ 419, 142, 418, 38, 418, 419, 143, 419,
+ 419, 420, 421, 1435, 144, 1435, 419, 16,
+ 16, 419, 419, 419, 419, 142, 418, 38,
+ 418, 419, 143, 419, 419, 420, 421, 1436,
+ 144, 1436, 419, 16, 16, 419, 419, 419,
+ 419, 142, 418, 38, 418, 419, 143, 419,
+ 419, 420, 421, 1437, 144, 1437, 419, 16,
+ 16, 419, 419, 419, 419, 142, 418, 38,
+ 418, 419, 143, 419, 419, 420, 421, 1438,
+ 144, 1438, 419, 16, 16, 419, 419, 419,
+ 419, 142, 1439, 38, 1439, 419, 143, 419,
+ 419, 420, 1440, 144, 419, 16, 16, 419,
+ 419, 419, 419, 142, 1441, 21, 1441, 143,
+ 409, 1440, 144, 16, 16, 142, 1442, 21,
+ 1442, 423, 1443, 423, 423, 425, 144, 423,
+ 16, 16, 423, 423, 423, 423, 423, 142,
+ 1444, 146, 1444, 1143, 1445, 1145, 16, 16,
+ 1141, 312, 38, 312, 313, 113, 313, 313,
+ 301, 314, 1446, 114, 1446, 313, 16, 16,
+ 313, 313, 313, 313, 112, 312, 38, 312,
+ 313, 113, 313, 313, 301, 314, 1447, 114,
+ 1447, 313, 16, 16, 313, 313, 313, 313,
+ 112, 312, 38, 312, 313, 113, 313, 313,
+ 301, 314, 1448, 114, 1448, 313, 16, 16,
+ 313, 313, 313, 313, 112, 312, 38, 312,
+ 313, 113, 313, 313, 301, 314, 1449, 114,
+ 1449, 313, 16, 16, 313, 313, 313, 313,
+ 112, 312, 38, 312, 313, 113, 313, 313,
+ 301, 314, 1450, 114, 1450, 313, 16, 16,
+ 313, 313, 313, 313, 112, 1451, 38, 1451,
+ 313, 113, 313, 313, 301, 1452, 114, 313,
+ 16, 16, 313, 313, 313, 313, 112, 1453,
+ 21, 1453, 113, 303, 1452, 114, 16, 16,
+ 112, 1454, 21, 1454, 316, 1455, 316, 316,
+ 318, 114, 316, 16, 16, 316, 316, 316,
+ 316, 316, 112, 1456, 116, 1456, 159, 1457,
+ 160, 16, 16, 158, 312, 38, 312, 313,
+ 113, 313, 313, 301, 314, 1458, 114, 1458,
+ 313, 16, 16, 313, 313, 313, 313, 112,
+ 312, 38, 312, 313, 113, 313, 313, 301,
+ 314, 1459, 114, 1459, 313, 16, 16, 313,
+ 313, 313, 313, 112, 1460, 38, 1460, 313,
+ 113, 313, 313, 301, 1461, 114, 313, 16,
+ 16, 313, 313, 313, 313, 112, 1462, 21,
+ 1462, 113, 303, 1461, 114, 16, 16, 112,
+ 1461, 21, 1461, 1463, 317, 1463, 1463, 318,
+ 114, 1463, 16, 16, 1463, 1463, 1463, 1463,
+ 1463, 112, 1464, 171, 1464, 1465, 113, 1465,
+ 1465, 1466, 114, 1465, 16, 16, 1465, 1465,
+ 1465, 1465, 112, 312, 38, 312, 313, 113,
+ 313, 313, 301, 314, 1467, 114, 1467, 313,
+ 16, 16, 313, 313, 313, 313, 112, 312,
+ 38, 312, 313, 113, 313, 313, 301, 314,
+ 1468, 1469, 114, 1468, 1469, 313, 16, 16,
+ 313, 313, 313, 313, 112, 312, 38, 312,
+ 313, 113, 313, 313, 301, 314, 1470, 114,
+ 1470, 313, 16, 16, 313, 313, 313, 313,
+ 112, 312, 38, 312, 313, 113, 313, 313,
+ 301, 314, 1471, 114, 1471, 313, 16, 16,
+ 313, 313, 313, 313, 112, 1472, 38, 1472,
+ 313, 113, 313, 313, 301, 1473, 114, 313,
+ 16, 16, 313, 313, 313, 313, 112, 1474,
+ 21, 1474, 113, 303, 1473, 114, 16, 16,
+ 112, 1475, 21, 1475, 316, 1476, 316, 316,
+ 318, 114, 316, 16, 16, 316, 316, 316,
+ 316, 316, 112, 1477, 116, 1477, 185, 1478,
+ 186, 16, 16, 184, 312, 38, 312, 313,
+ 113, 313, 313, 301, 314, 1479, 114, 1479,
+ 313, 16, 16, 313, 313, 313, 313, 112,
+ 312, 38, 312, 313, 113, 313, 313, 301,
+ 314, 1480, 114, 1480, 313, 16, 16, 313,
+ 313, 313, 313, 112, 312, 38, 312, 313,
+ 113, 313, 313, 301, 314, 1481, 114, 1481,
+ 313, 16, 16, 313, 313, 313, 313, 112,
+ 312, 38, 312, 313, 113, 313, 313, 301,
+ 314, 1482, 114, 1482, 313, 16, 16, 313,
+ 313, 313, 313, 112, 312, 38, 312, 313,
+ 113, 313, 313, 301, 314, 1483, 114, 1483,
+ 313, 16, 16, 313, 313, 313, 313, 112,
+ 1484, 38, 1484, 313, 113, 313, 313, 301,
+ 1485, 114, 313, 16, 16, 313, 313, 313,
+ 313, 112, 1486, 21, 1486, 113, 303, 1485,
+ 114, 16, 16, 112, 1487, 21, 1487, 316,
+ 1488, 316, 316, 318, 114, 316, 16, 16,
+ 316, 316, 316, 316, 316, 112, 1489, 116,
+ 1489, 201, 1490, 202, 16, 16, 200, 312,
+ 38, 312, 313, 113, 313, 313, 301, 314,
+ 1491, 1492, 114, 1491, 1492, 313, 16, 16,
+ 313, 313, 313, 313, 112, 312, 38, 312,
+ 313, 113, 313, 313, 301, 314, 1493, 114,
+ 1493, 313, 16, 16, 313, 313, 313, 313,
+ 112, 1494, 38, 1494, 313, 113, 313, 313,
+ 301, 1495, 114, 313, 16, 16, 313, 313,
+ 313, 313, 112, 1496, 21, 1496, 113, 303,
+ 1495, 114, 16, 16, 112, 1495, 21, 1495,
+ 316, 1497, 316, 316, 318, 114, 316, 16,
+ 16, 316, 316, 316, 316, 316, 112, 1498,
+ 116, 1498, 215, 1499, 216, 214, 214, 213,
+ 312, 38, 312, 313, 113, 313, 313, 301,
+ 314, 1500, 114, 1500, 313, 16, 16, 313,
+ 313, 313, 313, 112, 312, 38, 312, 313,
+ 113, 313, 313, 301, 314, 1501, 114, 1501,
+ 313, 16, 16, 313, 313, 313, 313, 112,
+ 312, 38, 312, 313, 113, 313, 313, 301,
+ 314, 1502, 114, 1502, 313, 16, 16, 313,
+ 313, 313, 313, 112, 312, 38, 312, 313,
+ 113, 313, 313, 301, 314, 1503, 114, 1503,
+ 313, 16, 16, 313, 313, 313, 313, 112,
+ 312, 38, 312, 313, 113, 313, 313, 301,
+ 314, 1504, 114, 1504, 313, 16, 16, 313,
+ 313, 313, 313, 112, 312, 38, 312, 313,
+ 113, 313, 313, 301, 314, 1505, 114, 1505,
+ 313, 16, 16, 313, 313, 313, 313, 112,
+ 1506, 38, 1506, 313, 113, 313, 313, 301,
+ 1507, 114, 313, 16, 16, 313, 313, 313,
+ 313, 112, 1508, 21, 1508, 113, 303, 1507,
+ 114, 16, 16, 112, 1509, 21, 1509, 316,
+ 1510, 316, 316, 318, 114, 316, 16, 16,
+ 316, 316, 316, 316, 316, 112, 1511, 116,
+ 1511, 1143, 1512, 1145, 16, 16, 1141, 232,
+ 38, 232, 233, 51, 233, 233, 234, 235,
+ 1513, 1514, 52, 1513, 1514, 233, 16, 16,
+ 233, 233, 233, 233, 47, 1515, 38, 1515,
+ 233, 51, 233, 233, 234, 1516, 52, 233,
+ 16, 16, 233, 233, 233, 233, 47, 1517,
+ 21, 1517, 51, 223, 1516, 52, 16, 16,
+ 47, 1516, 21, 1516, 237, 238, 237, 237,
+ 239, 52, 237, 16, 16, 237, 237, 1518,
+ 237, 237, 1518, 237, 47, 240, 38, 240,
+ 237, 51, 237, 237, 234, 52, 237, 16,
+ 16, 237, 1519, 237, 237, 1519, 237, 47,
+ 240, 38, 240, 237, 51, 237, 237, 234,
+ 52, 237, 16, 16, 237, 1520, 237, 237,
+ 1520, 237, 47, 240, 38, 240, 237, 51,
+ 237, 237, 234, 52, 237, 16, 16, 237,
+ 1521, 237, 237, 1521, 237, 47, 240, 38,
+ 240, 237, 51, 237, 237, 234, 52, 237,
+ 16, 16, 237, 1522, 237, 237, 1522, 237,
+ 47, 240, 38, 240, 237, 51, 237, 237,
+ 234, 52, 237, 16, 16, 237, 1523, 237,
+ 237, 1523, 237, 47, 240, 38, 240, 237,
+ 51, 237, 237, 234, 52, 237, 16, 16,
+ 237, 1524, 237, 237, 1524, 237, 47, 240,
+ 38, 240, 237, 51, 237, 237, 234, 52,
+ 237, 16, 16, 237, 1525, 237, 237, 1525,
+ 237, 47, 1526, 132, 1526, 51, 1527, 52,
+ 16, 16, 47, 232, 38, 232, 233, 51,
+ 233, 233, 234, 235, 1528, 52, 1528, 233,
+ 16, 16, 233, 233, 233, 233, 47, 232,
+ 38, 232, 233, 51, 233, 233, 234, 235,
+ 1529, 52, 1529, 233, 16, 16, 233, 233,
+ 233, 233, 47, 232, 38, 232, 233, 51,
+ 233, 233, 234, 235, 1530, 52, 1530, 233,
+ 16, 16, 233, 233, 233, 233, 47, 1531,
+ 38, 1531, 233, 51, 233, 233, 234, 1532,
+ 52, 233, 16, 16, 233, 233, 233, 233,
+ 47, 1533, 21, 1533, 51, 223, 1532, 52,
+ 16, 16, 47, 1534, 21, 1534, 237, 1535,
+ 237, 237, 239, 52, 237, 16, 16, 237,
+ 237, 237, 237, 237, 47, 232, 38, 232,
+ 233, 51, 233, 233, 234, 235, 1536, 52,
+ 1536, 233, 16, 16, 233, 233, 233, 233,
+ 47, 232, 38, 232, 233, 51, 233, 233,
+ 234, 235, 1537, 52, 1537, 233, 16, 16,
+ 233, 233, 233, 233, 47, 232, 38, 232,
+ 233, 51, 233, 233, 234, 235, 1538, 52,
+ 1538, 233, 16, 16, 233, 233, 233, 233,
+ 47, 232, 38, 232, 233, 51, 233, 233,
+ 234, 235, 1539, 52, 1539, 233, 16, 16,
+ 233, 233, 233, 233, 47, 232, 38, 232,
+ 233, 51, 233, 233, 234, 235, 1540, 52,
+ 1540, 233, 16, 16, 233, 233, 233, 233,
+ 47, 1541, 38, 1541, 233, 51, 233, 233,
+ 234, 1542, 52, 233, 16, 16, 233, 233,
+ 233, 233, 47, 1543, 21, 1543, 51, 223,
+ 1542, 52, 16, 16, 47, 1544, 21, 1544,
+ 237, 1545, 237, 237, 239, 52, 237, 16,
+ 16, 237, 237, 237, 237, 237, 47, 232,
+ 38, 232, 233, 51, 233, 233, 234, 235,
+ 1546, 52, 1546, 233, 16, 16, 233, 233,
+ 233, 233, 47, 232, 38, 232, 233, 51,
+ 233, 233, 234, 235, 1547, 52, 1547, 233,
+ 16, 16, 233, 233, 233, 233, 47, 1548,
+ 38, 1548, 233, 51, 233, 233, 234, 1549,
+ 52, 233, 16, 16, 233, 233, 233, 233,
+ 47, 1550, 21, 1550, 51, 223, 1549, 52,
+ 16, 16, 47, 1549, 21, 1549, 1551, 238,
+ 1551, 1551, 239, 52, 1551, 16, 16, 1551,
+ 1551, 1551, 1551, 1551, 47, 1552, 171, 1552,
+ 1553, 51, 1553, 1553, 1554, 52, 1553, 16,
+ 16, 1553, 1553, 1553, 1553, 47, 232, 38,
+ 232, 233, 51, 233, 233, 234, 235, 1555,
+ 52, 1555, 233, 16, 16, 233, 233, 233,
+ 233, 47, 232, 38, 232, 233, 51, 233,
+ 233, 234, 235, 1556, 1557, 52, 1556, 1557,
+ 233, 16, 16, 233, 233, 233, 233, 47,
+ 232, 38, 232, 233, 51, 233, 233, 234,
+ 235, 1558, 52, 1558, 233, 16, 16, 233,
+ 233, 233, 233, 47, 232, 38, 232, 233,
+ 51, 233, 233, 234, 235, 1559, 52, 1559,
+ 233, 16, 16, 233, 233, 233, 233, 47,
+ 1560, 38, 1560, 233, 51, 233, 233, 234,
+ 1561, 52, 233, 16, 16, 233, 233, 233,
+ 233, 47, 1562, 21, 1562, 51, 223, 1561,
+ 52, 16, 16, 47, 1563, 21, 1563, 237,
+ 1564, 237, 237, 239, 52, 237, 16, 16,
+ 237, 237, 237, 237, 237, 47, 232, 38,
+ 232, 233, 51, 233, 233, 234, 235, 1565,
+ 52, 1565, 233, 16, 16, 233, 233, 233,
+ 233, 47, 232, 38, 232, 233, 51, 233,
+ 233, 234, 235, 1566, 52, 1566, 233, 16,
+ 16, 233, 233, 233, 233, 47, 232, 38,
+ 232, 233, 51, 233, 233, 234, 235, 1567,
+ 52, 1567, 233, 16, 16, 233, 233, 233,
+ 233, 47, 232, 38, 232, 233, 51, 233,
+ 233, 234, 235, 1568, 52, 1568, 233, 16,
+ 16, 233, 233, 233, 233, 47, 232, 38,
+ 232, 233, 51, 233, 233, 234, 235, 1569,
+ 52, 1569, 233, 16, 16, 233, 233, 233,
+ 233, 47, 1570, 38, 1570, 233, 51, 233,
+ 233, 234, 1571, 52, 233, 16, 16, 233,
+ 233, 233, 233, 47, 1572, 21, 1572, 51,
+ 223, 1571, 52, 16, 16, 47, 1573, 21,
+ 1573, 237, 1574, 237, 237, 239, 52, 237,
+ 16, 16, 237, 237, 237, 237, 237, 47,
+ 232, 38, 232, 233, 51, 233, 233, 234,
+ 235, 1575, 1576, 52, 1575, 1576, 233, 16,
+ 16, 233, 233, 233, 233, 47, 232, 38,
+ 232, 233, 51, 233, 233, 234, 235, 1577,
+ 52, 1577, 233, 16, 16, 233, 233, 233,
+ 233, 47, 1578, 38, 1578, 233, 51, 233,
+ 233, 234, 1579, 52, 233, 16, 16, 233,
+ 233, 233, 233, 47, 1580, 21, 1580, 51,
+ 223, 1579, 52, 16, 16, 47, 1579, 21,
+ 1579, 237, 1581, 237, 237, 239, 52, 237,
+ 16, 16, 237, 237, 237, 237, 237, 47,
+ 1582, 38, 1582, 215, 1583, 216, 214, 214,
+ 213, 232, 38, 232, 233, 51, 233, 233,
+ 234, 235, 1584, 52, 1584, 233, 16, 16,
+ 233, 233, 233, 233, 47, 232, 38, 232,
+ 233, 51, 233, 233, 234, 235, 1585, 52,
+ 1585, 233, 16, 16, 233, 233, 233, 233,
+ 47, 232, 38, 232, 233, 51, 233, 233,
+ 234, 235, 1586, 52, 1586, 233, 16, 16,
+ 233, 233, 233, 233, 47, 232, 38, 232,
+ 233, 51, 233, 233, 234, 235, 1587, 52,
+ 1587, 233, 16, 16, 233, 233, 233, 233,
+ 47, 232, 38, 232, 233, 51, 233, 233,
+ 234, 235, 1588, 52, 1588, 233, 16, 16,
+ 233, 233, 233, 233, 47, 232, 38, 232,
+ 233, 51, 233, 233, 234, 235, 1589, 52,
+ 1589, 233, 16, 16, 233, 233, 233, 233,
+ 47, 1590, 38, 1590, 233, 51, 233, 233,
+ 234, 1591, 52, 233, 16, 16, 233, 233,
+ 233, 233, 47, 1592, 21, 1592, 51, 223,
+ 1591, 52, 16, 16, 47, 1593, 21, 1593,
+ 237, 1594, 237, 237, 239, 52, 237, 16,
+ 16, 237, 237, 237, 237, 237, 47, 37,
+ 38, 37, 39, 39, 39, 40, 41, 1595,
+ 1595, 39, 39, 39, 39, 39, 16, 37,
+ 38, 37, 39, 39, 39, 40, 41, 1596,
+ 1596, 39, 39, 39, 39, 39, 16, 37,
+ 38, 37, 39, 39, 39, 40, 41, 1597,
+ 1597, 39, 39, 39, 39, 39, 16, 37,
+ 38, 37, 39, 39, 39, 40, 41, 1598,
+ 1598, 39, 39, 39, 39, 39, 16, 37,
+ 38, 37, 39, 39, 39, 40, 41, 1599,
+ 1599, 39, 39, 39, 39, 39, 16, 37,
+ 38, 37, 39, 39, 39, 40, 41, 1600,
+ 1600, 39, 39, 39, 39, 39, 16, 1601,
+ 38, 1601, 39, 39, 39, 40, 1602, 39,
+ 39, 39, 39, 39, 16, 1603, 21, 1603,
+ 43, 1602, 16, 1604, 21, 1604, 46, 1605,
+ 46, 46, 48, 46, 46, 46, 46, 46,
+ 46, 16, 37, 38, 37, 39, 39, 39,
+ 40, 41, 1606, 207, 1606, 207, 39, 39,
+ 39, 39, 39, 16, 37, 38, 37, 39,
+ 39, 39, 40, 41, 1607, 1607, 39, 39,
+ 39, 39, 39, 16, 1608, 38, 1608, 39,
+ 39, 39, 40, 1609, 39, 39, 39, 39,
+ 39, 16, 1610, 21, 1610, 43, 1609, 16,
+ 1609, 21, 1609, 46, 1611, 46, 46, 48,
+ 46, 46, 46, 46, 46, 46, 16, 21,
+ 215, 1613, 214, 214, 214, 1612, 21, 219,
+ 1615, 218, 218, 218, 1614, 21, 1616, 1614,
+ 1614, 218, 1617, 21, 1617, 51, 1618, 52,
+ 16, 16, 47, 1618, 21, 1618, 1619, 51,
+ 1619, 1619, 1620, 1621, 1622, 1623, 1624, 1625,
+ 1626, 52, 1620, 1621, 1622, 1623, 1624, 1625,
+ 1626, 1619, 16, 16, 1619, 1619, 1619, 1619,
+ 1619, 47, 1627, 38, 1627, 1628, 51, 1628,
+ 1628, 1629, 1630, 52, 1628, 16, 16, 1628,
+ 1628, 1628, 1628, 47, 1631, 21, 1631, 51,
+ 1618, 1630, 52, 16, 16, 47, 1630, 21,
+ 1630, 1632, 238, 1632, 1632, 1633, 52, 1632,
+ 16, 16, 1632, 1632, 1632, 1632, 1632, 47,
+ 1634, 38, 1634, 1632, 51, 1632, 1632, 1629,
+ 52, 1632, 16, 16, 1632, 1632, 1632, 1632,
+ 47, 21, 51, 1636, 52, 16, 16, 16,
+ 1635, 1635, 1635, 47, 21, 51, 1638, 52,
+ 1639, 16, 16, 16, 1637, 1637, 1637, 47,
+ 21, 51, 1638, 52, 1639, 16, 16, 16,
+ 1640, 1640, 1640, 47, 21, 51, 1638, 52,
+ 1639, 16, 16, 16, 1641, 1641, 1641, 47,
+ 21, 51, 1638, 52, 1639, 16, 16, 16,
+ 47, 21, 51, 1643, 52, 16, 16, 16,
+ 1642, 1635, 1635, 47, 21, 51, 1644, 1638,
+ 52, 1639, 16, 16, 16, 1645, 1637, 1637,
+ 47, 21, 51, 52, 16, 16, 16, 1646,
+ 47, 21, 51, 1647, 52, 16, 16, 16,
+ 1648, 47, 21, 51, 52, 16, 16, 16,
+ 1649, 47, 21, 51, 1650, 52, 16, 16,
+ 16, 1651, 47, 21, 51, 52, 16, 16,
+ 16, 1652, 47, 21, 51, 52, 1639, 16,
+ 16, 16, 1653, 47, 21, 51, 52, 1639,
+ 16, 16, 16, 1654, 47, 21, 51, 52,
+ 1639, 16, 16, 16, 47, 1634, 38, 1634,
+ 51, 1629, 52, 16, 16, 47, 21, 51,
+ 1650, 52, 16, 16, 16, 1655, 47, 21,
+ 51, 1650, 52, 16, 16, 16, 47, 21,
+ 51, 1647, 52, 16, 16, 16, 1656, 47,
+ 21, 51, 1647, 52, 16, 16, 16, 47,
+ 21, 51, 1644, 1638, 52, 1639, 16, 16,
+ 16, 1657, 1640, 1640, 47, 21, 51, 1644,
+ 1638, 52, 1639, 16, 16, 16, 1641, 1641,
+ 1641, 47, 21, 51, 1659, 52, 1639, 16,
+ 16, 16, 1658, 1658, 1658, 47, 21, 51,
+ 1661, 52, 1639, 16, 16, 16, 1660, 1660,
+ 1660, 47, 21, 51, 1661, 52, 1639, 16,
+ 16, 16, 1662, 1662, 1662, 47, 21, 51,
+ 1661, 52, 1639, 16, 16, 16, 1663, 1663,
+ 1663, 47, 21, 51, 1661, 52, 1639, 16,
+ 16, 16, 47, 21, 51, 52, 16, 16,
+ 16, 1664, 1658, 1658, 47, 21, 51, 1644,
+ 1661, 52, 1639, 16, 16, 16, 1665, 1660,
+ 1660, 47, 21, 51, 1644, 1661, 52, 1639,
+ 16, 16, 16, 1666, 1662, 1662, 47, 21,
+ 51, 1644, 1661, 52, 1639, 16, 16, 16,
+ 1663, 1663, 1663, 47, 21, 51, 52, 16,
+ 16, 16, 1667, 47, 21, 51, 1644, 52,
+ 16, 16, 16, 1668, 47, 21, 51, 1644,
+ 52, 16, 16, 16, 1669, 47, 21, 51,
+ 1644, 52, 16, 16, 16, 47, 21, 51,
+ 1643, 52, 16, 16, 16, 47, 1627, 38,
+ 1627, 1628, 51, 1628, 1628, 1629, 1630, 1670,
+ 52, 1670, 1628, 16, 16, 1628, 1628, 1628,
+ 1628, 47, 1627, 38, 1627, 1628, 51, 1628,
+ 1628, 1629, 1630, 1671, 52, 1671, 1628, 16,
+ 16, 1628, 1628, 1628, 1628, 47, 1627, 38,
+ 1627, 1628, 51, 1628, 1628, 1629, 1630, 1672,
+ 52, 1672, 1628, 16, 16, 1628, 1628, 1628,
+ 1628, 47, 1627, 38, 1627, 1628, 51, 1628,
+ 1628, 1629, 1630, 1673, 52, 1673, 1628, 16,
+ 16, 1628, 1628, 1628, 1628, 47, 1627, 38,
+ 1627, 1628, 51, 1628, 1628, 1629, 1630, 1674,
+ 52, 1674, 1628, 16, 16, 1628, 1628, 1628,
+ 1628, 47, 1627, 38, 1627, 1628, 51, 1628,
+ 1628, 1629, 1630, 1675, 52, 1675, 1628, 16,
+ 16, 1628, 1628, 1628, 1628, 47, 1627, 38,
+ 1627, 1628, 51, 1628, 1628, 1629, 1630, 1676,
+ 52, 1676, 1628, 16, 16, 1628, 1628, 1628,
+ 1628, 47, 1627, 38, 1627, 1628, 51, 1628,
+ 1628, 1629, 1630, 1677, 52, 1677, 1628, 16,
+ 16, 1628, 1628, 1628, 1628, 47, 1678, 38,
+ 1678, 1628, 51, 1628, 1628, 1629, 1679, 52,
+ 1628, 16, 16, 1628, 1628, 1628, 1628, 47,
+ 1680, 21, 1680, 51, 1618, 1679, 52, 16,
+ 16, 47, 1679, 21, 1679, 1681, 238, 1681,
+ 1681, 1633, 52, 1681, 16, 16, 1681, 1681,
+ 1681, 1681, 1681, 47, 1682, 99, 1682, 1683,
+ 51, 1683, 1683, 1684, 52, 1683, 16, 16,
+ 1683, 1683, 1683, 1683, 47, 1627, 38, 1627,
+ 1628, 51, 1628, 1628, 1629, 1630, 1685, 52,
+ 1685, 1628, 16, 16, 1628, 1628, 1628, 1628,
+ 47, 1627, 38, 1627, 1628, 51, 1628, 1628,
+ 1629, 1630, 1686, 52, 1686, 1628, 16, 16,
+ 1628, 1628, 1628, 1628, 47, 1627, 38, 1627,
+ 1628, 51, 1628, 1628, 1629, 1630, 1687, 52,
+ 1687, 1628, 16, 16, 1628, 1628, 1628, 1628,
+ 47, 1627, 38, 1627, 1628, 51, 1628, 1628,
+ 1629, 1630, 1688, 52, 1688, 1628, 16, 16,
+ 1628, 1628, 1628, 1628, 47, 1627, 38, 1627,
+ 1628, 51, 1628, 1628, 1629, 1630, 1689, 52,
+ 1689, 1628, 16, 16, 1628, 1628, 1628, 1628,
+ 47, 1690, 38, 1690, 1628, 51, 1628, 1628,
+ 1629, 1691, 52, 1628, 16, 16, 1628, 1628,
+ 1628, 1628, 47, 1692, 21, 1692, 51, 1618,
+ 1691, 52, 16, 16, 47, 1693, 21, 1693,
+ 1632, 299, 1632, 1632, 1633, 52, 1632, 16,
+ 16, 1632, 1632, 1632, 1632, 1632, 47, 1627,
+ 38, 1627, 1628, 51, 1628, 1628, 1629, 1630,
+ 1694, 1695, 52, 1694, 1695, 1628, 16, 16,
+ 1628, 1628, 1628, 1628, 47, 1696, 38, 1696,
+ 1628, 51, 1628, 1628, 1629, 1697, 52, 1628,
+ 16, 16, 1628, 1628, 1628, 1628, 47, 1698,
+ 21, 1698, 51, 1618, 1697, 52, 16, 16,
+ 47, 1697, 21, 1697, 1632, 238, 1632, 1632,
+ 1633, 52, 1632, 16, 16, 1632, 1632, 1699,
+ 1632, 1632, 1699, 1632, 47, 1634, 38, 1634,
+ 1632, 51, 1632, 1632, 1629, 52, 1632, 16,
+ 16, 1632, 1700, 1632, 1632, 1700, 1632, 47,
+ 1634, 38, 1634, 1632, 51, 1632, 1632, 1629,
+ 52, 1632, 16, 16, 1632, 1701, 1632, 1632,
+ 1701, 1632, 47, 1634, 38, 1634, 1632, 51,
+ 1632, 1632, 1629, 52, 1632, 16, 16, 1632,
+ 1702, 1632, 1632, 1702, 1632, 47, 1634, 38,
+ 1634, 1632, 51, 1632, 1632, 1629, 52, 1632,
+ 16, 16, 1632, 1703, 1632, 1632, 1703, 1632,
+ 47, 1634, 38, 1634, 1632, 51, 1632, 1632,
+ 1629, 52, 1632, 16, 16, 1632, 1704, 1632,
+ 1632, 1704, 1632, 47, 1634, 38, 1634, 1632,
+ 51, 1632, 1632, 1629, 52, 1632, 16, 16,
+ 1632, 1705, 1632, 1632, 1705, 1632, 47, 1634,
+ 38, 1634, 1632, 51, 1632, 1632, 1629, 52,
+ 1632, 16, 16, 1632, 1706, 1632, 1632, 1706,
+ 1632, 47, 1707, 132, 1707, 51, 1708, 52,
+ 16, 16, 47, 1627, 38, 1627, 1628, 51,
+ 1628, 1628, 1629, 1630, 1709, 52, 1709, 1628,
+ 16, 16, 1628, 1628, 1628, 1628, 47, 1627,
+ 38, 1627, 1628, 51, 1628, 1628, 1629, 1630,
+ 1710, 52, 1710, 1628, 16, 16, 1628, 1628,
+ 1628, 1628, 47, 1627, 38, 1627, 1628, 51,
+ 1628, 1628, 1629, 1630, 1711, 52, 1711, 1628,
+ 16, 16, 1628, 1628, 1628, 1628, 47, 1712,
+ 38, 1712, 1628, 51, 1628, 1628, 1629, 1713,
+ 52, 1628, 16, 16, 1628, 1628, 1628, 1628,
+ 47, 1714, 21, 1714, 51, 1618, 1713, 52,
+ 16, 16, 47, 1715, 21, 1715, 1632, 1535,
+ 1632, 1632, 1633, 52, 1632, 16, 16, 1632,
+ 1632, 1632, 1632, 1632, 47, 1627, 38, 1627,
+ 1628, 51, 1628, 1628, 1629, 1630, 1716, 52,
+ 1716, 1628, 16, 16, 1628, 1628, 1628, 1628,
+ 47, 1627, 38, 1627, 1628, 51, 1628, 1628,
+ 1629, 1630, 1717, 52, 1717, 1628, 16, 16,
+ 1628, 1628, 1628, 1628, 47, 1627, 38, 1627,
+ 1628, 51, 1628, 1628, 1629, 1630, 1718, 52,
+ 1718, 1628, 16, 16, 1628, 1628, 1628, 1628,
+ 47, 1627, 38, 1627, 1628, 51, 1628, 1628,
+ 1629, 1630, 1719, 52, 1719, 1628, 16, 16,
+ 1628, 1628, 1628, 1628, 47, 1627, 38, 1627,
+ 1628, 51, 1628, 1628, 1629, 1630, 1720, 52,
+ 1720, 1628, 16, 16, 1628, 1628, 1628, 1628,
+ 47, 1721, 38, 1721, 1628, 51, 1628, 1628,
+ 1629, 1722, 52, 1628, 16, 16, 1628, 1628,
+ 1628, 1628, 47, 1723, 21, 1723, 51, 1618,
+ 1722, 52, 16, 16, 47, 1724, 21, 1724,
+ 1632, 1545, 1632, 1632, 1633, 52, 1632, 16,
+ 16, 1632, 1632, 1632, 1632, 1632, 47, 1627,
+ 38, 1627, 1628, 51, 1628, 1628, 1629, 1630,
+ 1725, 52, 1725, 1628, 16, 16, 1628, 1628,
+ 1628, 1628, 47, 1627, 38, 1627, 1628, 51,
+ 1628, 1628, 1629, 1630, 1726, 52, 1726, 1628,
+ 16, 16, 1628, 1628, 1628, 1628, 47, 1727,
+ 38, 1727, 1628, 51, 1628, 1628, 1629, 1728,
+ 52, 1628, 16, 16, 1628, 1628, 1628, 1628,
+ 47, 1729, 21, 1729, 51, 1618, 1728, 52,
+ 16, 16, 47, 1728, 21, 1728, 1730, 238,
+ 1730, 1730, 1633, 52, 1730, 16, 16, 1730,
+ 1730, 1730, 1730, 1730, 47, 1731, 171, 1731,
+ 1732, 51, 1732, 1732, 1733, 52, 1732, 16,
+ 16, 1732, 1732, 1732, 1732, 47, 1627, 38,
+ 1627, 1628, 51, 1628, 1628, 1629, 1630, 1734,
+ 52, 1734, 1628, 16, 16, 1628, 1628, 1628,
+ 1628, 47, 1627, 38, 1627, 1628, 51, 1628,
+ 1628, 1629, 1630, 1735, 1736, 52, 1735, 1736,
+ 1628, 16, 16, 1628, 1628, 1628, 1628, 47,
+ 1627, 38, 1627, 1628, 51, 1628, 1628, 1629,
+ 1630, 1737, 52, 1737, 1628, 16, 16, 1628,
+ 1628, 1628, 1628, 47, 1627, 38, 1627, 1628,
+ 51, 1628, 1628, 1629, 1630, 1738, 52, 1738,
+ 1628, 16, 16, 1628, 1628, 1628, 1628, 47,
+ 1739, 38, 1739, 1628, 51, 1628, 1628, 1629,
+ 1740, 52, 1628, 16, 16, 1628, 1628, 1628,
+ 1628, 47, 1741, 21, 1741, 51, 1618, 1740,
+ 52, 16, 16, 47, 1742, 21, 1742, 1632,
+ 1564, 1632, 1632, 1633, 52, 1632, 16, 16,
+ 1632, 1632, 1632, 1632, 1632, 47, 1627, 38,
+ 1627, 1628, 51, 1628, 1628, 1629, 1630, 1743,
+ 52, 1743, 1628, 16, 16, 1628, 1628, 1628,
+ 1628, 47, 1627, 38, 1627, 1628, 51, 1628,
+ 1628, 1629, 1630, 1744, 52, 1744, 1628, 16,
+ 16, 1628, 1628, 1628, 1628, 47, 1627, 38,
+ 1627, 1628, 51, 1628, 1628, 1629, 1630, 1745,
+ 52, 1745, 1628, 16, 16, 1628, 1628, 1628,
+ 1628, 47, 1627, 38, 1627, 1628, 51, 1628,
+ 1628, 1629, 1630, 1746, 52, 1746, 1628, 16,
+ 16, 1628, 1628, 1628, 1628, 47, 1627, 38,
+ 1627, 1628, 51, 1628, 1628, 1629, 1630, 1747,
+ 52, 1747, 1628, 16, 16, 1628, 1628, 1628,
+ 1628, 47, 1748, 38, 1748, 1628, 51, 1628,
+ 1628, 1629, 1749, 52, 1628, 16, 16, 1628,
+ 1628, 1628, 1628, 47, 1750, 21, 1750, 51,
+ 1618, 1749, 52, 16, 16, 47, 1751, 21,
+ 1751, 1632, 1574, 1632, 1632, 1633, 52, 1632,
+ 16, 16, 1632, 1632, 1632, 1632, 1632, 47,
+ 1627, 38, 1627, 1628, 51, 1628, 1628, 1629,
+ 1630, 1752, 1753, 52, 1752, 1753, 1628, 16,
+ 16, 1628, 1628, 1628, 1628, 47, 1627, 38,
+ 1627, 1628, 51, 1628, 1628, 1629, 1630, 1754,
+ 52, 1754, 1628, 16, 16, 1628, 1628, 1628,
+ 1628, 47, 1755, 38, 1755, 1628, 51, 1628,
+ 1628, 1629, 1756, 52, 1628, 16, 16, 1628,
+ 1628, 1628, 1628, 47, 1757, 21, 1757, 51,
+ 1618, 1756, 52, 16, 16, 47, 1756, 21,
+ 1756, 1632, 1758, 1632, 1632, 1633, 52, 1632,
+ 16, 16, 1632, 1632, 1632, 1632, 1632, 47,
+ 1759, 38, 1759, 215, 1760, 216, 214, 214,
+ 213, 1627, 38, 1627, 1628, 51, 1628, 1628,
+ 1629, 1630, 1761, 52, 1761, 1628, 16, 16,
+ 1628, 1628, 1628, 1628, 47, 1627, 38, 1627,
+ 1628, 51, 1628, 1628, 1629, 1630, 1762, 52,
+ 1762, 1628, 16, 16, 1628, 1628, 1628, 1628,
+ 47, 1627, 38, 1627, 1628, 51, 1628, 1628,
+ 1629, 1630, 1763, 52, 1763, 1628, 16, 16,
+ 1628, 1628, 1628, 1628, 47, 1627, 38, 1627,
+ 1628, 51, 1628, 1628, 1629, 1630, 1764, 52,
+ 1764, 1628, 16, 16, 1628, 1628, 1628, 1628,
+ 47, 1627, 38, 1627, 1628, 51, 1628, 1628,
+ 1629, 1630, 1765, 52, 1765, 1628, 16, 16,
+ 1628, 1628, 1628, 1628, 47, 1627, 38, 1627,
+ 1628, 51, 1628, 1628, 1629, 1630, 1766, 52,
+ 1766, 1628, 16, 16, 1628, 1628, 1628, 1628,
+ 47, 1767, 38, 1767, 1628, 51, 1628, 1628,
+ 1629, 1768, 52, 1628, 16, 16, 1628, 1628,
+ 1628, 1628, 47, 1769, 21, 1769, 51, 1618,
+ 1768, 52, 16, 16, 47, 1770, 21, 1770,
+ 1632, 1594, 1632, 1632, 1633, 52, 1632, 16,
+ 16, 1632, 1632, 1632, 1632, 1632, 47, 21,
+ 1771, 1771, 16, 21, 1772, 1772, 16, 21,
+ 1773, 1773, 16, 21, 1774, 1774, 16, 21,
+ 1775, 1775, 16, 1776, 21, 1776, 16, 1777,
+ 21, 16, 17, 21, 17, 16, 1778, 1778,
+ 1, 1779, 1779, 1, 1780, 1780, 1, 1781,
+ 1781, 1, 1782, 1, 1783, 1783, 1, 1,
+ 0
+};
+
+static const short _thttp_machine_parser_header_Authorization_trans_targs[] = {
+ 2, 0, 1345, 3, 4, 5, 6, 7,
+ 8, 9, 10, 11, 12, 13, 14, 15,
+ 16, 18, 1343, 19, 1337, 17, 1351, 20,
+ 21, 22, 23, 24, 24, 25, 28, 81,
+ 92, 113, 124, 130, 1205, 26, 17, 25,
+ 27, 29, 26, 27, 151, 70, 30, 32,
+ 35, 31, 31, 33, 34, 36, 69, 37,
+ 40, 38, 39, 41, 56, 42, 54, 43,
+ 44, 52, 45, 46, 50, 47, 48, 49,
+ 51, 53, 55, 57, 65, 58, 61, 59,
+ 60, 62, 63, 64, 66, 67, 68, 71,
+ 72, 73, 74, 75, 76, 77, 78, 79,
+ 78, 80, 31, 17, 80, 27, 82, 83,
+ 84, 85, 86, 87, 88, 87, 88, 89,
+ 89, 90, 91, 31, 17, 27, 93, 104,
+ 94, 95, 94, 96, 97, 98, 99, 100,
+ 101, 102, 103, 31, 17, 27, 105, 106,
+ 107, 108, 109, 108, 109, 110, 110, 111,
+ 112, 31, 17, 27, 114, 115, 116, 117,
+ 118, 119, 120, 119, 120, 121, 121, 122,
+ 123, 31, 17, 27, 125, 126, 127, 128,
+ 127, 129, 31, 17, 129, 27, 131, 132,
+ 140, 133, 134, 135, 136, 135, 136, 137,
+ 137, 138, 139, 31, 17, 27, 141, 142,
+ 143, 144, 145, 146, 147, 146, 147, 148,
+ 148, 149, 150, 31, 17, 27, 152, 1196,
+ 153, 154, 155, 154, 156, 157, 158, 31,
+ 159, 157, 158, 31, 159, 160, 160, 161,
+ 162, 202, 214, 1134, 1152, 1160, 1166, 1181,
+ 163, 162, 161, 164, 163, 165, 166, 167,
+ 160, 168, 201, 169, 172, 170, 171, 173,
+ 188, 174, 186, 175, 176, 184, 177, 178,
+ 182, 179, 180, 181, 183, 185, 187, 189,
+ 197, 190, 193, 191, 192, 194, 195, 196,
+ 198, 199, 200, 203, 204, 205, 206, 207,
+ 208, 209, 210, 211, 212, 211, 213, 160,
+ 213, 161, 215, 216, 217, 218, 219, 220,
+ 221, 220, 221, 222, 223, 224, 223, 224,
+ 225, 265, 277, 286, 1086, 1095, 1101, 1118,
+ 226, 225, 227, 226, 228, 229, 230, 160,
+ 161, 231, 264, 232, 235, 222, 233, 234,
+ 236, 251, 237, 249, 238, 239, 247, 240,
+ 241, 245, 242, 243, 244, 246, 248, 250,
+ 252, 260, 253, 256, 254, 255, 257, 258,
+ 259, 261, 262, 263, 266, 267, 268, 269,
+ 270, 271, 272, 273, 274, 275, 274, 276,
+ 223, 276, 224, 278, 279, 280, 281, 282,
+ 283, 284, 283, 284, 285, 223, 224, 287,
+ 298, 288, 289, 288, 290, 291, 292, 293,
+ 294, 295, 296, 297, 223, 224, 299, 300,
+ 301, 302, 303, 302, 303, 304, 305, 306,
+ 305, 306, 307, 348, 360, 369, 388, 1047,
+ 1053, 1070, 308, 307, 306, 309, 308, 310,
+ 311, 312, 305, 160, 161, 313, 347, 314,
+ 317, 327, 315, 316, 318, 334, 319, 332,
+ 320, 321, 330, 322, 323, 328, 324, 325,
+ 326, 329, 331, 333, 335, 343, 336, 339,
+ 337, 338, 340, 341, 342, 344, 345, 346,
+ 349, 350, 351, 352, 353, 354, 355, 356,
+ 357, 358, 357, 359, 305, 359, 306, 361,
+ 362, 363, 364, 365, 366, 367, 366, 367,
+ 368, 223, 224, 370, 381, 371, 372, 371,
+ 373, 374, 375, 376, 377, 378, 379, 380,
+ 305, 306, 382, 383, 384, 385, 386, 385,
+ 386, 387, 305, 306, 389, 390, 391, 392,
+ 393, 394, 395, 394, 395, 396, 397, 398,
+ 397, 398, 399, 440, 452, 461, 480, 489,
+ 495, 1031, 400, 399, 398, 401, 400, 402,
+ 403, 404, 397, 160, 161, 405, 439, 406,
+ 409, 419, 407, 408, 410, 426, 411, 424,
+ 412, 413, 422, 414, 415, 420, 416, 417,
+ 418, 421, 423, 425, 427, 435, 428, 431,
+ 429, 430, 432, 433, 434, 436, 437, 438,
+ 441, 442, 443, 444, 445, 446, 447, 448,
+ 449, 450, 449, 451, 397, 451, 398, 453,
+ 454, 455, 456, 457, 458, 459, 458, 459,
+ 460, 223, 224, 462, 473, 463, 464, 463,
+ 465, 466, 467, 468, 469, 470, 471, 472,
+ 397, 398, 474, 475, 476, 477, 478, 477,
+ 478, 479, 305, 306, 481, 482, 483, 484,
+ 485, 486, 487, 486, 487, 488, 397, 398,
+ 490, 491, 492, 493, 492, 494, 397, 494,
+ 398, 496, 497, 1022, 498, 499, 500, 501,
+ 500, 501, 502, 503, 504, 503, 504, 505,
+ 546, 558, 567, 586, 595, 601, 1006, 506,
+ 505, 504, 507, 506, 508, 509, 510, 503,
+ 160, 161, 511, 545, 512, 515, 525, 513,
+ 514, 516, 532, 517, 530, 518, 519, 528,
+ 520, 521, 526, 522, 523, 524, 527, 529,
+ 531, 533, 541, 534, 537, 535, 536, 538,
+ 539, 540, 542, 543, 544, 547, 548, 549,
+ 550, 551, 552, 553, 554, 555, 556, 555,
+ 557, 503, 557, 504, 559, 560, 561, 562,
+ 563, 564, 565, 564, 565, 566, 223, 224,
+ 568, 579, 569, 570, 569, 571, 572, 573,
+ 574, 575, 576, 577, 578, 503, 504, 580,
+ 581, 582, 583, 584, 583, 584, 585, 305,
+ 306, 587, 588, 589, 590, 591, 592, 593,
+ 592, 593, 594, 397, 398, 596, 597, 598,
+ 599, 598, 600, 503, 600, 504, 602, 603,
+ 609, 604, 605, 606, 607, 606, 607, 608,
+ 503, 504, 610, 611, 612, 613, 614, 615,
+ 616, 615, 616, 617, 618, 619, 618, 619,
+ 620, 661, 673, 682, 701, 710, 716, 733,
+ 621, 620, 619, 622, 621, 623, 624, 625,
+ 618, 160, 161, 626, 660, 627, 630, 640,
+ 628, 629, 631, 647, 632, 645, 633, 634,
+ 643, 635, 636, 641, 637, 638, 639, 642,
+ 644, 646, 648, 656, 649, 652, 650, 651,
+ 653, 654, 655, 657, 658, 659, 662, 663,
+ 664, 665, 666, 667, 668, 669, 670, 671,
+ 670, 672, 618, 672, 619, 674, 675, 676,
+ 677, 678, 679, 680, 679, 680, 681, 223,
+ 224, 683, 694, 684, 685, 684, 686, 687,
+ 688, 689, 690, 691, 692, 693, 618, 619,
+ 695, 696, 697, 698, 699, 698, 699, 700,
+ 305, 306, 702, 703, 704, 705, 706, 707,
+ 708, 707, 708, 709, 397, 398, 711, 712,
+ 713, 714, 713, 715, 618, 715, 619, 717,
+ 718, 724, 719, 720, 721, 722, 721, 722,
+ 723, 503, 504, 725, 726, 727, 728, 729,
+ 730, 731, 730, 731, 732, 618, 619, 734,
+ 996, 735, 736, 737, 736, 738, 739, 740,
+ 739, 740, 741, 781, 793, 801, 819, 827,
+ 833, 848, 742, 741, 740, 743, 742, 744,
+ 745, 739, 746, 780, 747, 750, 760, 748,
+ 749, 751, 767, 752, 765, 753, 754, 763,
+ 755, 756, 761, 757, 758, 759, 762, 764,
+ 766, 768, 776, 769, 772, 770, 771, 773,
+ 774, 775, 777, 778, 779, 782, 783, 784,
+ 785, 786, 787, 788, 789, 790, 791, 790,
+ 792, 739, 792, 740, 794, 795, 796, 797,
+ 798, 799, 800, 799, 800, 223, 802, 813,
+ 803, 804, 803, 805, 806, 807, 808, 809,
+ 810, 811, 812, 739, 740, 814, 815, 816,
+ 817, 818, 817, 818, 305, 820, 821, 822,
+ 823, 824, 825, 826, 825, 826, 397, 828,
+ 829, 830, 831, 830, 832, 739, 832, 740,
+ 834, 835, 840, 836, 837, 838, 839, 838,
+ 839, 503, 841, 842, 843, 844, 845, 846,
+ 847, 846, 847, 618, 849, 853, 850, 851,
+ 852, 851, 854, 855, 856, 857, 858, 859,
+ 860, 861, 860, 861, 862, 863, 862, 864,
+ 866, 865, 31, 17, 27, 867, 908, 920,
+ 929, 948, 957, 963, 980, 868, 867, 866,
+ 869, 868, 870, 871, 872, 862, 160, 161,
+ 873, 907, 874, 877, 887, 875, 876, 878,
+ 894, 879, 892, 880, 881, 890, 882, 883,
+ 888, 884, 885, 886, 889, 891, 893, 895,
+ 903, 896, 899, 897, 898, 900, 901, 902,
+ 904, 905, 906, 909, 910, 911, 912, 913,
+ 914, 915, 916, 917, 918, 917, 919, 862,
+ 919, 866, 921, 922, 923, 924, 925, 926,
+ 927, 926, 927, 928, 223, 224, 930, 941,
+ 931, 932, 931, 933, 934, 935, 936, 937,
+ 938, 939, 940, 862, 866, 942, 943, 944,
+ 945, 946, 945, 946, 947, 305, 306, 949,
+ 950, 951, 952, 953, 954, 955, 954, 955,
+ 956, 397, 398, 958, 959, 960, 961, 960,
+ 962, 862, 962, 866, 964, 965, 971, 966,
+ 967, 968, 969, 968, 969, 970, 503, 504,
+ 972, 973, 974, 975, 976, 977, 978, 977,
+ 978, 979, 618, 619, 981, 986, 982, 983,
+ 984, 983, 985, 739, 740, 987, 988, 989,
+ 990, 991, 992, 993, 994, 993, 994, 995,
+ 862, 866, 997, 998, 999, 1000, 1001, 1002,
+ 1003, 1004, 1003, 1004, 1005, 862, 866, 1007,
+ 1012, 1008, 1009, 1010, 1009, 1011, 739, 740,
+ 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020,
+ 1019, 1020, 1021, 862, 866, 1023, 1024, 1025,
+ 1026, 1027, 1028, 1029, 1028, 1029, 1030, 618,
+ 619, 1032, 1037, 1033, 1034, 1035, 1034, 1036,
+ 739, 740, 1038, 1039, 1040, 1041, 1042, 1043,
+ 1044, 1045, 1044, 1045, 1046, 862, 866, 1048,
+ 1049, 1050, 1051, 1050, 1052, 305, 1052, 306,
+ 1054, 1055, 1061, 1056, 1057, 1058, 1059, 1058,
+ 1059, 1060, 503, 504, 1062, 1063, 1064, 1065,
+ 1066, 1067, 1068, 1067, 1068, 1069, 618, 619,
+ 1071, 1076, 1072, 1073, 1074, 1073, 1075, 739,
+ 740, 1077, 1078, 1079, 1080, 1081, 1082, 1083,
+ 1084, 1083, 1084, 1085, 862, 866, 1087, 1088,
+ 1089, 1090, 1091, 1092, 1093, 1092, 1093, 1094,
+ 397, 398, 1096, 1097, 1098, 1099, 1098, 1100,
+ 223, 1100, 224, 1102, 1103, 1109, 1104, 1105,
+ 1106, 1107, 1106, 1107, 1108, 503, 504, 1110,
+ 1111, 1112, 1113, 1114, 1115, 1116, 1115, 1116,
+ 1117, 618, 619, 1119, 1124, 1120, 1121, 1122,
+ 1121, 1123, 739, 740, 1125, 1126, 1127, 1128,
+ 1129, 1130, 1131, 1132, 1131, 1132, 1133, 862,
+ 866, 1135, 1146, 1136, 1137, 1136, 1138, 1139,
+ 1140, 1141, 1142, 1143, 1144, 1145, 160, 161,
+ 1147, 1148, 1149, 1150, 1151, 1150, 1151, 327,
+ 1153, 1154, 1155, 1156, 1157, 1158, 1159, 1158,
+ 1159, 419, 1161, 1162, 1163, 1164, 1163, 1165,
+ 160, 1165, 161, 1167, 1168, 1173, 1169, 1170,
+ 1171, 1172, 1171, 1172, 525, 1174, 1175, 1176,
+ 1177, 1178, 1179, 1180, 1179, 1180, 640, 1182,
+ 1187, 1183, 1184, 1185, 1184, 1186, 739, 740,
+ 1188, 1189, 1190, 1191, 1192, 1193, 1194, 1195,
+ 1194, 1195, 887, 1197, 1198, 1199, 1200, 1201,
+ 1202, 1203, 1204, 1203, 1204, 863, 1206, 1207,
+ 1208, 1209, 1208, 1210, 1211, 1212, 1211, 1212,
+ 1213, 1213, 1214, 1215, 1255, 1267, 1275, 1293,
+ 1301, 1307, 1322, 1216, 1215, 1214, 1217, 1216,
+ 1218, 1219, 1213, 1220, 1254, 1221, 1224, 1234,
+ 1222, 1223, 1225, 1241, 1226, 1239, 1227, 1228,
+ 1237, 1229, 1230, 1235, 1231, 1232, 1233, 1236,
+ 1238, 1240, 1242, 1250, 1243, 1246, 1244, 1245,
+ 1247, 1248, 1249, 1251, 1252, 1253, 1256, 1257,
+ 1258, 1259, 1260, 1261, 1262, 1263, 1264, 1265,
+ 1264, 1266, 1213, 1266, 1214, 1268, 1269, 1270,
+ 1271, 1272, 1273, 1274, 1273, 1274, 1276, 1287,
+ 1277, 1278, 1277, 1279, 1280, 1281, 1282, 1283,
+ 1284, 1285, 1286, 1213, 1214, 1288, 1289, 1290,
+ 1291, 1292, 1291, 1292, 1294, 1295, 1296, 1297,
+ 1298, 1299, 1300, 1299, 1300, 1302, 1303, 1304,
+ 1305, 1304, 1306, 1213, 1306, 1214, 1308, 1309,
+ 1314, 1310, 1311, 1312, 1313, 1312, 1313, 1315,
+ 1316, 1317, 1318, 1319, 1320, 1321, 1320, 1321,
+ 1323, 1328, 1324, 1325, 1326, 1325, 1327, 739,
+ 740, 1329, 1330, 1331, 1332, 1333, 1334, 1335,
+ 1336, 1335, 1336, 1338, 1339, 1340, 1341, 1342,
+ 24, 1344, 1346, 1347, 1348, 1349, 1350, 2
+};
+
+static const char _thttp_machine_parser_header_Authorization_trans_actions[] = {
+ 7, 0, 9, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 33, 0,
+ 0, 0, 0, 5, 0, 1, 1, 1,
+ 1, 1, 1, 1, 1, 31, 31, 0,
+ 31, 0, 0, 0, 1, 0, 0, 0,
+ 0, 31, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 31, 0,
+ 0, 1, 21, 21, 0, 21, 0, 0,
+ 0, 0, 0, 31, 0, 0, 1, 1,
+ 0, 0, 0, 23, 23, 23, 0, 0,
+ 31, 0, 0, 1, 0, 0, 0, 0,
+ 0, 0, 0, 29, 29, 29, 0, 0,
+ 0, 31, 0, 0, 1, 1, 0, 0,
+ 0, 15, 15, 15, 0, 0, 0, 0,
+ 0, 31, 0, 0, 1, 1, 0, 0,
+ 0, 25, 25, 25, 0, 0, 31, 0,
+ 0, 1, 27, 27, 0, 27, 0, 0,
+ 0, 0, 0, 31, 0, 0, 1, 1,
+ 0, 0, 0, 13, 13, 13, 0, 0,
+ 0, 0, 0, 31, 0, 0, 1, 1,
+ 0, 0, 0, 19, 19, 19, 0, 0,
+ 0, 31, 0, 0, 0, 1, 1, 35,
+ 1, 0, 0, 17, 0, 17, 0, 0,
+ 1, 1, 1, 1, 1, 1, 1, 1,
+ 31, 0, 31, 0, 0, 0, 0, 0,
+ 31, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 31, 0, 0, 1, 21,
+ 0, 21, 0, 0, 0, 0, 0, 31,
+ 0, 0, 1, 1, 31, 31, 0, 0,
+ 1, 1, 1, 1, 1, 1, 1, 1,
+ 31, 0, 0, 0, 0, 0, 0, 23,
+ 23, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 31, 0, 0, 1,
+ 21, 0, 21, 0, 0, 0, 0, 0,
+ 31, 0, 0, 1, 1, 23, 23, 0,
+ 0, 31, 0, 0, 1, 0, 0, 0,
+ 0, 0, 0, 0, 29, 29, 0, 0,
+ 0, 31, 0, 0, 1, 1, 23, 23,
+ 0, 0, 1, 1, 1, 1, 1, 1,
+ 1, 1, 31, 0, 31, 0, 0, 0,
+ 0, 0, 31, 15, 15, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 31, 0, 0, 1, 21, 0, 21, 0,
+ 0, 0, 0, 0, 31, 0, 0, 1,
+ 1, 15, 15, 0, 0, 31, 0, 0,
+ 1, 0, 0, 0, 0, 0, 0, 0,
+ 29, 29, 0, 0, 0, 31, 0, 0,
+ 1, 1, 15, 15, 0, 0, 0, 0,
+ 0, 31, 0, 0, 1, 1, 15, 15,
+ 0, 0, 1, 1, 1, 1, 1, 1,
+ 1, 1, 31, 0, 31, 0, 0, 0,
+ 0, 0, 31, 25, 25, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 31, 0, 0, 1, 21, 0, 21, 0,
+ 0, 0, 0, 0, 31, 0, 0, 1,
+ 1, 25, 25, 0, 0, 31, 0, 0,
+ 1, 0, 0, 0, 0, 0, 0, 0,
+ 29, 29, 0, 0, 0, 31, 0, 0,
+ 1, 1, 25, 25, 0, 0, 0, 0,
+ 0, 31, 0, 0, 1, 1, 25, 25,
+ 0, 0, 31, 0, 0, 1, 27, 0,
+ 27, 0, 0, 0, 0, 0, 31, 0,
+ 0, 1, 1, 25, 25, 0, 0, 1,
+ 1, 1, 1, 1, 1, 1, 1, 31,
+ 0, 31, 0, 0, 0, 0, 0, 31,
+ 13, 13, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 31, 0, 0,
+ 1, 21, 0, 21, 0, 0, 0, 0,
+ 0, 31, 0, 0, 1, 1, 13, 13,
+ 0, 0, 31, 0, 0, 1, 0, 0,
+ 0, 0, 0, 0, 0, 29, 29, 0,
+ 0, 0, 31, 0, 0, 1, 1, 13,
+ 13, 0, 0, 0, 0, 0, 31, 0,
+ 0, 1, 1, 13, 13, 0, 0, 31,
+ 0, 0, 1, 27, 0, 27, 0, 0,
+ 0, 0, 0, 31, 0, 0, 1, 1,
+ 13, 13, 0, 0, 0, 0, 0, 31,
+ 0, 0, 1, 1, 13, 13, 0, 0,
+ 1, 1, 1, 1, 1, 1, 1, 1,
+ 31, 0, 31, 0, 0, 0, 0, 0,
+ 31, 19, 19, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 31, 0,
+ 0, 1, 21, 0, 21, 0, 0, 0,
+ 0, 0, 31, 0, 0, 1, 1, 19,
+ 19, 0, 0, 31, 0, 0, 1, 0,
+ 0, 0, 0, 0, 0, 0, 29, 29,
+ 0, 0, 0, 31, 0, 0, 1, 1,
+ 19, 19, 0, 0, 0, 0, 0, 31,
+ 0, 0, 1, 1, 19, 19, 0, 0,
+ 31, 0, 0, 1, 27, 0, 27, 0,
+ 0, 0, 0, 0, 31, 0, 0, 1,
+ 1, 19, 19, 0, 0, 0, 0, 0,
+ 31, 0, 0, 1, 1, 19, 19, 0,
+ 0, 0, 31, 0, 0, 0, 38, 38,
+ 0, 0, 1, 1, 1, 1, 1, 1,
+ 1, 1, 31, 0, 31, 0, 0, 0,
+ 0, 31, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 31, 0, 0,
+ 1, 21, 0, 21, 0, 0, 0, 0,
+ 0, 31, 0, 0, 1, 59, 0, 0,
+ 31, 0, 0, 1, 0, 0, 0, 0,
+ 0, 0, 0, 29, 29, 0, 0, 0,
+ 31, 0, 0, 1, 35, 0, 0, 0,
+ 0, 0, 31, 0, 0, 1, 59, 0,
+ 0, 31, 0, 0, 1, 27, 0, 27,
+ 0, 0, 0, 0, 0, 31, 0, 0,
+ 1, 35, 0, 0, 0, 0, 0, 31,
+ 0, 0, 1, 59, 0, 0, 0, 31,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 31, 0, 0, 1, 35, 0, 0, 0,
+ 0, 0, 11, 11, 11, 1, 1, 1,
+ 1, 1, 1, 1, 1, 31, 0, 31,
+ 0, 0, 0, 0, 0, 31, 11, 11,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 31, 0, 0, 1, 21,
+ 0, 21, 0, 0, 0, 0, 0, 31,
+ 0, 0, 1, 1, 11, 11, 0, 0,
+ 31, 0, 0, 1, 0, 0, 0, 0,
+ 0, 0, 0, 29, 29, 0, 0, 0,
+ 31, 0, 0, 1, 1, 11, 11, 0,
+ 0, 0, 0, 0, 31, 0, 0, 1,
+ 1, 11, 11, 0, 0, 31, 0, 0,
+ 1, 27, 0, 27, 0, 0, 0, 0,
+ 0, 31, 0, 0, 1, 1, 11, 11,
+ 0, 0, 0, 0, 0, 31, 0, 0,
+ 1, 1, 11, 11, 0, 0, 0, 31,
+ 0, 0, 0, 50, 50, 0, 0, 0,
+ 0, 0, 0, 31, 0, 0, 1, 1,
+ 11, 11, 0, 0, 0, 0, 0, 0,
+ 31, 0, 0, 1, 1, 19, 19, 0,
+ 0, 0, 31, 0, 0, 0, 53, 53,
+ 0, 0, 0, 0, 0, 0, 31, 0,
+ 0, 1, 1, 13, 13, 0, 0, 0,
+ 0, 0, 31, 0, 0, 1, 1, 25,
+ 25, 0, 0, 0, 31, 0, 0, 0,
+ 44, 44, 0, 0, 0, 0, 0, 0,
+ 31, 0, 0, 1, 1, 25, 25, 0,
+ 0, 31, 0, 0, 1, 27, 0, 27,
+ 0, 0, 0, 0, 0, 31, 0, 0,
+ 1, 1, 15, 15, 0, 0, 0, 0,
+ 0, 31, 0, 0, 1, 1, 15, 15,
+ 0, 0, 0, 31, 0, 0, 0, 56,
+ 56, 0, 0, 0, 0, 0, 0, 31,
+ 0, 0, 1, 1, 15, 15, 0, 0,
+ 0, 0, 0, 31, 0, 0, 1, 1,
+ 23, 23, 0, 0, 31, 0, 0, 1,
+ 27, 0, 27, 0, 0, 0, 0, 0,
+ 31, 0, 0, 1, 1, 23, 23, 0,
+ 0, 0, 0, 0, 31, 0, 0, 1,
+ 1, 23, 23, 0, 0, 0, 31, 0,
+ 0, 0, 41, 41, 0, 0, 0, 0,
+ 0, 0, 31, 0, 0, 1, 1, 23,
+ 23, 0, 0, 31, 0, 0, 1, 0,
+ 0, 0, 0, 0, 0, 0, 29, 29,
+ 0, 0, 0, 31, 0, 0, 1, 1,
+ 0, 0, 0, 0, 0, 31, 0, 0,
+ 1, 1, 0, 0, 31, 0, 0, 1,
+ 27, 0, 27, 0, 0, 0, 0, 0,
+ 31, 0, 0, 1, 1, 0, 0, 0,
+ 0, 0, 31, 0, 0, 1, 1, 0,
+ 0, 0, 31, 0, 0, 0, 47, 47,
+ 0, 0, 0, 0, 0, 0, 31, 0,
+ 0, 1, 1, 0, 0, 0, 0, 0,
+ 0, 31, 0, 0, 1, 1, 0, 0,
+ 31, 0, 0, 0, 1, 1, 0, 0,
+ 17, 0, 0, 1, 1, 1, 1, 1,
+ 1, 1, 1, 31, 0, 31, 0, 0,
+ 0, 0, 31, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 31, 0,
+ 0, 1, 21, 0, 21, 0, 0, 0,
+ 0, 0, 31, 0, 0, 1, 0, 0,
+ 31, 0, 0, 1, 0, 0, 0, 0,
+ 0, 0, 0, 29, 29, 0, 0, 0,
+ 31, 0, 0, 1, 0, 0, 0, 0,
+ 0, 31, 0, 0, 1, 0, 0, 31,
+ 0, 0, 1, 27, 0, 27, 0, 0,
+ 0, 0, 0, 31, 0, 0, 1, 0,
+ 0, 0, 0, 0, 31, 0, 0, 1,
+ 0, 0, 0, 31, 0, 0, 0, 62,
+ 62, 0, 0, 0, 0, 0, 0, 31,
+ 0, 0, 1, 0, 0, 0, 0, 0,
+ 3, 0, 0, 0, 0, 0, 0, 0
+};
+
+static const int thttp_machine_parser_header_Authorization_start = 1;
+static const int thttp_machine_parser_header_Authorization_first_final = 1351;
+static const int thttp_machine_parser_header_Authorization_error = 0;
+
+static const int thttp_machine_parser_header_Authorization_en_main = 1;
+
+
+/* #line 226 "./ragel/thttp_parser_header_Authorization.rl" */
+
+/* #line 6706 "./src/headers/thttp_header_Authorization.c" */
+ {
+ cs = thttp_machine_parser_header_Authorization_start;
+ }
+
+/* #line 227 "./ragel/thttp_parser_header_Authorization.rl" */
+
+/* #line 6713 "./src/headers/thttp_header_Authorization.c" */
+ {
+ int _klen;
+ unsigned int _trans;
+ const char *_acts;
+ unsigned int _nacts;
+ const char *_keys;
+
+ if ( p == pe )
+ goto _test_eof;
+ if ( cs == 0 )
+ goto _out;
+_resume:
+ _keys = _thttp_machine_parser_header_Authorization_trans_keys + _thttp_machine_parser_header_Authorization_key_offsets[cs];
+ _trans = _thttp_machine_parser_header_Authorization_index_offsets[cs];
+
+ _klen = _thttp_machine_parser_header_Authorization_single_lengths[cs];
+ if ( _klen > 0 ) {
+ const char *_lower = _keys;
+ const char *_mid;
+ const char *_upper = _keys + _klen - 1;
+ while (1) {
+ if ( _upper < _lower )
+ break;
+
+ _mid = _lower + ((_upper-_lower) >> 1);
+ if ( (*p) < *_mid )
+ _upper = _mid - 1;
+ else if ( (*p) > *_mid )
+ _lower = _mid + 1;
+ else {
+ _trans += (_mid - _keys);
+ goto _match;
+ }
+ }
+ _keys += _klen;
+ _trans += _klen;
+ }
+
+ _klen = _thttp_machine_parser_header_Authorization_range_lengths[cs];
+ if ( _klen > 0 ) {
+ const char *_lower = _keys;
+ const char *_mid;
+ const char *_upper = _keys + (_klen<<1) - 2;
+ while (1) {
+ if ( _upper < _lower )
+ break;
+
+ _mid = _lower + (((_upper-_lower) >> 1) & ~1);
+ if ( (*p) < _mid[0] )
+ _upper = _mid - 2;
+ else if ( (*p) > _mid[1] )
+ _lower = _mid + 2;
+ else {
+ _trans += ((_mid - _keys)>>1);
+ goto _match;
+ }
+ }
+ _trans += _klen;
+ }
+
+_match:
+ _trans = _thttp_machine_parser_header_Authorization_indicies[_trans];
+ cs = _thttp_machine_parser_header_Authorization_trans_targs[_trans];
+
+ if ( _thttp_machine_parser_header_Authorization_trans_actions[_trans] == 0 )
+ goto _again;
+
+ _acts = _thttp_machine_parser_header_Authorization_actions + _thttp_machine_parser_header_Authorization_trans_actions[_trans];
+ _nacts = (unsigned int) *_acts++;
+ while ( _nacts-- > 0 )
+ {
+ switch ( *_acts++ )
+ {
+ case 0:
+/* #line 49 "./ragel/thttp_parser_header_Authorization.rl" */
+ {
+ tag_start = p;
+ }
+ break;
+ case 1:
+/* #line 53 "./ragel/thttp_parser_header_Authorization.rl" */
+ {
+ hdr_Authorization->scheme = tsk_strdup("Digest");
+ }
+ break;
+ case 2:
+/* #line 57 "./ragel/thttp_parser_header_Authorization.rl" */
+ {
+ hdr_Authorization->scheme = tsk_strdup("Basic");
+ }
+ break;
+ case 3:
+/* #line 61 "./ragel/thttp_parser_header_Authorization.rl" */
+ {
+ THTTP_HEADER(hdr_Authorization)->type = thttp_htype_Authorization;
+ }
+ break;
+ case 4:
+/* #line 65 "./ragel/thttp_parser_header_Authorization.rl" */
+ {
+ THTTP_HEADER(hdr_Authorization)->type = thttp_htype_Proxy_Authorization;
+ }
+ break;
+ case 5:
+/* #line 69 "./ragel/thttp_parser_header_Authorization.rl" */
+ {
+ TSK_PARSER_SET_STRING(hdr_Authorization->username);
+ tsk_strunquote(&hdr_Authorization->username);
+ }
+ break;
+ case 6:
+/* #line 74 "./ragel/thttp_parser_header_Authorization.rl" */
+ {
+ TSK_PARSER_SET_STRING(hdr_Authorization->realm);
+ tsk_strunquote(&hdr_Authorization->realm);
+ }
+ break;
+ case 7:
+/* #line 79 "./ragel/thttp_parser_header_Authorization.rl" */
+ {
+ TSK_PARSER_SET_STRING(hdr_Authorization->nonce);
+ tsk_strunquote(&hdr_Authorization->nonce);
+ }
+ break;
+ case 8:
+/* #line 84 "./ragel/thttp_parser_header_Authorization.rl" */
+ {
+ TSK_PARSER_SET_STRING(hdr_Authorization->uri);
+ }
+ break;
+ case 9:
+/* #line 88 "./ragel/thttp_parser_header_Authorization.rl" */
+ {
+ TSK_PARSER_SET_STRING(hdr_Authorization->response);
+ tsk_strunquote(&hdr_Authorization->response);
+ }
+ break;
+ case 10:
+/* #line 93 "./ragel/thttp_parser_header_Authorization.rl" */
+ {
+ TSK_PARSER_SET_STRING(hdr_Authorization->algorithm);
+ }
+ break;
+ case 11:
+/* #line 97 "./ragel/thttp_parser_header_Authorization.rl" */
+ {
+ TSK_PARSER_SET_STRING(hdr_Authorization->cnonce);
+ tsk_strunquote(&hdr_Authorization->cnonce);
+ }
+ break;
+ case 12:
+/* #line 102 "./ragel/thttp_parser_header_Authorization.rl" */
+ {
+ TSK_PARSER_SET_STRING(hdr_Authorization->opaque);
+ tsk_strunquote(&hdr_Authorization->opaque);
+ }
+ break;
+ case 13:
+/* #line 107 "./ragel/thttp_parser_header_Authorization.rl" */
+ {
+ TSK_PARSER_SET_STRING(hdr_Authorization->qop);
+ //tsk_strunquote(&hdr_Authorization->qop);
+ }
+ break;
+ case 14:
+/* #line 112 "./ragel/thttp_parser_header_Authorization.rl" */
+ {
+ TSK_PARSER_SET_STRING(hdr_Authorization->nc);
+ }
+ break;
+ case 15:
+/* #line 116 "./ragel/thttp_parser_header_Authorization.rl" */
+ {
+ TSK_PARSER_ADD_PARAM(THTTP_HEADER_PARAMS(hdr_Authorization));
+ }
+ break;
+ case 16:
+/* #line 120 "./ragel/thttp_parser_header_Authorization.rl" */
+ {
+ }
+ break;
+/* #line 6895 "./src/headers/thttp_header_Authorization.c" */
+ }
+ }
+
+_again:
+ if ( cs == 0 )
+ goto _out;
+ if ( ++p != pe )
+ goto _resume;
+ _test_eof: {}
+ _out: {}
+ }
+
+/* #line 228 "./ragel/thttp_parser_header_Authorization.rl" */
+
+ if( cs <
+/* #line 6911 "./src/headers/thttp_header_Authorization.c" */
+1351
+/* #line 229 "./ragel/thttp_parser_header_Authorization.rl" */
+ ){
+ TSK_DEBUG_ERROR("Failed to parse Authorization header.");
+ TSK_OBJECT_SAFE_FREE(hdr_Authorization);
+ }
+
+ return hdr_Authorization;
+}
+
+/**@ingroup thttp_header_group
+*/
+thttp_header_Proxy_Authorization_t *thttp_header_Proxy_Authorization_parse(const char *data, tsk_size_t size)
+{
+ return thttp_header_Authorization_parse(data, size);
+}
+
+
+
+//========================================================
+// Authorization header object definition
+//
+
+static tsk_object_t* thttp_header_Authorization_ctor(tsk_object_t *self, va_list * app)
+{
+ thttp_header_Authorization_t *Authorization = self;
+ if(Authorization){
+ THTTP_HEADER(Authorization)->type = thttp_htype_Authorization;
+ THTTP_HEADER(Authorization)->tostring = thttp_header_Authorization_tostring;
+ }
+ else{
+ TSK_DEBUG_ERROR("Failed to create new Authorization header.");
+ }
+ return self;
+}
+
+static tsk_object_t* thttp_header_Authorization_dtor(tsk_object_t *self)
+{
+ thttp_header_Authorization_t *Authorization = self;
+ if(Authorization){
+ TSK_FREE(Authorization->scheme);
+ TSK_FREE(Authorization->username);
+ TSK_FREE(Authorization->realm);
+ TSK_FREE(Authorization->nonce);
+ TSK_FREE(Authorization->uri);
+ TSK_FREE(Authorization->response);
+ TSK_FREE(Authorization->algorithm);
+ TSK_FREE(Authorization->cnonce);
+ TSK_FREE(Authorization->opaque);
+ TSK_FREE(Authorization->qop);
+ TSK_FREE(Authorization->nc);
+
+ TSK_OBJECT_SAFE_FREE(THTTP_HEADER_PARAMS(Authorization));
+ }
+ else{
+ TSK_DEBUG_ERROR("Null Authorization header.");
+ }
+
+ return self;
+}
+
+static const tsk_object_def_t thttp_header_Authorization_def_s =
+{
+ sizeof(thttp_header_Authorization_t),
+ thttp_header_Authorization_ctor,
+ thttp_header_Authorization_dtor,
+ tsk_null
+};
+const tsk_object_def_t *thttp_header_Authorization_def_t = &thttp_header_Authorization_def_s;
diff --git a/tinyHTTP/src/headers/thttp_header_Content_Length.c b/tinyHTTP/src/headers/thttp_header_Content_Length.c
new file mode 100644
index 0000000..8b6e29a
--- /dev/null
+++ b/tinyHTTP/src/headers/thttp_header_Content_Length.c
@@ -0,0 +1,312 @@
+
+/* #line 1 "./ragel/thttp_parser_header_Content_Length.rl" */
+/*
+* Copyright (C) 2009-2010 Mamadou Diop.
+*
+* Contact: Mamadou Diop <diopmamadou(at)doubango.org>
+*
+* This file is part of Open Source Doubango Framework.
+*
+* DOUBANGO is free software: you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published by
+* the Free Software Foundation, either version 3 of the License, or
+* (at your option) any later version.
+*
+* DOUBANGO is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with DOUBANGO.
+*
+*/
+
+/**@file thttp_header_Content_Length.c
+ * @brief HTTP Content-Length header.
+ *
+ * @author Mamadou Diop <diopmamadou(at)doubango.org>
+ *
+ * @date Created: Sat Nov 8 16:54:58 2009 mdiop
+ */
+#include "tinyhttp/headers/thttp_header_Content_Length.h"
+
+#include "tsk_debug.h"
+#include "tsk_memory.h"
+
+/***********************************
+* Ragel state machine.
+*/
+
+/* #line 60 "./ragel/thttp_parser_header_Content_Length.rl" */
+
+
+thttp_header_Content_Length_t* thttp_header_content_length_create(uint32_t length)
+{
+ return tsk_object_new(THTTP_HEADER_CONTENT_LENGTH_VA_ARGS(length));
+}
+
+int thttp_header_Content_Length_tostring(const thttp_header_t* header, tsk_buffer_t* output)
+{
+ if(header){
+ const thttp_header_Content_Length_t *Content_Length = (const thttp_header_Content_Length_t*)header;
+ return tsk_buffer_append_2(output, "%d", Content_Length->length);
+ }
+
+ return -1;
+}
+
+/**@ingroup thttp_header_group
+*/
+thttp_header_Content_Length_t *thttp_header_Content_Length_parse(const char *data, tsk_size_t size)
+{
+ int cs = 0;
+ const char *p = data;
+ const char *pe = p + size;
+ const char *eof = pe;
+ thttp_header_Content_Length_t *hdr_clength = thttp_header_content_length_create(0);
+
+ const char *tag_start;
+
+
+/* #line 73 "./src/headers/thttp_header_Content_Length.c" */
+static const char _thttp_machine_parser_header_Content_Length_actions[] = {
+ 0, 1, 0, 1, 1, 1, 2
+};
+
+static const char _thttp_machine_parser_header_Content_Length_key_offsets[] = {
+ 0, 0, 2, 4, 6, 8, 10, 12,
+ 14, 15, 17, 19, 21, 23, 25, 27,
+ 30, 35, 36, 38, 42, 45, 46
+};
+
+static const char _thttp_machine_parser_header_Content_Length_trans_keys[] = {
+ 67, 99, 79, 111, 78, 110, 84, 116,
+ 69, 101, 78, 110, 84, 116, 45, 76,
+ 108, 69, 101, 78, 110, 71, 103, 84,
+ 116, 72, 104, 9, 32, 58, 9, 13,
+ 32, 48, 57, 10, 9, 32, 9, 32,
+ 48, 57, 13, 48, 57, 10, 0
+};
+
+static const char _thttp_machine_parser_header_Content_Length_single_lengths[] = {
+ 0, 2, 2, 2, 2, 2, 2, 2,
+ 1, 2, 2, 2, 2, 2, 2, 3,
+ 3, 1, 2, 2, 1, 1, 0
+};
+
+static const char _thttp_machine_parser_header_Content_Length_range_lengths[] = {
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 1, 0, 0, 1, 1, 0, 0
+};
+
+static const char _thttp_machine_parser_header_Content_Length_index_offsets[] = {
+ 0, 0, 3, 6, 9, 12, 15, 18,
+ 21, 23, 26, 29, 32, 35, 38, 41,
+ 45, 50, 52, 55, 59, 62, 64
+};
+
+static const char _thttp_machine_parser_header_Content_Length_indicies[] = {
+ 0, 0, 1, 2, 2, 1, 3, 3,
+ 1, 4, 4, 1, 5, 5, 1, 6,
+ 6, 1, 7, 7, 1, 8, 1, 9,
+ 9, 1, 10, 10, 1, 11, 11, 1,
+ 12, 12, 1, 13, 13, 1, 14, 14,
+ 1, 14, 14, 15, 1, 15, 16, 15,
+ 17, 1, 18, 1, 19, 19, 1, 19,
+ 19, 17, 1, 20, 21, 1, 22, 1,
+ 1, 0
+};
+
+static const char _thttp_machine_parser_header_Content_Length_trans_targs[] = {
+ 2, 0, 3, 4, 5, 6, 7, 8,
+ 9, 10, 11, 12, 13, 14, 15, 16,
+ 17, 20, 18, 19, 21, 20, 22
+};
+
+static const char _thttp_machine_parser_header_Content_Length_trans_actions[] = {
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 1, 0, 0, 3, 0, 5
+};
+
+static const int thttp_machine_parser_header_Content_Length_start = 1;
+static const int thttp_machine_parser_header_Content_Length_first_final = 22;
+static const int thttp_machine_parser_header_Content_Length_error = 0;
+
+static const int thttp_machine_parser_header_Content_Length_en_main = 1;
+
+
+/* #line 90 "./ragel/thttp_parser_header_Content_Length.rl" */
+
+/* #line 144 "./src/headers/thttp_header_Content_Length.c" */
+ {
+ cs = thttp_machine_parser_header_Content_Length_start;
+ }
+
+/* #line 91 "./ragel/thttp_parser_header_Content_Length.rl" */
+
+/* #line 151 "./src/headers/thttp_header_Content_Length.c" */
+ {
+ int _klen;
+ unsigned int _trans;
+ const char *_acts;
+ unsigned int _nacts;
+ const char *_keys;
+
+ if ( p == pe )
+ goto _test_eof;
+ if ( cs == 0 )
+ goto _out;
+_resume:
+ _keys = _thttp_machine_parser_header_Content_Length_trans_keys + _thttp_machine_parser_header_Content_Length_key_offsets[cs];
+ _trans = _thttp_machine_parser_header_Content_Length_index_offsets[cs];
+
+ _klen = _thttp_machine_parser_header_Content_Length_single_lengths[cs];
+ if ( _klen > 0 ) {
+ const char *_lower = _keys;
+ const char *_mid;
+ const char *_upper = _keys + _klen - 1;
+ while (1) {
+ if ( _upper < _lower )
+ break;
+
+ _mid = _lower + ((_upper-_lower) >> 1);
+ if ( (*p) < *_mid )
+ _upper = _mid - 1;
+ else if ( (*p) > *_mid )
+ _lower = _mid + 1;
+ else {
+ _trans += (_mid - _keys);
+ goto _match;
+ }
+ }
+ _keys += _klen;
+ _trans += _klen;
+ }
+
+ _klen = _thttp_machine_parser_header_Content_Length_range_lengths[cs];
+ if ( _klen > 0 ) {
+ const char *_lower = _keys;
+ const char *_mid;
+ const char *_upper = _keys + (_klen<<1) - 2;
+ while (1) {
+ if ( _upper < _lower )
+ break;
+
+ _mid = _lower + (((_upper-_lower) >> 1) & ~1);
+ if ( (*p) < _mid[0] )
+ _upper = _mid - 2;
+ else if ( (*p) > _mid[1] )
+ _lower = _mid + 2;
+ else {
+ _trans += ((_mid - _keys)>>1);
+ goto _match;
+ }
+ }
+ _trans += _klen;
+ }
+
+_match:
+ _trans = _thttp_machine_parser_header_Content_Length_indicies[_trans];
+ cs = _thttp_machine_parser_header_Content_Length_trans_targs[_trans];
+
+ if ( _thttp_machine_parser_header_Content_Length_trans_actions[_trans] == 0 )
+ goto _again;
+
+ _acts = _thttp_machine_parser_header_Content_Length_actions + _thttp_machine_parser_header_Content_Length_trans_actions[_trans];
+ _nacts = (unsigned int) *_acts++;
+ while ( _nacts-- > 0 )
+ {
+ switch ( *_acts++ )
+ {
+ case 0:
+/* #line 44 "./ragel/thttp_parser_header_Content_Length.rl" */
+ {
+ tag_start = p;
+ }
+ break;
+ case 1:
+/* #line 48 "./ragel/thttp_parser_header_Content_Length.rl" */
+ {
+ TSK_PARSER_SET_INTEGER(hdr_clength->length);
+ }
+ break;
+ case 2:
+/* #line 52 "./ragel/thttp_parser_header_Content_Length.rl" */
+ {
+ }
+ break;
+/* #line 242 "./src/headers/thttp_header_Content_Length.c" */
+ }
+ }
+
+_again:
+ if ( cs == 0 )
+ goto _out;
+ if ( ++p != pe )
+ goto _resume;
+ _test_eof: {}
+ _out: {}
+ }
+
+/* #line 92 "./ragel/thttp_parser_header_Content_Length.rl" */
+
+ if( cs <
+/* #line 258 "./src/headers/thttp_header_Content_Length.c" */
+22
+/* #line 93 "./ragel/thttp_parser_header_Content_Length.rl" */
+ ){
+ TSK_OBJECT_SAFE_FREE(hdr_clength);
+ }
+
+ return hdr_clength;
+}
+
+
+
+
+
+
+
+//========================================================
+// Content_Length header object definition
+//
+
+static tsk_object_t* thttp_header_Content_Length_ctor(tsk_object_t *self, va_list * app)
+{
+ thttp_header_Content_Length_t *Content_Length = self;
+ if(Content_Length){
+ Content_Length->length = va_arg(*app, uint32_t);
+
+ THTTP_HEADER(Content_Length)->type = thttp_htype_Content_Length;
+ THTTP_HEADER(Content_Length)->tostring = thttp_header_Content_Length_tostring;
+ }
+ else{
+ TSK_DEBUG_ERROR("Failed to create new Content_Length header.");
+ }
+ return self;
+}
+
+static tsk_object_t* thttp_header_Content_Length_dtor(tsk_object_t *self)
+{
+ thttp_header_Content_Length_t *Content_Length = self;
+ if(Content_Length){
+ TSK_OBJECT_SAFE_FREE(THTTP_HEADER_PARAMS(Content_Length));
+ }
+ else{
+ TSK_DEBUG_ERROR("Null Content_Length header.");
+ }
+
+ return self;
+}
+
+static const tsk_object_def_t thttp_header_Content_Length_def_s =
+{
+ sizeof(thttp_header_Content_Length_t),
+ thttp_header_Content_Length_ctor,
+ thttp_header_Content_Length_dtor,
+ tsk_null
+};
+const tsk_object_def_t *thttp_header_Content_Length_def_t = &thttp_header_Content_Length_def_s;
diff --git a/tinyHTTP/src/headers/thttp_header_Content_Type.c b/tinyHTTP/src/headers/thttp_header_Content_Type.c
new file mode 100644
index 0000000..d892990
--- /dev/null
+++ b/tinyHTTP/src/headers/thttp_header_Content_Type.c
@@ -0,0 +1,418 @@
+
+/* #line 1 "./ragel/thttp_parser_header_Content_Type.rl" */
+/*
+* Copyright (C) 2009-2010 Mamadou Diop.
+*
+* Contact: Mamadou Diop <diopmamadou(at)doubango.org>
+*
+* This file is part of Open Source Doubango Framework.
+*
+* DOUBANGO is free software: you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published by
+* the Free Software Foundation, either version 3 of the License, or
+* (at your option) any later version.
+*
+* DOUBANGO is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with DOUBANGO.
+*
+*/
+
+/**@file thttp_header_Content_Type.c
+ * @brief HTTP Content-Type header.
+ *
+ * @author Mamadou Diop <diopmamadou(at)doubango.org>
+ *
+ * @date Created: Sat Nov 8 16:54:58 2009 mdiop
+ */
+#include "tinyhttp/headers/thttp_header_Content_Type.h"
+
+#include "tsk_debug.h"
+#include "tsk_memory.h"
+
+#include <string.h>
+
+/***********************************
+* Ragel state machine.
+*/
+
+/* #line 79 "./ragel/thttp_parser_header_Content_Type.rl" */
+
+
+thttp_header_Content_Type_t* thttp_header_content_type_create(const char* type)
+{
+ return tsk_object_new(THTTP_HEADER_CONTENT_TYPE_VA_ARGS(type));
+}
+
+thttp_header_Content_Type_t* thttp_header_content_type_create_null()
+{
+ return thttp_header_content_type_create(tsk_null);
+}
+
+int thttp_header_Content_Type_tostring(const thttp_header_t* header, tsk_buffer_t* output)
+{
+ if(header){
+ const thttp_header_Content_Type_t *Content_Type = (const thttp_header_Content_Type_t*)header;
+ return tsk_buffer_append(output, Content_Type->type, tsk_strlen(Content_Type->type));
+ }
+
+ return -1;
+}
+
+/**@ingroup thttp_header_group
+*/
+thttp_header_Content_Type_t *thttp_header_Content_Type_parse(const char *data, tsk_size_t size)
+{
+ int cs = 0;
+ const char *p = data;
+ const char *pe = p + size;
+ const char *eof = pe;
+ thttp_header_Content_Type_t *hdr_ctype = thttp_header_content_type_create_null();
+
+ const char *tag_start;
+
+
+/* #line 80 "./src/headers/thttp_header_Content_Type.c" */
+static const char _thttp_machine_parser_header_Content_Type_actions[] = {
+ 0, 1, 0, 1, 1, 1, 2, 1,
+ 3
+};
+
+static const short _thttp_machine_parser_header_Content_Type_key_offsets[] = {
+ 0, 0, 2, 4, 6, 8, 10, 12,
+ 14, 15, 17, 19, 21, 23, 26, 43,
+ 44, 46, 62, 78, 82, 83, 85, 88,
+ 105, 106, 108, 124, 142, 146, 147, 149,
+ 152, 169, 170, 172, 188, 206, 210, 211,
+ 213, 216, 234, 235, 237, 255, 256, 258,
+ 261, 269, 270, 272, 276, 277, 283, 301
+};
+
+static const char _thttp_machine_parser_header_Content_Type_trans_keys[] = {
+ 67, 99, 79, 111, 78, 110, 84, 116,
+ 69, 101, 78, 110, 84, 116, 45, 84,
+ 116, 89, 121, 80, 112, 69, 101, 9,
+ 32, 58, 9, 13, 32, 33, 37, 39,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 10, 9, 32, 9, 32,
+ 33, 37, 39, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 37, 39, 47, 126, 42, 43,
+ 45, 57, 65, 90, 95, 122, 9, 13,
+ 32, 47, 10, 9, 32, 9, 32, 47,
+ 9, 13, 32, 33, 37, 39, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 10, 9, 32, 9, 32, 33, 37,
+ 39, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 37, 39, 59, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 59, 10, 9, 32, 9, 32, 59,
+ 9, 13, 32, 33, 37, 39, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 10, 9, 32, 9, 32, 33, 37,
+ 39, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 37, 39, 61, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 61, 10, 9, 32, 9, 32, 61,
+ 9, 13, 32, 33, 34, 37, 39, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 10, 9, 32, 9, 13, 32,
+ 33, 34, 37, 39, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 10,
+ 9, 32, 9, 32, 34, 13, 34, 92,
+ 127, 0, 8, 10, 31, 10, 9, 32,
+ 9, 13, 32, 59, 10, 0, 9, 11,
+ 12, 14, 127, 9, 13, 32, 33, 37,
+ 39, 59, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 0
+};
+
+static const char _thttp_machine_parser_header_Content_Type_single_lengths[] = {
+ 0, 2, 2, 2, 2, 2, 2, 2,
+ 1, 2, 2, 2, 2, 3, 7, 1,
+ 2, 6, 8, 4, 1, 2, 3, 7,
+ 1, 2, 6, 8, 4, 1, 2, 3,
+ 7, 1, 2, 6, 8, 4, 1, 2,
+ 3, 8, 1, 2, 8, 1, 2, 3,
+ 4, 1, 2, 4, 1, 0, 8, 0
+};
+
+static const char _thttp_machine_parser_header_Content_Type_range_lengths[] = {
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 5, 0,
+ 0, 5, 4, 0, 0, 0, 0, 5,
+ 0, 0, 5, 5, 0, 0, 0, 0,
+ 5, 0, 0, 5, 5, 0, 0, 0,
+ 0, 5, 0, 0, 5, 0, 0, 0,
+ 2, 0, 0, 0, 0, 3, 5, 0
+};
+
+static const short _thttp_machine_parser_header_Content_Type_index_offsets[] = {
+ 0, 0, 3, 6, 9, 12, 15, 18,
+ 21, 23, 26, 29, 32, 35, 39, 52,
+ 54, 57, 69, 82, 87, 89, 92, 96,
+ 109, 111, 114, 126, 140, 145, 147, 150,
+ 154, 167, 169, 172, 184, 198, 203, 205,
+ 208, 212, 226, 228, 231, 245, 247, 250,
+ 254, 261, 263, 266, 271, 273, 277, 291
+};
+
+static const char _thttp_machine_parser_header_Content_Type_indicies[] = {
+ 0, 0, 1, 2, 2, 1, 3, 3,
+ 1, 4, 4, 1, 5, 5, 1, 6,
+ 6, 1, 7, 7, 1, 8, 1, 9,
+ 9, 1, 10, 10, 1, 11, 11, 1,
+ 12, 12, 1, 12, 12, 13, 1, 13,
+ 14, 13, 15, 15, 15, 15, 15, 15,
+ 15, 15, 15, 1, 16, 1, 17, 17,
+ 1, 17, 17, 15, 15, 15, 15, 15,
+ 15, 15, 15, 15, 1, 18, 19, 18,
+ 20, 20, 20, 21, 20, 20, 20, 20,
+ 20, 1, 18, 19, 18, 21, 1, 22,
+ 1, 23, 23, 1, 23, 23, 21, 1,
+ 21, 24, 21, 25, 25, 25, 25, 25,
+ 25, 25, 25, 25, 1, 26, 1, 27,
+ 27, 1, 27, 27, 25, 25, 25, 25,
+ 25, 25, 25, 25, 25, 1, 28, 29,
+ 28, 25, 25, 25, 30, 25, 25, 25,
+ 25, 25, 25, 1, 31, 32, 31, 33,
+ 1, 34, 1, 35, 35, 1, 35, 35,
+ 33, 1, 33, 36, 33, 37, 37, 37,
+ 37, 37, 37, 37, 37, 37, 1, 38,
+ 1, 39, 39, 1, 39, 39, 37, 37,
+ 37, 37, 37, 37, 37, 37, 37, 1,
+ 40, 41, 40, 42, 42, 42, 43, 42,
+ 42, 42, 42, 42, 42, 1, 40, 41,
+ 40, 43, 1, 44, 1, 45, 45, 1,
+ 45, 45, 43, 1, 43, 46, 43, 47,
+ 48, 47, 47, 47, 47, 47, 47, 47,
+ 47, 1, 49, 1, 50, 50, 1, 50,
+ 51, 50, 47, 48, 47, 47, 47, 47,
+ 47, 47, 47, 47, 1, 52, 1, 53,
+ 53, 1, 53, 53, 48, 1, 54, 55,
+ 56, 1, 1, 1, 48, 57, 1, 48,
+ 48, 1, 58, 59, 58, 60, 1, 61,
+ 1, 48, 48, 48, 1, 58, 59, 58,
+ 47, 47, 47, 60, 47, 47, 47, 47,
+ 47, 47, 1, 1, 0
+};
+
+static const char _thttp_machine_parser_header_Content_Type_trans_targs[] = {
+ 2, 0, 3, 4, 5, 6, 7, 8,
+ 9, 10, 11, 12, 13, 14, 15, 18,
+ 16, 17, 19, 20, 18, 23, 21, 22,
+ 24, 27, 25, 26, 28, 52, 32, 28,
+ 29, 32, 30, 31, 33, 36, 34, 35,
+ 37, 38, 36, 41, 39, 40, 42, 54,
+ 48, 43, 44, 45, 46, 47, 49, 51,
+ 53, 50, 28, 52, 32, 55
+};
+
+static const char _thttp_machine_parser_header_Content_Type_trans_actions[] = {
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 1,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 3, 3, 3, 0,
+ 0, 0, 0, 0, 0, 1, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 5, 5, 5, 7
+};
+
+static const int thttp_machine_parser_header_Content_Type_start = 1;
+static const int thttp_machine_parser_header_Content_Type_first_final = 55;
+static const int thttp_machine_parser_header_Content_Type_error = 0;
+
+static const int thttp_machine_parser_header_Content_Type_en_main = 1;
+
+
+/* #line 114 "./ragel/thttp_parser_header_Content_Type.rl" */
+
+/* #line 238 "./src/headers/thttp_header_Content_Type.c" */
+ {
+ cs = thttp_machine_parser_header_Content_Type_start;
+ }
+
+/* #line 115 "./ragel/thttp_parser_header_Content_Type.rl" */
+
+/* #line 245 "./src/headers/thttp_header_Content_Type.c" */
+ {
+ int _klen;
+ unsigned int _trans;
+ const char *_acts;
+ unsigned int _nacts;
+ const char *_keys;
+
+ if ( p == pe )
+ goto _test_eof;
+ if ( cs == 0 )
+ goto _out;
+_resume:
+ _keys = _thttp_machine_parser_header_Content_Type_trans_keys + _thttp_machine_parser_header_Content_Type_key_offsets[cs];
+ _trans = _thttp_machine_parser_header_Content_Type_index_offsets[cs];
+
+ _klen = _thttp_machine_parser_header_Content_Type_single_lengths[cs];
+ if ( _klen > 0 ) {
+ const char *_lower = _keys;
+ const char *_mid;
+ const char *_upper = _keys + _klen - 1;
+ while (1) {
+ if ( _upper < _lower )
+ break;
+
+ _mid = _lower + ((_upper-_lower) >> 1);
+ if ( (*p) < *_mid )
+ _upper = _mid - 1;
+ else if ( (*p) > *_mid )
+ _lower = _mid + 1;
+ else {
+ _trans += (_mid - _keys);
+ goto _match;
+ }
+ }
+ _keys += _klen;
+ _trans += _klen;
+ }
+
+ _klen = _thttp_machine_parser_header_Content_Type_range_lengths[cs];
+ if ( _klen > 0 ) {
+ const char *_lower = _keys;
+ const char *_mid;
+ const char *_upper = _keys + (_klen<<1) - 2;
+ while (1) {
+ if ( _upper < _lower )
+ break;
+
+ _mid = _lower + (((_upper-_lower) >> 1) & ~1);
+ if ( (*p) < _mid[0] )
+ _upper = _mid - 2;
+ else if ( (*p) > _mid[1] )
+ _lower = _mid + 2;
+ else {
+ _trans += ((_mid - _keys)>>1);
+ goto _match;
+ }
+ }
+ _trans += _klen;
+ }
+
+_match:
+ _trans = _thttp_machine_parser_header_Content_Type_indicies[_trans];
+ cs = _thttp_machine_parser_header_Content_Type_trans_targs[_trans];
+
+ if ( _thttp_machine_parser_header_Content_Type_trans_actions[_trans] == 0 )
+ goto _again;
+
+ _acts = _thttp_machine_parser_header_Content_Type_actions + _thttp_machine_parser_header_Content_Type_trans_actions[_trans];
+ _nacts = (unsigned int) *_acts++;
+ while ( _nacts-- > 0 )
+ {
+ switch ( *_acts++ )
+ {
+ case 0:
+/* #line 46 "./ragel/thttp_parser_header_Content_Type.rl" */
+ {
+ tag_start = p;
+ }
+ break;
+ case 1:
+/* #line 50 "./ragel/thttp_parser_header_Content_Type.rl" */
+ {
+ TSK_PARSER_SET_STRING(hdr_ctype->type);
+ }
+ break;
+ case 2:
+/* #line 54 "./ragel/thttp_parser_header_Content_Type.rl" */
+ {
+ TSK_PARSER_ADD_PARAM(THTTP_HEADER_PARAMS(hdr_ctype));
+ }
+ break;
+ case 3:
+/* #line 58 "./ragel/thttp_parser_header_Content_Type.rl" */
+ {
+ }
+ break;
+/* #line 342 "./src/headers/thttp_header_Content_Type.c" */
+ }
+ }
+
+_again:
+ if ( cs == 0 )
+ goto _out;
+ if ( ++p != pe )
+ goto _resume;
+ _test_eof: {}
+ _out: {}
+ }
+
+/* #line 116 "./ragel/thttp_parser_header_Content_Type.rl" */
+
+ if( cs <
+/* #line 358 "./src/headers/thttp_header_Content_Type.c" */
+55
+/* #line 117 "./ragel/thttp_parser_header_Content_Type.rl" */
+ ){
+ TSK_DEBUG_ERROR("Failed to parse Content-Type header.");
+ TSK_OBJECT_SAFE_FREE(hdr_ctype);
+ }
+
+ return hdr_ctype;
+}
+
+
+
+
+
+
+
+//========================================================
+// Content_Type header object definition
+//
+
+/**@ingroup thttp_header_Content_Type_group
+*/
+static tsk_object_t* thttp_header_Content_Type_ctor(tsk_object_t *self, va_list * app)
+{
+ thttp_header_Content_Type_t *Content_Type = self;
+ if(Content_Type){
+ THTTP_HEADER(Content_Type)->type = thttp_htype_Content_Type;
+ THTTP_HEADER(Content_Type)->tostring = thttp_header_Content_Type_tostring;
+
+ Content_Type->type = tsk_strdup( va_arg(*app, const char*) );
+ }
+ else{
+ TSK_DEBUG_ERROR("Failed to create new Content_Type header.");
+ }
+ return self;
+}
+
+/**@ingroup thttp_header_Content_Type_group
+*/
+static tsk_object_t* thttp_header_Content_Type_dtor(tsk_object_t *self)
+{
+ thttp_header_Content_Type_t *Content_Type = self;
+ if(Content_Type){
+ TSK_FREE(Content_Type->type);
+ TSK_OBJECT_SAFE_FREE(THTTP_HEADER_PARAMS(Content_Type));
+ }
+ else{
+ TSK_DEBUG_ERROR("Null Content_Type header.");
+ }
+
+ return self;
+}
+
+static const tsk_object_def_t thttp_header_Content_Type_def_s =
+{
+ sizeof(thttp_header_Content_Type_t),
+ thttp_header_Content_Type_ctor,
+ thttp_header_Content_Type_dtor,
+ tsk_null
+};
+const tsk_object_def_t *thttp_header_Content_Type_def_t = &thttp_header_Content_Type_def_s;
diff --git a/tinyHTTP/src/headers/thttp_header_Dummy.c b/tinyHTTP/src/headers/thttp_header_Dummy.c
new file mode 100644
index 0000000..0ca9a4a
--- /dev/null
+++ b/tinyHTTP/src/headers/thttp_header_Dummy.c
@@ -0,0 +1,327 @@
+
+/* #line 1 "./ragel/thttp_parser_header_Dummy.rl" */
+/*
+* Copyright (C) 2009-2010 Mamadou Diop.
+*
+* Contact: Mamadou Diop <diopmamadou(at)doubango.org>
+*
+* This file is part of Open Source Doubango Framework.
+*
+* DOUBANGO is free software: you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published by
+* the Free Software Foundation, either version 3 of the License, or
+* (at your option) any later version.
+*
+* DOUBANGO is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with DOUBANGO.
+*
+*/
+
+/**@file thttp_header_Dummy.c
+ * @brief HTTP 'Dummy' header.
+ *
+ * @author Mamadou Diop <diopmamadou(at)doubango.org>
+ *
+ * @date Created: Sat Nov 8 16:54:58 2009 mdiop
+ */
+#include "tinyhttp/headers/thttp_header_Dummy.h"
+
+#include "tinyhttp/parsers/thttp_parser_url.h"
+
+#include "tsk_debug.h"
+#include "tsk_memory.h"
+
+#include <string.h>
+
+/***********************************
+* Ragel state machine.
+*/
+
+/* #line 68 "./ragel/thttp_parser_header_Dummy.rl" */
+
+
+thttp_header_Dummy_t* thttp_header_dummy_create(const char* name, const char* value)
+{
+ return tsk_object_new(THTTP_HEADER_DUMMY_VA_ARGS(name, value));
+}
+
+thttp_header_Dummy_t* thttp_header_dummy_create_null()
+{
+ return thttp_header_dummy_create(tsk_null, tsk_null);
+}
+
+
+int thttp_header_Dummy_tostring(const thttp_header_t* header, tsk_buffer_t* output)
+{
+ if(header){
+ const thttp_header_Dummy_t *Dummy = (const thttp_header_Dummy_t*)header;
+ if(Dummy->value){
+ return tsk_buffer_append(output, Dummy->value, tsk_strlen(Dummy->value));
+ }
+ return 0;
+ }
+
+ return -1;
+}
+
+/**@ingroup thttp_header_group
+*/
+thttp_header_Dummy_t *thttp_header_Dummy_parse(const char *data, tsk_size_t size)
+{
+ int cs = 0;
+ const char *p = data;
+ const char *pe = p + size;
+ const char *eof = pe;
+ thttp_header_Dummy_t *hdr_Dummy = thttp_header_dummy_create_null();
+
+ const char *tag_start;
+
+
+/* #line 86 "./src/headers/thttp_header_Dummy.c" */
+static const char _thttp_machine_parser_header_Dummy_actions[] = {
+ 0, 1, 0, 1, 1, 1, 2, 1,
+ 3, 2, 0, 2
+};
+
+static const char _thttp_machine_parser_header_Dummy_key_offsets[] = {
+ 0, 0, 14, 31, 34, 37, 38, 39,
+ 40, 42, 45
+};
+
+static const char _thttp_machine_parser_header_Dummy_trans_keys[] = {
+ 33, 37, 39, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 33, 37, 39, 58, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 58, 9, 13, 32, 13, 10, 10,
+ 9, 32, 9, 13, 32, 0
+};
+
+static const char _thttp_machine_parser_header_Dummy_single_lengths[] = {
+ 0, 4, 7, 3, 3, 1, 1, 1,
+ 2, 3, 0
+};
+
+static const char _thttp_machine_parser_header_Dummy_range_lengths[] = {
+ 0, 5, 5, 0, 0, 0, 0, 0,
+ 0, 0, 0
+};
+
+static const char _thttp_machine_parser_header_Dummy_index_offsets[] = {
+ 0, 0, 10, 23, 27, 31, 33, 35,
+ 37, 40, 44
+};
+
+static const char _thttp_machine_parser_header_Dummy_indicies[] = {
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 1, 2, 2, 3, 3, 3, 4,
+ 3, 3, 3, 3, 3, 3, 1, 5,
+ 5, 6, 1, 6, 8, 6, 7, 10,
+ 9, 11, 1, 12, 1, 13, 13, 1,
+ 13, 14, 13, 7, 1, 0
+};
+
+static const char _thttp_machine_parser_header_Dummy_trans_targs[] = {
+ 2, 0, 3, 2, 4, 3, 4, 5,
+ 7, 5, 6, 10, 8, 9, 6
+};
+
+static const char _thttp_machine_parser_header_Dummy_trans_actions[] = {
+ 1, 0, 3, 0, 3, 0, 0, 1,
+ 0, 0, 5, 7, 0, 0, 9
+};
+
+static const int thttp_machine_parser_header_Dummy_start = 1;
+static const int thttp_machine_parser_header_Dummy_first_final = 10;
+static const int thttp_machine_parser_header_Dummy_error = 0;
+
+static const int thttp_machine_parser_header_Dummy_en_main = 1;
+
+
+/* #line 107 "./ragel/thttp_parser_header_Dummy.rl" */
+
+/* #line 149 "./src/headers/thttp_header_Dummy.c" */
+ {
+ cs = thttp_machine_parser_header_Dummy_start;
+ }
+
+/* #line 108 "./ragel/thttp_parser_header_Dummy.rl" */
+
+/* #line 156 "./src/headers/thttp_header_Dummy.c" */
+ {
+ int _klen;
+ unsigned int _trans;
+ const char *_acts;
+ unsigned int _nacts;
+ const char *_keys;
+
+ if ( p == pe )
+ goto _test_eof;
+ if ( cs == 0 )
+ goto _out;
+_resume:
+ _keys = _thttp_machine_parser_header_Dummy_trans_keys + _thttp_machine_parser_header_Dummy_key_offsets[cs];
+ _trans = _thttp_machine_parser_header_Dummy_index_offsets[cs];
+
+ _klen = _thttp_machine_parser_header_Dummy_single_lengths[cs];
+ if ( _klen > 0 ) {
+ const char *_lower = _keys;
+ const char *_mid;
+ const char *_upper = _keys + _klen - 1;
+ while (1) {
+ if ( _upper < _lower )
+ break;
+
+ _mid = _lower + ((_upper-_lower) >> 1);
+ if ( (*p) < *_mid )
+ _upper = _mid - 1;
+ else if ( (*p) > *_mid )
+ _lower = _mid + 1;
+ else {
+ _trans += (_mid - _keys);
+ goto _match;
+ }
+ }
+ _keys += _klen;
+ _trans += _klen;
+ }
+
+ _klen = _thttp_machine_parser_header_Dummy_range_lengths[cs];
+ if ( _klen > 0 ) {
+ const char *_lower = _keys;
+ const char *_mid;
+ const char *_upper = _keys + (_klen<<1) - 2;
+ while (1) {
+ if ( _upper < _lower )
+ break;
+
+ _mid = _lower + (((_upper-_lower) >> 1) & ~1);
+ if ( (*p) < _mid[0] )
+ _upper = _mid - 2;
+ else if ( (*p) > _mid[1] )
+ _lower = _mid + 2;
+ else {
+ _trans += ((_mid - _keys)>>1);
+ goto _match;
+ }
+ }
+ _trans += _klen;
+ }
+
+_match:
+ _trans = _thttp_machine_parser_header_Dummy_indicies[_trans];
+ cs = _thttp_machine_parser_header_Dummy_trans_targs[_trans];
+
+ if ( _thttp_machine_parser_header_Dummy_trans_actions[_trans] == 0 )
+ goto _again;
+
+ _acts = _thttp_machine_parser_header_Dummy_actions + _thttp_machine_parser_header_Dummy_trans_actions[_trans];
+ _nacts = (unsigned int) *_acts++;
+ while ( _nacts-- > 0 )
+ {
+ switch ( *_acts++ )
+ {
+ case 0:
+/* #line 48 "./ragel/thttp_parser_header_Dummy.rl" */
+ {
+ tag_start = p;
+ }
+ break;
+ case 1:
+/* #line 52 "./ragel/thttp_parser_header_Dummy.rl" */
+ {
+ TSK_PARSER_SET_STRING(hdr_Dummy->name);
+ }
+ break;
+ case 2:
+/* #line 56 "./ragel/thttp_parser_header_Dummy.rl" */
+ {
+ TSK_PARSER_SET_STRING(hdr_Dummy->value);
+ }
+ break;
+ case 3:
+/* #line 60 "./ragel/thttp_parser_header_Dummy.rl" */
+ {
+ }
+ break;
+/* #line 253 "./src/headers/thttp_header_Dummy.c" */
+ }
+ }
+
+_again:
+ if ( cs == 0 )
+ goto _out;
+ if ( ++p != pe )
+ goto _resume;
+ _test_eof: {}
+ _out: {}
+ }
+
+/* #line 109 "./ragel/thttp_parser_header_Dummy.rl" */
+
+ if( cs <
+/* #line 269 "./src/headers/thttp_header_Dummy.c" */
+10
+/* #line 110 "./ragel/thttp_parser_header_Dummy.rl" */
+ ){
+ TSK_OBJECT_SAFE_FREE(hdr_Dummy);
+ }
+
+ return hdr_Dummy;
+}
+
+
+
+
+
+
+
+//========================================================
+// Dummy header object definition
+//
+
+static tsk_object_t* thttp_header_Dummy_ctor(tsk_object_t *self, va_list * app)
+{
+ thttp_header_Dummy_t *Dummy = self;
+ if(Dummy){
+ THTTP_HEADER(Dummy)->type = thttp_htype_Dummy;
+ THTTP_HEADER(Dummy)->tostring = thttp_header_Dummy_tostring;
+
+ Dummy->name = tsk_strdup(va_arg(*app, const char*));
+ Dummy->value = tsk_strdup(va_arg(*app, const char*));
+ }
+ else{
+ TSK_DEBUG_ERROR("Failed to create new Dummy header.");
+ }
+ return self;
+}
+
+static tsk_object_t* thttp_header_Dummy_dtor(tsk_object_t *self)
+{
+ thttp_header_Dummy_t *Dummy = self;
+ if(Dummy){
+ TSK_FREE(Dummy->name);
+ TSK_FREE(Dummy->value);
+
+ TSK_OBJECT_SAFE_FREE(THTTP_HEADER_PARAMS(Dummy));
+ }
+ else{
+ TSK_DEBUG_ERROR("Null Dummy header.");
+ }
+
+ return self;
+}
+
+static const tsk_object_def_t thttp_header_Dummy_def_s =
+{
+ sizeof(thttp_header_Dummy_t),
+ thttp_header_Dummy_ctor,
+ thttp_header_Dummy_dtor,
+ tsk_null
+};
+const tsk_object_def_t *thttp_header_Dummy_def_t = &thttp_header_Dummy_def_s;
diff --git a/tinyHTTP/src/headers/thttp_header_ETag.c b/tinyHTTP/src/headers/thttp_header_ETag.c
new file mode 100644
index 0000000..5dc4bac
--- /dev/null
+++ b/tinyHTTP/src/headers/thttp_header_ETag.c
@@ -0,0 +1,344 @@
+
+/* #line 1 "./ragel/thttp_parser_header_ETag.rl" */
+/*
+* Copyright (C) 2009-2010 Mamadou Diop.
+*
+* Contact: Mamadou Diop <diopmamadou(at)doubango.org>
+*
+* This file is part of Open Source Doubango Framework.
+*
+* DOUBANGO is free software: you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published by
+* the Free Software Foundation, either version 3 of the License, or
+* (at your option) any later version.
+*
+* DOUBANGO is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with DOUBANGO.
+*
+*/
+
+/**@file thttp_header_ETag.c
+ * @brief HTTP 'Etag' header.
+ *
+ * @author Mamadou Diop <diopmamadou(at)doubango.org>
+ *
+ * @date Created: Sat Nov 8 16:54:58 2009 mdiop
+ */
+#include "tinyhttp/headers/thttp_header_ETag.h"
+
+#include "tinyhttp/parsers/thttp_parser_url.h"
+
+#include "tsk_debug.h"
+#include "tsk_memory.h"
+
+#include <string.h>
+
+/***********************************
+* Ragel state machine.
+*/
+
+/* #line 73 "./ragel/thttp_parser_header_ETag.rl" */
+
+
+thttp_header_ETag_t* thttp_header_etag_create(const char* value)
+{
+ return tsk_object_new(THTTP_HEADER_ETAG_VA_ARGS(value));
+}
+
+thttp_header_ETag_t* thttp_header_etag_create_null()
+{
+ return thttp_header_etag_create(tsk_null);
+}
+
+
+int thttp_header_ETag_tostring(const thttp_header_t* header, tsk_buffer_t* output)
+{
+ if(header){
+ const thttp_header_ETag_t *ETag = (const thttp_header_ETag_t*)header;
+ if(ETag->value){
+ return tsk_buffer_append_2(output, "%s\"%s\"",
+ ETag->isWeak ? "W/" : "",
+ ETag->value);
+ }
+ return 0;
+ }
+
+ return -1;
+}
+
+/**@ingroup thttp_header_group
+*/
+thttp_header_ETag_t *thttp_header_ETag_parse(const char *data, tsk_size_t size)
+{
+ int cs = 0;
+ const char *p = data;
+ const char *pe = p + size;
+ const char *eof = pe;
+ thttp_header_ETag_t *hdr_ETag = thttp_header_etag_create_null();
+
+ const char *tag_start;
+
+
+/* #line 88 "./src/headers/thttp_header_ETag.c" */
+static const char _thttp_machine_parser_header_ETag_actions[] = {
+ 0, 1, 0, 1, 2, 1, 3, 2,
+ 1, 0
+};
+
+static const char _thttp_machine_parser_header_ETag_key_offsets[] = {
+ 0, 0, 2, 4, 6, 8, 11, 17,
+ 18, 20, 26, 27, 29, 32, 40, 41,
+ 43, 44, 45, 51, 52, 56, 60
+};
+
+static const unsigned char _thttp_machine_parser_header_ETag_trans_keys[] = {
+ 69u, 101u, 84u, 116u, 65u, 97u, 71u, 103u,
+ 9u, 32u, 58u, 9u, 13u, 32u, 34u, 87u,
+ 119u, 10u, 9u, 32u, 9u, 13u, 32u, 34u,
+ 87u, 119u, 10u, 9u, 32u, 9u, 32u, 34u,
+ 13u, 34u, 92u, 127u, 0u, 8u, 10u, 31u,
+ 10u, 9u, 32u, 13u, 10u, 0u, 9u, 11u,
+ 12u, 14u, 127u, 47u, 9u, 13u, 32u, 34u,
+ 9u, 13u, 32u, 34u, 0
+};
+
+static const char _thttp_machine_parser_header_ETag_single_lengths[] = {
+ 0, 2, 2, 2, 2, 3, 6, 1,
+ 2, 6, 1, 2, 3, 4, 1, 2,
+ 1, 1, 0, 1, 4, 4, 0
+};
+
+static const char _thttp_machine_parser_header_ETag_range_lengths[] = {
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 2, 0, 0,
+ 0, 0, 3, 0, 0, 0, 0
+};
+
+static const char _thttp_machine_parser_header_ETag_index_offsets[] = {
+ 0, 0, 3, 6, 9, 12, 16, 23,
+ 25, 28, 35, 37, 40, 44, 51, 53,
+ 56, 58, 60, 64, 66, 71, 76
+};
+
+static const char _thttp_machine_parser_header_ETag_indicies[] = {
+ 0, 0, 1, 2, 2, 1, 3, 3,
+ 1, 4, 4, 1, 4, 4, 5, 1,
+ 6, 7, 6, 8, 9, 9, 1, 10,
+ 1, 11, 11, 1, 12, 13, 12, 8,
+ 9, 9, 1, 14, 1, 15, 15, 1,
+ 15, 15, 16, 1, 17, 18, 19, 1,
+ 1, 1, 16, 20, 1, 16, 16, 1,
+ 21, 1, 22, 1, 16, 16, 16, 1,
+ 23, 1, 24, 25, 24, 26, 1, 27,
+ 28, 27, 16, 1, 1, 0
+};
+
+static const char _thttp_machine_parser_header_ETag_trans_targs[] = {
+ 2, 0, 3, 4, 5, 6, 6, 7,
+ 13, 19, 8, 9, 9, 10, 11, 12,
+ 13, 14, 16, 18, 15, 17, 22, 20,
+ 21, 10, 13, 21, 10
+};
+
+static const char _thttp_machine_parser_header_ETag_trans_actions[] = {
+ 0, 0, 0, 0, 0, 0, 1, 1,
+ 1, 0, 0, 0, 1, 1, 0, 0,
+ 0, 0, 0, 0, 0, 3, 5, 0,
+ 7, 7, 7, 0, 0
+};
+
+static const int thttp_machine_parser_header_ETag_start = 1;
+static const int thttp_machine_parser_header_ETag_first_final = 22;
+static const int thttp_machine_parser_header_ETag_error = 0;
+
+static const int thttp_machine_parser_header_ETag_en_main = 1;
+
+
+/* #line 114 "./ragel/thttp_parser_header_ETag.rl" */
+
+/* #line 165 "./src/headers/thttp_header_ETag.c" */
+ {
+ cs = thttp_machine_parser_header_ETag_start;
+ }
+
+/* #line 115 "./ragel/thttp_parser_header_ETag.rl" */
+
+/* #line 172 "./src/headers/thttp_header_ETag.c" */
+ {
+ int _klen;
+ unsigned int _trans;
+ const char *_acts;
+ unsigned int _nacts;
+ const unsigned char *_keys;
+
+ if ( p == pe )
+ goto _test_eof;
+ if ( cs == 0 )
+ goto _out;
+_resume:
+ _keys = _thttp_machine_parser_header_ETag_trans_keys + _thttp_machine_parser_header_ETag_key_offsets[cs];
+ _trans = _thttp_machine_parser_header_ETag_index_offsets[cs];
+
+ _klen = _thttp_machine_parser_header_ETag_single_lengths[cs];
+ if ( _klen > 0 ) {
+ const unsigned char *_lower = _keys;
+ const unsigned char *_mid;
+ const unsigned char *_upper = _keys + _klen - 1;
+ while (1) {
+ if ( _upper < _lower )
+ break;
+
+ _mid = _lower + ((_upper-_lower) >> 1);
+ if ( (*p) < *_mid )
+ _upper = _mid - 1;
+ else if ( (*p) > *_mid )
+ _lower = _mid + 1;
+ else {
+ _trans += (_mid - _keys);
+ goto _match;
+ }
+ }
+ _keys += _klen;
+ _trans += _klen;
+ }
+
+ _klen = _thttp_machine_parser_header_ETag_range_lengths[cs];
+ if ( _klen > 0 ) {
+ const unsigned char *_lower = _keys;
+ const unsigned char *_mid;
+ const unsigned char *_upper = _keys + (_klen<<1) - 2;
+ while (1) {
+ if ( _upper < _lower )
+ break;
+
+ _mid = _lower + (((_upper-_lower) >> 1) & ~1);
+ if ( (*p) < _mid[0] )
+ _upper = _mid - 2;
+ else if ( (*p) > _mid[1] )
+ _lower = _mid + 2;
+ else {
+ _trans += ((_mid - _keys)>>1);
+ goto _match;
+ }
+ }
+ _trans += _klen;
+ }
+
+_match:
+ _trans = _thttp_machine_parser_header_ETag_indicies[_trans];
+ cs = _thttp_machine_parser_header_ETag_trans_targs[_trans];
+
+ if ( _thttp_machine_parser_header_ETag_trans_actions[_trans] == 0 )
+ goto _again;
+
+ _acts = _thttp_machine_parser_header_ETag_actions + _thttp_machine_parser_header_ETag_trans_actions[_trans];
+ _nacts = (unsigned int) *_acts++;
+ while ( _nacts-- > 0 )
+ {
+ switch ( *_acts++ )
+ {
+ case 0:
+/* #line 49 "./ragel/thttp_parser_header_ETag.rl" */
+ {
+ tag_start = p;
+ }
+ break;
+ case 1:
+/* #line 53 "./ragel/thttp_parser_header_ETag.rl" */
+ {
+ hdr_ETag->isWeak = tsk_true;
+ }
+ break;
+ case 2:
+/* #line 57 "./ragel/thttp_parser_header_ETag.rl" */
+ {
+ TSK_PARSER_SET_STRING(hdr_ETag->value);
+ tsk_strunquote(&hdr_ETag->value);
+ }
+ break;
+ case 3:
+/* #line 62 "./ragel/thttp_parser_header_ETag.rl" */
+ {
+ }
+ break;
+/* #line 270 "./src/headers/thttp_header_ETag.c" */
+ }
+ }
+
+_again:
+ if ( cs == 0 )
+ goto _out;
+ if ( ++p != pe )
+ goto _resume;
+ _test_eof: {}
+ _out: {}
+ }
+
+/* #line 116 "./ragel/thttp_parser_header_ETag.rl" */
+
+ if( cs <
+/* #line 286 "./src/headers/thttp_header_ETag.c" */
+22
+/* #line 117 "./ragel/thttp_parser_header_ETag.rl" */
+ ){
+ TSK_DEBUG_ERROR("Failed to parse ETag header.");
+ TSK_OBJECT_SAFE_FREE(hdr_ETag);
+ }
+
+ return hdr_ETag;
+}
+
+
+
+
+
+
+
+//========================================================
+// ETag header object definition
+//
+
+static tsk_object_t* thttp_header_ETag_ctor(tsk_object_t *self, va_list * app)
+{
+ thttp_header_ETag_t *ETag = self;
+ if(ETag){
+ THTTP_HEADER(ETag)->type = thttp_htype_ETag;
+ THTTP_HEADER(ETag)->tostring = thttp_header_ETag_tostring;
+
+ ETag->value = tsk_strdup(va_arg(*app, const char*));
+ }
+ else{
+ TSK_DEBUG_ERROR("Failed to create new ETag header.");
+ }
+ return self;
+}
+
+static tsk_object_t* thttp_header_ETag_dtor(tsk_object_t *self)
+{
+ thttp_header_ETag_t *ETag = self;
+ if(ETag)
+ {
+ TSK_FREE(ETag->value);
+
+ TSK_OBJECT_SAFE_FREE(THTTP_HEADER_PARAMS(ETag));
+ }
+ else{
+ TSK_DEBUG_ERROR("Null ETag header.");
+ }
+
+ return self;
+}
+
+static const tsk_object_def_t thttp_header_ETag_def_s =
+{
+ sizeof(thttp_header_ETag_t),
+ thttp_header_ETag_ctor,
+ thttp_header_ETag_dtor,
+ tsk_null
+};
+const tsk_object_def_t *thttp_header_ETag_def_t = &thttp_header_ETag_def_s;
diff --git a/tinyHTTP/src/headers/thttp_header_Transfer_Encoding.c b/tinyHTTP/src/headers/thttp_header_Transfer_Encoding.c
new file mode 100644
index 0000000..3ad2844
--- /dev/null
+++ b/tinyHTTP/src/headers/thttp_header_Transfer_Encoding.c
@@ -0,0 +1,372 @@
+
+/* #line 1 "./ragel/thttp_parser_header_Transfer_Encoding.rl" */
+/*
+* Copyright (C) 2009-2010 Mamadou Diop.
+*
+* Contact: Mamadou Diop <diopmamadou(at)doubango.org>
+*
+* This file is part of Open Source Doubango Framework.
+*
+* DOUBANGO is free software: you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published by
+* the Free Software Foundation, either version 3 of the License, or
+* (at your option) any later version.
+*
+* DOUBANGO is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with DOUBANGO.
+*
+*/
+
+/**@file thttp_header_Transfer_Encoding.c
+ * @brief HTTP Transfer-Encoding header.
+ *
+ * @author Mamadou Diop <diopmamadou(at)doubango.org>
+ *
+ * @date Created: Sat Nov 8 16:54:58 2009 mdiop
+ */
+#include "tinyhttp/headers/thttp_header_Transfer_Encoding.h"
+
+#include "tsk_debug.h"
+#include "tsk_memory.h"
+
+#include <string.h>
+
+/***********************************
+* Ragel state machine.
+*/
+
+/* #line 66 "./ragel/thttp_parser_header_Transfer_Encoding.rl" */
+
+
+thttp_header_Transfer_Encoding_t* thttp_header_transfer_encoding_create(const char* encoding)
+{
+ return tsk_object_new(THTTP_HEADER_TRANSFER_ENCODING_VA_ARGS(encoding));
+}
+
+thttp_header_Transfer_Encoding_t* thttp_header_transfer_encoding_create_null()
+{
+ return thttp_header_transfer_encoding_create(tsk_null);
+}
+
+
+int thttp_header_Transfer_Encoding_tostring(const thttp_header_t* header, tsk_buffer_t* output)
+{
+ if(header){
+ const thttp_header_Transfer_Encoding_t *Transfer_Encoding = (const thttp_header_Transfer_Encoding_t*)header;
+ if(Transfer_Encoding->encoding){
+ return tsk_buffer_append(output, Transfer_Encoding->encoding, tsk_strlen(Transfer_Encoding->encoding));
+ }
+ return 0;
+ }
+
+ return -1;
+}
+
+/**@ingroup thttp_header_group
+*/
+thttp_header_Transfer_Encoding_t *thttp_header_Transfer_Encoding_parse(const char *data, tsk_size_t size)
+{
+ int cs = 0;
+ const char *p = data;
+ const char *pe = p + size;
+ const char *eof = pe;
+ thttp_header_Transfer_Encoding_t *hdr_tencoding = thttp_header_transfer_encoding_create_null();
+
+ const char *tag_start;
+
+
+/* #line 84 "./src/headers/thttp_header_Transfer_Encoding.c" */
+static const char _thttp_machine_parser_header_Transfer_Encoding_actions[] = {
+ 0, 1, 0, 1, 1, 1, 2, 1,
+ 3
+};
+
+static const unsigned char _thttp_machine_parser_header_Transfer_Encoding_key_offsets[] = {
+ 0, 0, 2, 4, 6, 8, 10, 12,
+ 14, 16, 17, 19, 21, 23, 25, 27,
+ 29, 31, 33, 36, 53, 54, 56, 72,
+ 88, 89, 102, 118, 124, 130, 143, 158,
+ 164, 170
+};
+
+static const char _thttp_machine_parser_header_Transfer_Encoding_trans_keys[] = {
+ 84, 116, 82, 114, 65, 97, 78, 110,
+ 83, 115, 70, 102, 69, 101, 82, 114,
+ 45, 69, 101, 78, 110, 67, 99, 79,
+ 111, 68, 100, 73, 105, 78, 110, 71,
+ 103, 9, 32, 58, 9, 13, 32, 33,
+ 37, 39, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 10, 9, 32,
+ 9, 32, 33, 37, 39, 126, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 13, 33, 37, 39, 59, 126, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 10, 33, 37, 93, 95, 126, 36, 43,
+ 45, 58, 65, 91, 97, 122, 13, 33,
+ 37, 59, 61, 93, 95, 126, 36, 43,
+ 45, 58, 65, 91, 97, 122, 48, 57,
+ 65, 70, 97, 102, 48, 57, 65, 70,
+ 97, 102, 33, 37, 93, 95, 126, 36,
+ 43, 45, 58, 65, 91, 97, 122, 13,
+ 33, 37, 59, 93, 95, 126, 36, 43,
+ 45, 58, 65, 91, 97, 122, 48, 57,
+ 65, 70, 97, 102, 48, 57, 65, 70,
+ 97, 102, 0
+};
+
+static const char _thttp_machine_parser_header_Transfer_Encoding_single_lengths[] = {
+ 0, 2, 2, 2, 2, 2, 2, 2,
+ 2, 1, 2, 2, 2, 2, 2, 2,
+ 2, 2, 3, 7, 1, 2, 6, 6,
+ 1, 5, 8, 0, 0, 5, 7, 0,
+ 0, 0
+};
+
+static const char _thttp_machine_parser_header_Transfer_Encoding_range_lengths[] = {
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 5, 0, 0, 5, 5,
+ 0, 4, 4, 3, 3, 4, 4, 3,
+ 3, 0
+};
+
+static const unsigned char _thttp_machine_parser_header_Transfer_Encoding_index_offsets[] = {
+ 0, 0, 3, 6, 9, 12, 15, 18,
+ 21, 24, 26, 29, 32, 35, 38, 41,
+ 44, 47, 50, 54, 67, 69, 72, 84,
+ 96, 98, 108, 121, 125, 129, 139, 151,
+ 155, 159
+};
+
+static const char _thttp_machine_parser_header_Transfer_Encoding_indicies[] = {
+ 0, 0, 1, 2, 2, 1, 3, 3,
+ 1, 4, 4, 1, 5, 5, 1, 6,
+ 6, 1, 7, 7, 1, 8, 8, 1,
+ 9, 1, 10, 10, 1, 11, 11, 1,
+ 12, 12, 1, 13, 13, 1, 14, 14,
+ 1, 15, 15, 1, 16, 16, 1, 17,
+ 17, 1, 17, 17, 18, 1, 18, 19,
+ 18, 20, 20, 20, 20, 20, 20, 20,
+ 20, 20, 1, 21, 1, 22, 22, 1,
+ 22, 22, 20, 20, 20, 20, 20, 20,
+ 20, 20, 20, 1, 23, 24, 24, 24,
+ 25, 24, 24, 24, 24, 24, 24, 1,
+ 26, 1, 27, 28, 27, 27, 27, 27,
+ 27, 27, 27, 1, 29, 30, 31, 32,
+ 33, 30, 30, 30, 30, 30, 30, 30,
+ 1, 34, 34, 34, 1, 30, 30, 30,
+ 1, 35, 36, 35, 35, 35, 35, 35,
+ 35, 35, 1, 29, 35, 36, 32, 35,
+ 35, 35, 35, 35, 35, 35, 1, 37,
+ 37, 37, 1, 35, 35, 35, 1, 1,
+ 0
+};
+
+static const char _thttp_machine_parser_header_Transfer_Encoding_trans_targs[] = {
+ 2, 0, 3, 4, 5, 6, 7, 8,
+ 9, 10, 11, 12, 13, 14, 15, 16,
+ 17, 18, 19, 20, 23, 21, 22, 24,
+ 23, 25, 33, 26, 27, 24, 26, 27,
+ 25, 29, 28, 30, 31, 32
+};
+
+static const char _thttp_machine_parser_header_Transfer_Encoding_trans_actions[] = {
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 1, 0, 0, 3,
+ 0, 3, 7, 1, 1, 5, 0, 0,
+ 5, 0, 0, 0, 0, 0
+};
+
+static const int thttp_machine_parser_header_Transfer_Encoding_start = 1;
+static const int thttp_machine_parser_header_Transfer_Encoding_first_final = 33;
+static const int thttp_machine_parser_header_Transfer_Encoding_error = 0;
+
+static const int thttp_machine_parser_header_Transfer_Encoding_en_main = 1;
+
+
+/* #line 105 "./ragel/thttp_parser_header_Transfer_Encoding.rl" */
+
+/* #line 196 "./src/headers/thttp_header_Transfer_Encoding.c" */
+ {
+ cs = thttp_machine_parser_header_Transfer_Encoding_start;
+ }
+
+/* #line 106 "./ragel/thttp_parser_header_Transfer_Encoding.rl" */
+
+/* #line 203 "./src/headers/thttp_header_Transfer_Encoding.c" */
+ {
+ int _klen;
+ unsigned int _trans;
+ const char *_acts;
+ unsigned int _nacts;
+ const char *_keys;
+
+ if ( p == pe )
+ goto _test_eof;
+ if ( cs == 0 )
+ goto _out;
+_resume:
+ _keys = _thttp_machine_parser_header_Transfer_Encoding_trans_keys + _thttp_machine_parser_header_Transfer_Encoding_key_offsets[cs];
+ _trans = _thttp_machine_parser_header_Transfer_Encoding_index_offsets[cs];
+
+ _klen = _thttp_machine_parser_header_Transfer_Encoding_single_lengths[cs];
+ if ( _klen > 0 ) {
+ const char *_lower = _keys;
+ const char *_mid;
+ const char *_upper = _keys + _klen - 1;
+ while (1) {
+ if ( _upper < _lower )
+ break;
+
+ _mid = _lower + ((_upper-_lower) >> 1);
+ if ( (*p) < *_mid )
+ _upper = _mid - 1;
+ else if ( (*p) > *_mid )
+ _lower = _mid + 1;
+ else {
+ _trans += (_mid - _keys);
+ goto _match;
+ }
+ }
+ _keys += _klen;
+ _trans += _klen;
+ }
+
+ _klen = _thttp_machine_parser_header_Transfer_Encoding_range_lengths[cs];
+ if ( _klen > 0 ) {
+ const char *_lower = _keys;
+ const char *_mid;
+ const char *_upper = _keys + (_klen<<1) - 2;
+ while (1) {
+ if ( _upper < _lower )
+ break;
+
+ _mid = _lower + (((_upper-_lower) >> 1) & ~1);
+ if ( (*p) < _mid[0] )
+ _upper = _mid - 2;
+ else if ( (*p) > _mid[1] )
+ _lower = _mid + 2;
+ else {
+ _trans += ((_mid - _keys)>>1);
+ goto _match;
+ }
+ }
+ _trans += _klen;
+ }
+
+_match:
+ _trans = _thttp_machine_parser_header_Transfer_Encoding_indicies[_trans];
+ cs = _thttp_machine_parser_header_Transfer_Encoding_trans_targs[_trans];
+
+ if ( _thttp_machine_parser_header_Transfer_Encoding_trans_actions[_trans] == 0 )
+ goto _again;
+
+ _acts = _thttp_machine_parser_header_Transfer_Encoding_actions + _thttp_machine_parser_header_Transfer_Encoding_trans_actions[_trans];
+ _nacts = (unsigned int) *_acts++;
+ while ( _nacts-- > 0 )
+ {
+ switch ( *_acts++ )
+ {
+ case 0:
+/* #line 46 "./ragel/thttp_parser_header_Transfer_Encoding.rl" */
+ {
+ tag_start = p;
+ }
+ break;
+ case 1:
+/* #line 50 "./ragel/thttp_parser_header_Transfer_Encoding.rl" */
+ {
+ TSK_PARSER_SET_STRING(hdr_tencoding->encoding);
+ }
+ break;
+ case 2:
+/* #line 54 "./ragel/thttp_parser_header_Transfer_Encoding.rl" */
+ {
+ TSK_PARSER_ADD_PARAM(THTTP_HEADER_PARAMS(hdr_tencoding));
+ }
+ break;
+ case 3:
+/* #line 58 "./ragel/thttp_parser_header_Transfer_Encoding.rl" */
+ {
+ }
+ break;
+/* #line 300 "./src/headers/thttp_header_Transfer_Encoding.c" */
+ }
+ }
+
+_again:
+ if ( cs == 0 )
+ goto _out;
+ if ( ++p != pe )
+ goto _resume;
+ _test_eof: {}
+ _out: {}
+ }
+
+/* #line 107 "./ragel/thttp_parser_header_Transfer_Encoding.rl" */
+
+ if( cs <
+/* #line 316 "./src/headers/thttp_header_Transfer_Encoding.c" */
+33
+/* #line 108 "./ragel/thttp_parser_header_Transfer_Encoding.rl" */
+ ){
+ TSK_DEBUG_ERROR("Failed to parse Tansfer-Encoding header.");
+ TSK_OBJECT_SAFE_FREE(hdr_tencoding);
+ }
+
+ return hdr_tencoding;
+}
+
+
+
+
+
+
+
+//========================================================
+// Transfer_Encoding header object definition
+//
+
+static tsk_object_t* thttp_header_Transfer_Encoding_ctor(tsk_object_t *self, va_list * app)
+{
+ thttp_header_Transfer_Encoding_t *Transfer_Encoding = self;
+ if(Transfer_Encoding){
+ THTTP_HEADER(Transfer_Encoding)->type = thttp_htype_Transfer_Encoding;
+ THTTP_HEADER(Transfer_Encoding)->tostring = thttp_header_Transfer_Encoding_tostring;
+
+ Transfer_Encoding->encoding = tsk_strdup( va_arg(*app, const char*) );
+ }
+ else{
+ TSK_DEBUG_ERROR("Failed to create new Transfer_Encoding header.");
+ }
+ return self;
+}
+
+static tsk_object_t* thttp_header_Transfer_Encoding_dtor(tsk_object_t* self)
+{
+ thttp_header_Transfer_Encoding_t *Transfer_Encoding = self;
+ if(Transfer_Encoding){
+ TSK_FREE(Transfer_Encoding->encoding);
+ TSK_OBJECT_SAFE_FREE(THTTP_HEADER_PARAMS(Transfer_Encoding));
+ }
+ else{
+ TSK_DEBUG_ERROR("Null Transfer_Encoding header.");
+ }
+
+ return self;
+}
+
+static const tsk_object_def_t thttp_header_Transfer_Encoding_def_s =
+{
+ sizeof(thttp_header_Transfer_Encoding_t),
+ thttp_header_Transfer_Encoding_ctor,
+ thttp_header_Transfer_Encoding_dtor,
+ tsk_null
+};
+const tsk_object_def_t *thttp_header_Transfer_Encoding_def_t = &thttp_header_Transfer_Encoding_def_s;
diff --git a/tinyHTTP/src/headers/thttp_header_WWW_Authenticate.c b/tinyHTTP/src/headers/thttp_header_WWW_Authenticate.c
new file mode 100644
index 0000000..6fa2a00
--- /dev/null
+++ b/tinyHTTP/src/headers/thttp_header_WWW_Authenticate.c
@@ -0,0 +1,8318 @@
+
+/* #line 1 "./ragel/thttp_parser_header_WWW_Authenticate.rl" */
+/*
+* Copyright (C) 2009-2010 Mamadou Diop.
+*
+* Contact: Mamadou Diop <diopmamadou(at)doubango.org>
+*
+* This file is part of Open Source Doubango Framework.
+*
+* DOUBANGO is free software: you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published by
+* the Free Software Foundation, either version 3 of the License, or
+* (at your option) any later version.
+*
+* DOUBANGO is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with DOUBANGO.
+*
+*/
+
+/**@file thttp_header_WWW_Authenticate.c
+ * @brief HTTP WWW-Authenticate header.
+ *
+ * @author Mamadou Diop <diopmamadou(at)doubango.org>
+ *
+ * @date Created: Sat Nov 8 16:54:58 2009 mdiop
+ */
+#include "tinyhttp/headers/thttp_header_WWW_Authenticate.h"
+
+#include "tinyhttp/parsers/thttp_parser_url.h"
+
+#include "tsk_debug.h"
+#include "tsk_memory.h"
+#include "tsk_time.h"
+
+#include <string.h>
+
+// Check if we have ",CRLF" ==> See WWW-Authenticate header
+// As :>CRLF is preceded by any+ ==> p will be at least (start + 1)
+// p point to CR
+#define prev_not_comma(p) !(p && p[-1] == ',')
+
+/***********************************
+* Ragel state machine.
+*/
+
+/* #line 137 "./ragel/thttp_parser_header_WWW_Authenticate.rl" */
+
+
+thttp_header_WWW_Authenticate_t* thttp_header_www_authenticate_create()
+{
+ return tsk_object_new(thttp_header_WWW_Authenticate_def_t);
+}
+
+int thttp_header_WWW_Authenticate_tostring(const thttp_header_t* header, tsk_buffer_t* output)
+{
+ if(header){
+ const thttp_header_WWW_Authenticate_t *WWW_Authenticate = (const thttp_header_WWW_Authenticate_t*)header;
+ if(WWW_Authenticate && WWW_Authenticate->scheme){
+ return tsk_buffer_append_2(output, "%s realm=\"%s\"%s%s%s%s%s%s%s%s%s%s%s%s,stale=%s%s%s",
+ WWW_Authenticate->scheme,
+ WWW_Authenticate->realm ? WWW_Authenticate->realm : "",
+
+ WWW_Authenticate->domain ? ",domain=\"" : "",
+ WWW_Authenticate->domain ? WWW_Authenticate->domain : "",
+ WWW_Authenticate->domain ? "\"" : "",
+
+
+ WWW_Authenticate->qop ? ",qop=\"" : "",
+ WWW_Authenticate->qop ? WWW_Authenticate->qop : "",
+ WWW_Authenticate->qop ? "\"" : "",
+
+
+ WWW_Authenticate->nonce ? ",nonce=\"" : "",
+ WWW_Authenticate->nonce ? WWW_Authenticate->nonce : "",
+ WWW_Authenticate->nonce ? "\"" : "",
+
+ WWW_Authenticate->opaque ? ",opaque=\"" : "",
+ WWW_Authenticate->opaque ? WWW_Authenticate->opaque : "",
+ WWW_Authenticate->opaque ? "\"" : "",
+
+ WWW_Authenticate->stale ? "TRUE" : "FALSE",
+
+ WWW_Authenticate->algorithm ? ",algorithm=" : "",
+ WWW_Authenticate->algorithm ? WWW_Authenticate->algorithm : ""
+ );
+ }
+ }
+ return -1;
+}
+
+/**@ingroup thttp_header_group
+*/
+thttp_header_WWW_Authenticate_t *thttp_header_WWW_Authenticate_parse(const char *data, tsk_size_t size)
+{
+ int cs = 0;
+ const char *p = data;
+ const char *pe = p + size;
+ const char *eof = pe;
+ thttp_header_WWW_Authenticate_t *hdr_WWW_Authenticate = thttp_header_www_authenticate_create();
+
+ const char *tag_start;
+
+
+/* #line 110 "./src/headers/thttp_header_WWW_Authenticate.c" */
+static const char _thttp_machine_parser_header_WWW_Authenticate_actions[] = {
+ 0, 1, 0, 1, 1, 1, 2, 1,
+ 3, 1, 4, 1, 5, 1, 6, 1,
+ 7, 1, 8, 1, 9, 1, 10, 1,
+ 11, 1, 12, 1, 13, 2, 0, 6,
+ 2, 0, 7, 2, 0, 8, 2, 0,
+ 11, 2, 0, 12, 2, 5, 0, 2,
+ 6, 0, 2, 7, 0, 2, 8, 0,
+ 2, 12, 0
+};
+
+static const short _thttp_machine_parser_header_WWW_Authenticate_key_offsets[] = {
+ 0, 0, 4, 6, 8, 10, 12, 13,
+ 15, 17, 19, 21, 23, 25, 27, 29,
+ 31, 33, 35, 37, 40, 47, 48, 50,
+ 57, 59, 66, 69, 72, 75, 78, 81,
+ 112, 114, 145, 162, 167, 169, 174, 205,
+ 207, 238, 257, 259, 278, 297, 299, 318,
+ 320, 324, 332, 334, 338, 342, 344, 348,
+ 350, 369, 388, 407, 426, 443, 448, 450,
+ 455, 474, 476, 495, 497, 501, 509, 511,
+ 515, 520, 536, 544, 553, 562, 571, 574,
+ 582, 592, 595, 599, 602, 606, 609, 613,
+ 617, 619, 623, 625, 629, 631, 641, 651,
+ 660, 669, 678, 687, 690, 697, 707, 717,
+ 727, 730, 734, 738, 740, 742, 744, 763,
+ 782, 801, 820, 839, 856, 861, 863, 868,
+ 887, 889, 908, 910, 914, 922, 924, 928,
+ 933, 935, 954, 973, 990, 995, 997, 1002,
+ 1021, 1023, 1042, 1044, 1048, 1056, 1064, 1066,
+ 1069, 1073, 1075, 1079, 1098, 1117, 1136, 1155,
+ 1172, 1177, 1179, 1184, 1203, 1205, 1224, 1226,
+ 1230, 1238, 1240, 1244, 1249, 1251, 1270, 1289,
+ 1308, 1327, 1344, 1349, 1351, 1356, 1379, 1381,
+ 1404, 1422, 1440, 1458, 1476, 1480, 1498, 1516,
+ 1518, 1521, 1527, 1536, 1538, 1547, 1549, 1558,
+ 1594, 1596, 1632, 1654, 1664, 1666, 1676, 1699,
+ 1701, 1724, 1726, 1734, 1743, 1752, 1754, 1759,
+ 1780, 1795, 1811, 1827, 1843, 1853, 1868, 1885,
+ 1895, 1906, 1916, 1927, 1937, 1948, 1959, 1968,
+ 1979, 1988, 1999, 2008, 2025, 2042, 2058, 2074,
+ 2090, 2106, 2116, 2130, 2147, 2164, 2181, 2191,
+ 2202, 2213, 2222, 2231, 2233, 2257, 2281, 2305,
+ 2329, 2353, 2377, 2401, 2425, 2447, 2457, 2459,
+ 2469, 2492, 2494, 2517, 2538, 2540, 2564, 2588,
+ 2612, 2636, 2660, 2682, 2692, 2694, 2704, 2727,
+ 2729, 2752, 2754, 2762, 2771, 2779, 2781, 2784,
+ 2787, 2793, 2802, 2805, 2814, 2850, 2853, 2889,
+ 2911, 2921, 2924, 2934, 2957, 2960, 2983, 2986,
+ 2994, 3015, 3018, 3036, 3042, 3045, 3051, 3083,
+ 3086, 3118, 3138, 3141, 3161, 3180, 3183, 3202,
+ 3205, 3209, 3226, 3231, 3234, 3239, 3242, 3262,
+ 3282, 3302, 3322, 3340, 3346, 3349, 3355, 3374,
+ 3377, 3396, 3399, 3403, 3412, 3414, 3423, 3425,
+ 3434, 3470, 3472, 3508, 3530, 3540, 3542, 3552,
+ 3575, 3577, 3600, 3602, 3610, 3619, 3640, 3649,
+ 3651, 3666, 3682, 3698, 3714, 3724, 3739, 3756,
+ 3766, 3777, 3787, 3798, 3808, 3819, 3830, 3839,
+ 3848, 3859, 3868, 3879, 3888, 3905, 3922, 3938,
+ 3954, 3970, 3986, 3996, 4010, 4027, 4044, 4061,
+ 4071, 4082, 4093, 4102, 4111, 4113, 4137, 4161,
+ 4185, 4209, 4233, 4257, 4281, 4305, 4327, 4337,
+ 4339, 4349, 4372, 4374, 4397, 4418, 4420, 4444,
+ 4468, 4492, 4516, 4540, 4562, 4572, 4574, 4584,
+ 4607, 4609, 4632, 4634, 4642, 4651, 4653, 4677,
+ 4701, 4725, 4749, 4771, 4781, 4783, 4793, 4816,
+ 4818, 4841, 4843, 4851, 4860, 4862, 4886, 4910,
+ 4934, 4958, 4982, 5004, 5014, 5016, 5026, 5049,
+ 5051, 5074, 5076, 5084, 5093, 5102, 5104, 5113,
+ 5149, 5151, 5187, 5209, 5219, 5221, 5231, 5254,
+ 5256, 5279, 5281, 5289, 5298, 5319, 5321, 5336,
+ 5352, 5368, 5384, 5394, 5409, 5426, 5436, 5447,
+ 5457, 5468, 5478, 5489, 5500, 5509, 5518, 5529,
+ 5538, 5549, 5558, 5575, 5592, 5608, 5624, 5640,
+ 5656, 5666, 5680, 5697, 5714, 5731, 5741, 5752,
+ 5763, 5772, 5781, 5783, 5807, 5831, 5855, 5879,
+ 5903, 5927, 5951, 5975, 5997, 6007, 6009, 6019,
+ 6042, 6044, 6067, 6088, 6090, 6114, 6138, 6162,
+ 6186, 6210, 6232, 6242, 6244, 6254, 6277, 6279,
+ 6302, 6304, 6312, 6321, 6323, 6347, 6371, 6395,
+ 6419, 6441, 6451, 6453, 6463, 6486, 6488, 6511,
+ 6513, 6521, 6530, 6532, 6556, 6580, 6604, 6628,
+ 6652, 6674, 6684, 6686, 6696, 6719, 6721, 6744,
+ 6746, 6754, 6763, 6765, 6789, 6813, 6835, 6845,
+ 6847, 6857, 6880, 6882, 6905, 6907, 6915, 6924,
+ 6933, 6936, 6945, 6981, 6984, 7020, 7042, 7052,
+ 7055, 7065, 7088, 7091, 7114, 7117, 7125, 7146,
+ 7149, 7167, 7173, 7176, 7182, 7214, 7217, 7249,
+ 7269, 7272, 7292, 7311, 7314, 7333, 7336, 7340,
+ 7357, 7362, 7365, 7370, 7373, 7393, 7413, 7433,
+ 7453, 7471, 7477, 7480, 7486, 7505, 7508, 7527,
+ 7530, 7534, 7543, 7553, 7563, 7573, 7577, 7586,
+ 7597, 7601, 7606, 7610, 7615, 7619, 7624, 7629,
+ 7632, 7637, 7642, 7645, 7650, 7653, 7664, 7675,
+ 7685, 7695, 7705, 7715, 7719, 7727, 7738, 7749,
+ 7760, 7764, 7769, 7774, 7777, 7780, 7783, 7803,
+ 7823, 7843, 7863, 7883, 7901, 7907, 7910, 7916,
+ 7935, 7938, 7957, 7960, 7964, 7973, 7975, 7984,
+ 7987, 8007, 8027, 8045, 8051, 8054, 8060, 8079,
+ 8082, 8101, 8104, 8124, 8144, 8164, 8184, 8202,
+ 8208, 8211, 8217, 8236, 8239, 8258, 8261, 8265,
+ 8274, 8276, 8285, 8287, 8296, 8332, 8334, 8370,
+ 8392, 8402, 8404, 8414, 8437, 8439, 8462, 8464,
+ 8472, 8481, 8502, 8511, 8513, 8528, 8544, 8560,
+ 8576, 8586, 8601, 8618, 8628, 8639, 8649, 8660,
+ 8670, 8681, 8692, 8701, 8710, 8721, 8730, 8741,
+ 8750, 8767, 8784, 8800, 8816, 8832, 8848, 8858,
+ 8872, 8889, 8906, 8923, 8933, 8944, 8955, 8964,
+ 8973, 8975, 8999, 9023, 9047, 9071, 9095, 9119,
+ 9143, 9167, 9189, 9199, 9201, 9211, 9234, 9236,
+ 9259, 9280, 9282, 9306, 9330, 9354, 9378, 9402,
+ 9424, 9434, 9436, 9446, 9469, 9471, 9494, 9496,
+ 9504, 9513, 9515, 9539, 9563, 9587, 9611, 9633,
+ 9643, 9645, 9655, 9678, 9680, 9703, 9705, 9713,
+ 9722, 9724, 9748, 9772, 9796, 9820, 9844, 9866,
+ 9876, 9878, 9888, 9911, 9913, 9936, 9938, 9946,
+ 9955, 9957, 9981, 10005, 10027, 10037, 10039, 10049,
+ 10072, 10074, 10097, 10099, 10107, 10116, 10118, 10142,
+ 10166, 10190, 10214, 10236, 10246, 10248, 10258, 10281,
+ 10283, 10306, 10308, 10316, 10325, 10327, 10351, 10375,
+ 10399, 10423, 10445, 10455, 10457, 10467, 10494, 10496,
+ 10523, 10546, 10569, 10592, 10615, 10624, 10647, 10670,
+ 10672, 10675, 10695, 10715, 10735, 10755, 10773, 10779,
+ 10782, 10788, 10811, 10814, 10837, 10856, 10875, 10894,
+ 10913, 10918, 10937, 10956, 10959, 10979, 10999, 11019,
+ 11039, 11057, 11063, 11066, 11072, 11091, 11094, 11113,
+ 11116, 11120, 11129, 11138, 11141, 11150, 11170, 11190,
+ 11210, 11230, 11250, 11268, 11274, 11277, 11283, 11302,
+ 11305, 11324, 11327, 11331, 11340, 11350, 11360, 11370,
+ 11374, 11383, 11394, 11398, 11403, 11407, 11412, 11416,
+ 11421, 11426, 11429, 11434, 11439, 11442, 11447, 11450,
+ 11461, 11472, 11482, 11492, 11502, 11512, 11516, 11524,
+ 11535, 11546, 11557, 11561, 11566, 11571, 11574, 11577,
+ 11580, 11600, 11620, 11638, 11644, 11647, 11653, 11672,
+ 11675, 11694, 11697, 11701, 11710, 11719, 11722, 11731,
+ 11734, 11754, 11774, 11794, 11814, 11832, 11838, 11841,
+ 11847, 11866, 11869, 11888, 11891, 11895, 11898, 11918,
+ 11938, 11958, 11978, 11996, 12002, 12005, 12011, 12034,
+ 12037, 12060, 12079, 12098, 12117, 12136, 12141, 12160,
+ 12179, 12182, 12185, 12205, 12225, 12245, 12265, 12285,
+ 12305, 12325, 12343, 12349, 12352, 12358, 12377, 12380,
+ 12399, 12416, 12419, 12434, 12450, 12466, 12482, 12492,
+ 12507, 12524, 12534, 12545, 12555, 12566, 12576, 12587,
+ 12598, 12607, 12616, 12627, 12636, 12647, 12656, 12673,
+ 12690, 12706, 12722, 12738, 12754, 12764, 12778, 12795,
+ 12812, 12829, 12839, 12850, 12861, 12870, 12879, 12882,
+ 12906, 12930, 12954, 12978, 13002, 13026, 13050, 13074,
+ 13096, 13106, 13109, 13119, 13142, 13145, 13168, 13189,
+ 13192, 13216, 13240, 13264, 13288, 13312, 13334, 13344,
+ 13347, 13357, 13380, 13383, 13406, 13409, 13417, 13420,
+ 13444, 13468, 13492, 13516, 13538, 13548, 13551, 13561,
+ 13584, 13587, 13610, 13613, 13621, 13624, 13648, 13672,
+ 13696, 13720, 13744, 13766, 13776, 13779, 13789, 13812,
+ 13815, 13838, 13841, 13849, 13852, 13876, 13900, 13922,
+ 13932, 13935, 13945, 13968, 13971, 13994, 13997, 14021,
+ 14045, 14069, 14093, 14115, 14125, 14128, 14138, 14161,
+ 14164, 14187, 14190, 14198, 14201, 14225, 14249, 14273,
+ 14297, 14319, 14329, 14332, 14342, 14369, 14372, 14399,
+ 14422, 14445, 14468, 14491, 14500, 14523, 14546, 14549,
+ 14551, 14575, 14599, 14623, 14647, 14669, 14679, 14681,
+ 14691, 14714, 14716, 14739, 14741, 14749, 14758, 14760,
+ 14784, 14808, 14832, 14856, 14878, 14888, 14890, 14900,
+ 14927, 14929, 14956, 14979, 15002, 15025, 15048, 15057,
+ 15080, 15103, 15105, 15107, 15131, 15155, 15177, 15187,
+ 15189, 15199, 15222, 15224, 15247, 15249, 15257, 15266,
+ 15268, 15292, 15316, 15340, 15364, 15386, 15396, 15398,
+ 15408, 15431, 15433, 15456, 15458, 15466, 15475, 15477,
+ 15501, 15525, 15549, 15573, 15595, 15605, 15607, 15617,
+ 15644, 15646, 15673, 15696, 15719, 15742, 15765, 15774,
+ 15797, 15820, 15822, 15825, 15845, 15865, 15885, 15905,
+ 15923, 15929, 15932, 15938, 15957, 15960, 15979, 15982,
+ 16002, 16022, 16042, 16062, 16082, 16102, 16122, 16140,
+ 16146, 16149, 16155, 16174, 16177, 16196, 16213, 16216,
+ 16231, 16247, 16263, 16279, 16289, 16304, 16321, 16331,
+ 16342, 16352, 16363, 16373, 16384, 16395, 16404, 16413,
+ 16424, 16433, 16444, 16453, 16470, 16487, 16503, 16519,
+ 16535, 16551, 16561, 16575, 16592, 16609, 16626, 16636,
+ 16647, 16658, 16667, 16676, 16679, 16703, 16727, 16751,
+ 16775, 16799, 16823, 16847, 16871, 16893, 16903, 16906,
+ 16916, 16939, 16942, 16965, 16986, 16989, 17013, 17037,
+ 17061, 17085, 17109, 17131, 17141, 17144, 17154, 17177,
+ 17180, 17203, 17206, 17230, 17254, 17278, 17302, 17324,
+ 17334, 17337, 17347, 17370, 17373, 17396, 17399, 17407,
+ 17410, 17434, 17458, 17482, 17506, 17530, 17552, 17562,
+ 17565, 17575, 17598, 17601, 17624, 17627, 17635, 17638,
+ 17662, 17686, 17708, 17718, 17721, 17731, 17754, 17757,
+ 17780, 17783, 17791, 17794, 17818, 17842, 17866, 17890,
+ 17912, 17922, 17925, 17935, 17958, 17961, 17984, 17987,
+ 17995, 17998, 18022, 18046, 18070, 18094, 18116, 18126,
+ 18129, 18139, 18166, 18169, 18196, 18219, 18242, 18265,
+ 18288, 18297, 18320, 18343, 18346, 18348, 18372, 18396,
+ 18420, 18444, 18466, 18476, 18478, 18488, 18511, 18513,
+ 18536, 18538, 18546, 18548, 18572, 18596, 18620, 18644,
+ 18668, 18690, 18700, 18702, 18712, 18735, 18737, 18760,
+ 18762, 18770, 18772, 18796, 18820, 18842, 18852, 18854,
+ 18864, 18887, 18889, 18912, 18914, 18922, 18931, 18933,
+ 18957, 18981, 19005, 19029, 19051, 19061, 19063, 19073,
+ 19096, 19098, 19121, 19123, 19131, 19133, 19157, 19181,
+ 19205, 19229, 19251, 19261, 19263, 19273, 19300, 19302,
+ 19329, 19352, 19375, 19398, 19421, 19430, 19453, 19476,
+ 19478, 19480, 19499, 19518, 19537, 19556, 19573, 19578,
+ 19580, 19585, 19604, 19606, 19625, 19627, 19631, 19639,
+ 19641, 19660, 19679, 19698, 19717, 19736, 19755, 19774,
+ 19791, 19796, 19798, 19803, 19822, 19824, 19843, 19859,
+ 19861, 19880, 19899, 19918, 19937, 19956, 19973, 19978,
+ 19980, 19985, 20004, 20006, 20025, 20027, 20031, 20039,
+ 20047, 20050, 20056, 20065, 20067, 20076, 20078, 20087,
+ 20123, 20125, 20161, 20183, 20193, 20195, 20205, 20228,
+ 20230, 20253, 20274, 20283, 20285, 20300, 20316, 20332,
+ 20348, 20358, 20373, 20390, 20400, 20411, 20421, 20432,
+ 20442, 20453, 20464, 20473, 20482, 20493, 20502, 20513,
+ 20522, 20539, 20556, 20572, 20588, 20604, 20620, 20630,
+ 20644, 20661, 20678, 20695, 20705, 20716, 20727, 20736,
+ 20745, 20747, 20771, 20795, 20819, 20843, 20867, 20891,
+ 20915, 20939, 20961, 20971, 20973, 20983, 21006, 21008,
+ 21031, 21052, 21054, 21078, 21102, 21126, 21150, 21174,
+ 21196, 21206, 21208, 21218, 21241, 21243, 21266, 21268,
+ 21276, 21285, 21287, 21311, 21335, 21359, 21383, 21405,
+ 21415, 21417, 21427, 21450, 21452, 21475, 21477, 21501,
+ 21525, 21549, 21573, 21597, 21619, 21629, 21631, 21641,
+ 21664, 21666, 21689, 21691, 21715, 21739, 21761, 21771,
+ 21773, 21783, 21806, 21808, 21831, 21833, 21841, 21850,
+ 21852, 21876, 21900, 21924, 21948, 21970, 21980, 21982,
+ 21992, 22015, 22017, 22040, 22042, 22066, 22090, 22114,
+ 22138, 22160, 22170, 22172, 22182, 22209, 22211, 22238,
+ 22261, 22284, 22307, 22330, 22339, 22362, 22385, 22387,
+ 22389, 22408, 22427, 22444, 22449, 22451, 22456, 22475,
+ 22477, 22496, 22498, 22502, 22510, 22518, 22521, 22527,
+ 22529, 22532, 22535, 22538, 22541, 22544, 22547, 22549,
+ 22552, 22554, 22556, 22557, 22560, 22563, 22566, 22569,
+ 22600, 22603, 22606, 22609, 22612, 22643, 22646, 22649,
+ 22652, 22655, 22686, 22689, 22692, 22695, 22698, 22729,
+ 22732, 22735, 22738, 22740, 22771, 22774, 22777, 22780,
+ 22783, 22814, 22817, 22820, 22851, 22855, 22886, 22917,
+ 22920, 22923, 22926, 22929, 22932, 22963, 22966, 22969,
+ 23000, 23003, 23006, 23009, 23011, 23015, 23019, 23023,
+ 23027, 23031, 23035, 23067, 23071, 23075, 23107, 23111,
+ 23115, 23119, 23151, 23155, 23159, 23163, 23194, 23225,
+ 23228, 23231, 23234, 23237, 23240, 23271, 23274, 23277,
+ 23308, 23311, 23314, 23317, 23348, 23351, 23354, 23357,
+ 23388, 23391, 23394, 23397, 23400, 23403, 23406, 23409,
+ 23412, 23443, 23474, 23477, 23480, 23511, 23514, 23517,
+ 23520, 23551, 23554, 23557, 23560, 23591, 23594, 23597,
+ 23600, 23631, 23634, 23637, 23640, 23644, 23648, 23652,
+ 23656, 23660, 23692, 23696, 23700, 23732, 23736, 23740,
+ 23744, 23776, 23780, 23784, 23788, 23820, 23824, 23828,
+ 23832, 23863, 23895, 23899, 23903, 23935, 23939, 23943,
+ 23947, 23978, 24009, 24012, 24015, 24018, 24021, 24024,
+ 24055, 24058, 24061, 24092, 24095, 24098, 24101, 24132,
+ 24135, 24138, 24141, 24172, 24175, 24178, 24181, 24212,
+ 24215, 24218, 24221, 24252, 24255, 24258, 24261, 24292,
+ 24295, 24298, 24329, 24361, 24365, 24369, 24401, 24405,
+ 24409, 24413, 24445, 24449, 24453, 24457, 24489, 24493,
+ 24497, 24501, 24533, 24565, 24569, 24573, 24577, 24609,
+ 24613, 24617, 24649, 24681, 24685, 24689, 24721, 24753,
+ 24757, 24761, 24793, 24797, 24801, 24805, 24837, 24841,
+ 24845, 24849, 24881, 24885, 24889, 24893, 24925, 24929,
+ 24933, 24965, 24969, 24973, 24977, 25009, 25013, 25017,
+ 25049, 25080, 25083, 25086, 25089, 25120, 25123, 25126,
+ 25157, 25188, 25191, 25194, 25197, 25228, 25231, 25234,
+ 25237, 25268, 25271, 25274, 25305, 25337, 25341, 25345,
+ 25377, 25381, 25385, 25417, 25449, 25453, 25457, 25489,
+ 25493, 25497, 25529, 25533, 25537, 25541, 25573, 25577,
+ 25581, 25585, 25617, 25621, 25625, 25629, 25661, 25665,
+ 25669, 25673, 25705, 25709, 25713, 25745, 25776, 25779,
+ 25782, 25785, 25816, 25819, 25822, 25825, 25856, 25859,
+ 25862, 25865, 25896, 25899, 25902, 25905, 25936, 25939,
+ 25942, 25973, 26004, 26007, 26010, 26013, 26044, 26047,
+ 26050, 26081, 26084, 26087, 26090, 26094, 26125, 26156,
+ 26159, 26162, 26165, 26168, 26199, 26202, 26205, 26236,
+ 26239, 26242, 26245, 26276, 26279, 26282, 26313, 26316,
+ 26319, 26350, 26353, 26356, 26359, 26390, 26393, 26396,
+ 26427, 26430, 26433, 26464, 26495, 26498, 26501, 26504,
+ 26508
+};
+
+static const char _thttp_machine_parser_header_WWW_Authenticate_trans_keys[] = {
+ 80, 87, 112, 119, 82, 114, 79, 111,
+ 88, 120, 89, 121, 45, 65, 97, 85,
+ 117, 84, 116, 72, 104, 69, 101, 78,
+ 110, 84, 116, 73, 105, 67, 99, 65,
+ 97, 84, 116, 69, 101, 9, 32, 58,
+ 9, 13, 32, 66, 68, 98, 100, 13,
+ 10, 13, 9, 13, 32, 66, 68, 98,
+ 100, 10, 13, 9, 13, 32, 66, 68,
+ 98, 100, 13, 65, 97, 13, 83, 115,
+ 13, 73, 105, 13, 67, 99, 9, 13,
+ 32, 9, 13, 32, 33, 37, 39, 65,
+ 68, 78, 79, 81, 82, 83, 97, 100,
+ 110, 111, 113, 114, 115, 126, 42, 43,
+ 45, 46, 48, 57, 66, 90, 95, 122,
+ 10, 13, 9, 13, 32, 33, 37, 39,
+ 65, 68, 78, 79, 81, 82, 83, 97,
+ 100, 110, 111, 113, 114, 115, 126, 42,
+ 43, 45, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 33, 37, 39, 44,
+ 61, 126, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 44, 61, 10,
+ 13, 9, 13, 32, 44, 61, 9, 13,
+ 32, 33, 37, 39, 65, 68, 78, 79,
+ 81, 82, 83, 97, 100, 110, 111, 113,
+ 114, 115, 126, 42, 43, 45, 46, 48,
+ 57, 66, 90, 95, 122, 10, 13, 9,
+ 13, 32, 33, 37, 39, 65, 68, 78,
+ 79, 81, 82, 83, 97, 100, 110, 111,
+ 113, 114, 115, 126, 42, 43, 45, 46,
+ 48, 57, 66, 90, 95, 122, 9, 13,
+ 32, 33, 37, 39, 44, 61, 76, 108,
+ 126, 42, 46, 48, 57, 65, 90, 95,
+ 122, 10, 13, 9, 13, 32, 33, 37,
+ 39, 44, 61, 79, 111, 126, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 91, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 10, 13, 9, 13, 32, 33, 34,
+ 37, 39, 91, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 10, 13,
+ 9, 13, 32, 34, 13, 34, 92, 127,
+ 0, 8, 10, 31, 10, 13, 9, 13,
+ 32, 44, 9, 13, 32, 44, 10, 13,
+ 9, 13, 32, 44, 10, 13, 9, 13,
+ 32, 33, 37, 39, 44, 61, 79, 111,
+ 126, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 37, 39, 44,
+ 61, 78, 110, 126, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 37, 39, 44, 61, 67, 99, 126, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 37, 39, 44, 61, 69,
+ 101, 126, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 37, 39,
+ 44, 61, 126, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 44, 61,
+ 10, 13, 9, 13, 32, 44, 61, 9,
+ 13, 32, 33, 34, 37, 39, 91, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 10, 13, 9, 13, 32, 33,
+ 34, 37, 39, 91, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 10,
+ 13, 9, 13, 32, 34, 13, 34, 92,
+ 127, 0, 8, 10, 31, 10, 13, 9,
+ 13, 32, 44, 13, 0, 9, 11, 127,
+ 9, 13, 32, 33, 37, 39, 44, 126,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 13, 58, 48, 57, 65, 70, 97, 102,
+ 13, 58, 93, 48, 57, 65, 70, 97,
+ 102, 13, 58, 93, 48, 57, 65, 70,
+ 97, 102, 13, 58, 93, 48, 57, 65,
+ 70, 97, 102, 13, 58, 93, 13, 58,
+ 48, 57, 65, 70, 97, 102, 13, 46,
+ 58, 93, 48, 57, 65, 70, 97, 102,
+ 13, 48, 57, 13, 46, 48, 57, 13,
+ 48, 57, 13, 46, 48, 57, 13, 48,
+ 57, 13, 93, 48, 57, 13, 93, 48,
+ 57, 13, 93, 13, 46, 48, 57, 13,
+ 46, 13, 46, 48, 57, 13, 46, 13,
+ 46, 58, 93, 48, 57, 65, 70, 97,
+ 102, 13, 46, 58, 93, 48, 57, 65,
+ 70, 97, 102, 13, 58, 93, 48, 57,
+ 65, 70, 97, 102, 13, 58, 93, 48,
+ 57, 65, 70, 97, 102, 13, 58, 93,
+ 48, 57, 65, 70, 97, 102, 13, 58,
+ 93, 48, 57, 65, 70, 97, 102, 13,
+ 58, 93, 13, 48, 57, 65, 70, 97,
+ 102, 13, 46, 58, 93, 48, 57, 65,
+ 70, 97, 102, 13, 46, 58, 93, 48,
+ 57, 65, 70, 97, 102, 13, 46, 58,
+ 93, 48, 57, 65, 70, 97, 102, 13,
+ 48, 57, 13, 46, 48, 57, 13, 46,
+ 48, 57, 13, 46, 13, 58, 10, 13,
+ 9, 13, 32, 33, 37, 39, 44, 61,
+ 80, 112, 126, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 37,
+ 39, 44, 61, 65, 97, 126, 42, 46,
+ 48, 57, 66, 90, 95, 122, 9, 13,
+ 32, 33, 37, 39, 44, 61, 81, 113,
+ 126, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 37, 39, 44,
+ 61, 85, 117, 126, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 37, 39, 44, 61, 69, 101, 126, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 37, 39, 44, 61, 126,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 44, 61, 10, 13, 9,
+ 13, 32, 44, 61, 9, 13, 32, 33,
+ 34, 37, 39, 91, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 10,
+ 13, 9, 13, 32, 33, 34, 37, 39,
+ 91, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 10, 13, 9, 13,
+ 32, 34, 13, 34, 92, 127, 0, 8,
+ 10, 31, 10, 13, 9, 13, 32, 44,
+ 13, 0, 9, 11, 127, 10, 13, 9,
+ 13, 32, 33, 37, 39, 44, 61, 79,
+ 111, 126, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 37, 39,
+ 44, 61, 80, 112, 126, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 37, 39, 44, 61, 126, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 44, 61, 10, 13, 9, 13, 32,
+ 44, 61, 9, 13, 32, 33, 34, 37,
+ 39, 91, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 10, 13, 9,
+ 13, 32, 33, 34, 37, 39, 91, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 10, 13, 9, 13, 32, 34,
+ 13, 34, 92, 127, 0, 8, 10, 31,
+ 13, 34, 92, 127, 0, 8, 10, 31,
+ 13, 34, 10, 13, 34, 9, 13, 32,
+ 44, 10, 13, 9, 13, 32, 44, 9,
+ 13, 32, 33, 37, 39, 44, 61, 69,
+ 101, 126, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 37, 39,
+ 44, 61, 65, 97, 126, 42, 46, 48,
+ 57, 66, 90, 95, 122, 9, 13, 32,
+ 33, 37, 39, 44, 61, 76, 108, 126,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 37, 39, 44, 61,
+ 77, 109, 126, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 37,
+ 39, 44, 61, 126, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 44,
+ 61, 10, 13, 9, 13, 32, 44, 61,
+ 9, 13, 32, 33, 34, 37, 39, 91,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 10, 13, 9, 13, 32,
+ 33, 34, 37, 39, 91, 126, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 10, 13, 9, 13, 32, 34, 13, 34,
+ 92, 127, 0, 8, 10, 31, 10, 13,
+ 9, 13, 32, 44, 13, 0, 9, 11,
+ 127, 10, 13, 9, 13, 32, 33, 37,
+ 39, 44, 61, 84, 116, 126, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 37, 39, 44, 61, 65, 97,
+ 126, 42, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 33, 37, 39, 44,
+ 61, 76, 108, 126, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 37, 39, 44, 61, 69, 101, 126, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 37, 39, 44, 61, 126,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 44, 61, 10, 13, 9,
+ 13, 32, 44, 61, 9, 13, 32, 33,
+ 34, 37, 39, 70, 84, 91, 102, 116,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 10, 13, 9, 13, 32,
+ 33, 34, 37, 39, 70, 84, 91, 102,
+ 116, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 37, 39, 44, 65, 97, 126, 42, 46,
+ 48, 57, 66, 90, 95, 122, 9, 13,
+ 32, 33, 37, 39, 44, 76, 108, 126,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 37, 39, 44, 83,
+ 115, 126, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 37, 39,
+ 44, 69, 101, 126, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 44,
+ 9, 13, 32, 33, 37, 39, 44, 82,
+ 114, 126, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 37, 39,
+ 44, 85, 117, 126, 42, 46, 48, 57,
+ 65, 90, 95, 122, 10, 13, 10, 13,
+ 34, 13, 34, 0, 9, 11, 127, 9,
+ 13, 32, 34, 44, 92, 127, 0, 31,
+ 10, 13, 9, 13, 32, 34, 44, 92,
+ 127, 0, 31, 10, 13, 9, 13, 32,
+ 34, 44, 92, 127, 0, 31, 9, 13,
+ 32, 33, 34, 37, 39, 65, 68, 78,
+ 79, 81, 82, 83, 92, 97, 100, 110,
+ 111, 113, 114, 115, 126, 127, 0, 31,
+ 42, 43, 45, 46, 48, 57, 66, 90,
+ 95, 122, 10, 13, 9, 13, 32, 33,
+ 34, 37, 39, 65, 68, 78, 79, 81,
+ 82, 83, 92, 97, 100, 110, 111, 113,
+ 114, 115, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 66, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 92, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 34, 44, 61, 92, 127, 0, 31,
+ 10, 13, 9, 13, 32, 34, 44, 61,
+ 92, 127, 0, 31, 9, 13, 32, 33,
+ 34, 37, 39, 91, 92, 126, 127, 0,
+ 31, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 10, 13, 9, 13, 32,
+ 33, 34, 37, 39, 91, 92, 126, 127,
+ 0, 31, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 10, 13, 9, 13,
+ 32, 34, 92, 127, 0, 31, 9, 13,
+ 32, 34, 44, 92, 127, 0, 31, 9,
+ 13, 32, 34, 44, 92, 127, 0, 31,
+ 10, 13, 13, 0, 9, 11, 127, 9,
+ 13, 32, 33, 34, 37, 39, 44, 92,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 13, 34, 58, 92,
+ 127, 0, 8, 10, 31, 48, 57, 65,
+ 70, 97, 102, 13, 34, 58, 92, 93,
+ 127, 0, 8, 10, 31, 48, 57, 65,
+ 70, 97, 102, 13, 34, 58, 92, 93,
+ 127, 0, 8, 10, 31, 48, 57, 65,
+ 70, 97, 102, 13, 34, 58, 92, 93,
+ 127, 0, 8, 10, 31, 48, 57, 65,
+ 70, 97, 102, 13, 34, 58, 92, 93,
+ 127, 0, 8, 10, 31, 13, 34, 58,
+ 92, 127, 0, 8, 10, 31, 48, 57,
+ 65, 70, 97, 102, 13, 34, 46, 58,
+ 92, 93, 127, 0, 8, 10, 31, 48,
+ 57, 65, 70, 97, 102, 13, 34, 92,
+ 127, 0, 8, 10, 31, 48, 57, 13,
+ 34, 46, 92, 127, 0, 8, 10, 31,
+ 48, 57, 13, 34, 92, 127, 0, 8,
+ 10, 31, 48, 57, 13, 34, 46, 92,
+ 127, 0, 8, 10, 31, 48, 57, 13,
+ 34, 92, 127, 0, 8, 10, 31, 48,
+ 57, 13, 34, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 13, 34, 92, 93,
+ 127, 0, 8, 10, 31, 48, 57, 13,
+ 34, 92, 93, 127, 0, 8, 10, 31,
+ 13, 34, 46, 92, 127, 0, 8, 10,
+ 31, 48, 57, 13, 34, 46, 92, 127,
+ 0, 8, 10, 31, 13, 34, 46, 92,
+ 127, 0, 8, 10, 31, 48, 57, 13,
+ 34, 46, 92, 127, 0, 8, 10, 31,
+ 13, 34, 46, 58, 92, 93, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 46, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 13, 34, 92, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 46, 58, 92, 93,
+ 127, 0, 8, 10, 31, 48, 57, 65,
+ 70, 97, 102, 13, 34, 46, 58, 92,
+ 93, 127, 0, 8, 10, 31, 48, 57,
+ 65, 70, 97, 102, 13, 34, 46, 58,
+ 92, 93, 127, 0, 8, 10, 31, 48,
+ 57, 65, 70, 97, 102, 13, 34, 92,
+ 127, 0, 8, 10, 31, 48, 57, 13,
+ 34, 46, 92, 127, 0, 8, 10, 31,
+ 48, 57, 13, 34, 46, 92, 127, 0,
+ 8, 10, 31, 48, 57, 13, 34, 46,
+ 92, 127, 0, 8, 10, 31, 13, 34,
+ 58, 92, 127, 0, 8, 10, 31, 10,
+ 13, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 76, 92, 108, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 71, 92, 103, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 79, 92, 111, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 82, 92, 114, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 73, 92, 105, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 84, 92, 116, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 72, 92, 104, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 77, 92, 109, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 92, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 34, 44, 61, 92, 127, 0,
+ 31, 10, 13, 9, 13, 32, 34, 44,
+ 61, 92, 127, 0, 31, 9, 13, 32,
+ 33, 34, 37, 39, 91, 92, 126, 127,
+ 0, 31, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 10, 13, 9, 13,
+ 32, 33, 34, 37, 39, 91, 92, 126,
+ 127, 0, 31, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 10, 13, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 79, 92, 111,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 77, 92, 109,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 65, 92, 97,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 66, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 73, 92, 105,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 78, 92, 110,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 61,
+ 92, 127, 0, 31, 10, 13, 9, 13,
+ 32, 34, 44, 61, 92, 127, 0, 31,
+ 9, 13, 32, 33, 34, 37, 39, 91,
+ 92, 126, 127, 0, 31, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 10,
+ 13, 9, 13, 32, 33, 34, 37, 39,
+ 91, 92, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 10, 13, 9, 13, 32, 34, 92, 127,
+ 0, 31, 9, 13, 32, 34, 44, 92,
+ 127, 0, 31, 13, 34, 92, 127, 0,
+ 8, 10, 31, 13, 34, 10, 13, 34,
+ 10, 13, 34, 13, 34, 0, 9, 11,
+ 127, 9, 13, 32, 34, 44, 92, 127,
+ 0, 31, 10, 13, 34, 9, 13, 32,
+ 34, 44, 92, 127, 0, 31, 9, 13,
+ 32, 33, 34, 37, 39, 65, 68, 78,
+ 79, 81, 82, 83, 92, 97, 100, 110,
+ 111, 113, 114, 115, 126, 127, 0, 31,
+ 42, 43, 45, 46, 48, 57, 66, 90,
+ 95, 122, 10, 13, 34, 9, 13, 32,
+ 33, 34, 37, 39, 65, 68, 78, 79,
+ 81, 82, 83, 92, 97, 100, 110, 111,
+ 113, 114, 115, 126, 127, 0, 31, 42,
+ 43, 45, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 92, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 34, 44, 61, 92, 127, 0,
+ 31, 10, 13, 34, 9, 13, 32, 34,
+ 44, 61, 92, 127, 0, 31, 9, 13,
+ 32, 33, 34, 37, 39, 91, 92, 126,
+ 127, 0, 31, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 10, 13, 34,
+ 9, 13, 32, 33, 34, 37, 39, 91,
+ 92, 126, 127, 0, 31, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 10,
+ 13, 34, 9, 13, 32, 34, 92, 127,
+ 0, 31, 9, 13, 32, 33, 34, 37,
+ 39, 44, 92, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 10,
+ 13, 34, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 126, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 34,
+ 44, 61, 10, 13, 34, 9, 13, 32,
+ 34, 44, 61, 9, 13, 32, 33, 34,
+ 37, 39, 65, 68, 78, 79, 81, 82,
+ 83, 97, 100, 110, 111, 113, 114, 115,
+ 126, 42, 43, 45, 46, 48, 57, 66,
+ 90, 95, 122, 10, 13, 34, 9, 13,
+ 32, 33, 34, 37, 39, 65, 68, 78,
+ 79, 81, 82, 83, 97, 100, 110, 111,
+ 113, 114, 115, 126, 42, 43, 45, 46,
+ 48, 57, 66, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 76,
+ 108, 126, 42, 46, 48, 57, 65, 90,
+ 95, 122, 10, 13, 34, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 79, 111,
+ 126, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 91, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 10, 13, 34, 9,
+ 13, 32, 33, 34, 37, 39, 91, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 10, 13, 34, 9, 13, 32,
+ 34, 9, 13, 32, 33, 34, 37, 39,
+ 44, 126, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 10,
+ 13, 34, 9, 13, 32, 34, 44, 10,
+ 13, 34, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 79, 111, 126, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 78,
+ 110, 126, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 67, 99, 126, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 69,
+ 101, 126, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 126, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 34,
+ 44, 61, 10, 13, 34, 9, 13, 32,
+ 34, 44, 61, 9, 13, 32, 33, 34,
+ 37, 39, 91, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 10, 13,
+ 34, 9, 13, 32, 33, 34, 37, 39,
+ 91, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 10, 13, 34, 9,
+ 13, 32, 34, 9, 13, 32, 34, 44,
+ 92, 127, 0, 31, 10, 13, 9, 13,
+ 32, 34, 44, 92, 127, 0, 31, 10,
+ 13, 9, 13, 32, 34, 44, 92, 127,
+ 0, 31, 9, 13, 32, 33, 34, 37,
+ 39, 65, 68, 78, 79, 81, 82, 83,
+ 92, 97, 100, 110, 111, 113, 114, 115,
+ 126, 127, 0, 31, 42, 43, 45, 46,
+ 48, 57, 66, 90, 95, 122, 10, 13,
+ 9, 13, 32, 33, 34, 37, 39, 65,
+ 68, 78, 79, 81, 82, 83, 92, 97,
+ 100, 110, 111, 113, 114, 115, 126, 127,
+ 0, 31, 42, 43, 45, 46, 48, 57,
+ 66, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 61,
+ 92, 127, 0, 31, 10, 13, 9, 13,
+ 32, 34, 44, 61, 92, 127, 0, 31,
+ 9, 13, 32, 33, 34, 37, 39, 91,
+ 92, 126, 127, 0, 31, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 10,
+ 13, 9, 13, 32, 33, 34, 37, 39,
+ 91, 92, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 10, 13, 9, 13, 32, 34, 92, 127,
+ 0, 31, 9, 13, 32, 34, 44, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 44, 92, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 34, 44, 92, 127, 0,
+ 31, 10, 13, 13, 34, 58, 92, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 13, 34, 58, 92,
+ 127, 0, 8, 10, 31, 48, 57, 65,
+ 70, 97, 102, 13, 34, 46, 58, 92,
+ 93, 127, 0, 8, 10, 31, 48, 57,
+ 65, 70, 97, 102, 13, 34, 92, 127,
+ 0, 8, 10, 31, 48, 57, 13, 34,
+ 46, 92, 127, 0, 8, 10, 31, 48,
+ 57, 13, 34, 92, 127, 0, 8, 10,
+ 31, 48, 57, 13, 34, 46, 92, 127,
+ 0, 8, 10, 31, 48, 57, 13, 34,
+ 92, 127, 0, 8, 10, 31, 48, 57,
+ 13, 34, 92, 93, 127, 0, 8, 10,
+ 31, 48, 57, 13, 34, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 13, 34,
+ 92, 93, 127, 0, 8, 10, 31, 9,
+ 13, 32, 34, 44, 92, 127, 0, 31,
+ 13, 34, 46, 92, 127, 0, 8, 10,
+ 31, 48, 57, 13, 34, 46, 92, 127,
+ 0, 8, 10, 31, 13, 34, 46, 92,
+ 127, 0, 8, 10, 31, 48, 57, 13,
+ 34, 46, 92, 127, 0, 8, 10, 31,
+ 13, 34, 46, 58, 92, 93, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 46, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 13, 34, 92, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 46, 58, 92, 93,
+ 127, 0, 8, 10, 31, 48, 57, 65,
+ 70, 97, 102, 13, 34, 46, 58, 92,
+ 93, 127, 0, 8, 10, 31, 48, 57,
+ 65, 70, 97, 102, 13, 34, 46, 58,
+ 92, 93, 127, 0, 8, 10, 31, 48,
+ 57, 65, 70, 97, 102, 13, 34, 92,
+ 127, 0, 8, 10, 31, 48, 57, 13,
+ 34, 46, 92, 127, 0, 8, 10, 31,
+ 48, 57, 13, 34, 46, 92, 127, 0,
+ 8, 10, 31, 48, 57, 13, 34, 46,
+ 92, 127, 0, 8, 10, 31, 13, 34,
+ 58, 92, 127, 0, 8, 10, 31, 10,
+ 13, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 76, 92, 108, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 71, 92, 103, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 79, 92, 111, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 82, 92, 114, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 73, 92, 105, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 84, 92, 116, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 72, 92, 104, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 77, 92, 109, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 92, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 34, 44, 61, 92, 127, 0,
+ 31, 10, 13, 9, 13, 32, 34, 44,
+ 61, 92, 127, 0, 31, 9, 13, 32,
+ 33, 34, 37, 39, 91, 92, 126, 127,
+ 0, 31, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 10, 13, 9, 13,
+ 32, 33, 34, 37, 39, 91, 92, 126,
+ 127, 0, 31, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 10, 13, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 79, 92, 111,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 77, 92, 109,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 65, 92, 97,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 66, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 73, 92, 105,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 78, 92, 110,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 61,
+ 92, 127, 0, 31, 10, 13, 9, 13,
+ 32, 34, 44, 61, 92, 127, 0, 31,
+ 9, 13, 32, 33, 34, 37, 39, 91,
+ 92, 126, 127, 0, 31, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 10,
+ 13, 9, 13, 32, 33, 34, 37, 39,
+ 91, 92, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 10, 13, 9, 13, 32, 34, 92, 127,
+ 0, 31, 9, 13, 32, 34, 44, 92,
+ 127, 0, 31, 10, 13, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 79, 92,
+ 111, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 78, 92,
+ 110, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 67, 92,
+ 99, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 69, 92,
+ 101, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 92, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 34, 44,
+ 61, 92, 127, 0, 31, 10, 13, 9,
+ 13, 32, 34, 44, 61, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 91, 92, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 10, 13, 9, 13, 32, 33, 34, 37,
+ 39, 91, 92, 126, 127, 0, 31, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 10, 13, 9, 13, 32, 34, 92,
+ 127, 0, 31, 9, 13, 32, 34, 44,
+ 92, 127, 0, 31, 10, 13, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 80,
+ 92, 112, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 65,
+ 92, 97, 126, 127, 0, 31, 42, 46,
+ 48, 57, 66, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 81,
+ 92, 113, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 85,
+ 92, 117, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 69,
+ 92, 101, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 92,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 34,
+ 44, 61, 92, 127, 0, 31, 10, 13,
+ 9, 13, 32, 34, 44, 61, 92, 127,
+ 0, 31, 9, 13, 32, 33, 34, 37,
+ 39, 91, 92, 126, 127, 0, 31, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 10, 13, 9, 13, 32, 33, 34,
+ 37, 39, 91, 92, 126, 127, 0, 31,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 10, 13, 9, 13, 32, 34,
+ 92, 127, 0, 31, 9, 13, 32, 34,
+ 44, 92, 127, 0, 31, 9, 13, 32,
+ 34, 44, 92, 127, 0, 31, 10, 13,
+ 9, 13, 32, 34, 44, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 65, 68, 78, 79, 81, 82, 83, 92,
+ 97, 100, 110, 111, 113, 114, 115, 126,
+ 127, 0, 31, 42, 43, 45, 46, 48,
+ 57, 66, 90, 95, 122, 10, 13, 9,
+ 13, 32, 33, 34, 37, 39, 65, 68,
+ 78, 79, 81, 82, 83, 92, 97, 100,
+ 110, 111, 113, 114, 115, 126, 127, 0,
+ 31, 42, 43, 45, 46, 48, 57, 66,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 92, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 34, 44, 61, 92,
+ 127, 0, 31, 10, 13, 9, 13, 32,
+ 34, 44, 61, 92, 127, 0, 31, 9,
+ 13, 32, 33, 34, 37, 39, 91, 92,
+ 126, 127, 0, 31, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 10, 13,
+ 9, 13, 32, 33, 34, 37, 39, 91,
+ 92, 126, 127, 0, 31, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 10,
+ 13, 9, 13, 32, 34, 92, 127, 0,
+ 31, 9, 13, 32, 34, 44, 92, 127,
+ 0, 31, 9, 13, 32, 33, 34, 37,
+ 39, 44, 92, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 10,
+ 13, 13, 34, 58, 92, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 92, 93, 127, 0, 8,
+ 10, 31, 13, 34, 58, 92, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 46, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 92, 127, 0, 8,
+ 10, 31, 48, 57, 13, 34, 46, 92,
+ 127, 0, 8, 10, 31, 48, 57, 13,
+ 34, 92, 127, 0, 8, 10, 31, 48,
+ 57, 13, 34, 46, 92, 127, 0, 8,
+ 10, 31, 48, 57, 13, 34, 92, 127,
+ 0, 8, 10, 31, 48, 57, 13, 34,
+ 92, 93, 127, 0, 8, 10, 31, 48,
+ 57, 13, 34, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 13, 34, 92, 93,
+ 127, 0, 8, 10, 31, 9, 13, 32,
+ 34, 44, 92, 127, 0, 31, 13, 34,
+ 46, 92, 127, 0, 8, 10, 31, 48,
+ 57, 13, 34, 46, 92, 127, 0, 8,
+ 10, 31, 13, 34, 46, 92, 127, 0,
+ 8, 10, 31, 48, 57, 13, 34, 46,
+ 92, 127, 0, 8, 10, 31, 13, 34,
+ 46, 58, 92, 93, 127, 0, 8, 10,
+ 31, 48, 57, 65, 70, 97, 102, 13,
+ 34, 46, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 92, 93, 127, 0, 8,
+ 10, 31, 13, 34, 92, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 46, 58, 92, 93, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 46, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 46, 58, 92, 93,
+ 127, 0, 8, 10, 31, 48, 57, 65,
+ 70, 97, 102, 13, 34, 92, 127, 0,
+ 8, 10, 31, 48, 57, 13, 34, 46,
+ 92, 127, 0, 8, 10, 31, 48, 57,
+ 13, 34, 46, 92, 127, 0, 8, 10,
+ 31, 48, 57, 13, 34, 46, 92, 127,
+ 0, 8, 10, 31, 13, 34, 58, 92,
+ 127, 0, 8, 10, 31, 10, 13, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 76, 92, 108, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 71, 92, 103, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 79, 92, 111, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 82, 92, 114, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 73, 92, 105, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 84, 92, 116, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 72, 92, 104, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 77, 92, 109, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 92, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 34, 44, 61, 92, 127, 0, 31, 10,
+ 13, 9, 13, 32, 34, 44, 61, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 91, 92, 126, 127, 0, 31,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 10, 13, 9, 13, 32, 33,
+ 34, 37, 39, 91, 92, 126, 127, 0,
+ 31, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 92, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 10, 13, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 79, 92, 111, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 77, 92, 109, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 65, 92, 97, 126, 127,
+ 0, 31, 42, 46, 48, 57, 66, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 73, 92, 105, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 78, 92, 110, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 92, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 34, 44, 61, 92, 127,
+ 0, 31, 10, 13, 9, 13, 32, 34,
+ 44, 61, 92, 127, 0, 31, 9, 13,
+ 32, 33, 34, 37, 39, 91, 92, 126,
+ 127, 0, 31, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 10, 13, 9,
+ 13, 32, 33, 34, 37, 39, 91, 92,
+ 126, 127, 0, 31, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 10, 13,
+ 9, 13, 32, 34, 92, 127, 0, 31,
+ 9, 13, 32, 34, 44, 92, 127, 0,
+ 31, 10, 13, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 79, 92, 111, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 78, 92, 110, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 67, 92, 99, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 69, 92, 101, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 92, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 34, 44, 61, 92,
+ 127, 0, 31, 10, 13, 9, 13, 32,
+ 34, 44, 61, 92, 127, 0, 31, 9,
+ 13, 32, 33, 34, 37, 39, 91, 92,
+ 126, 127, 0, 31, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 10, 13,
+ 9, 13, 32, 33, 34, 37, 39, 91,
+ 92, 126, 127, 0, 31, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 10,
+ 13, 9, 13, 32, 34, 92, 127, 0,
+ 31, 9, 13, 32, 34, 44, 92, 127,
+ 0, 31, 10, 13, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 80, 92, 112,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 65, 92, 97,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 66, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 81, 92, 113,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 85, 92, 117,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 69, 92, 101,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 61,
+ 92, 127, 0, 31, 10, 13, 9, 13,
+ 32, 34, 44, 61, 92, 127, 0, 31,
+ 9, 13, 32, 33, 34, 37, 39, 91,
+ 92, 126, 127, 0, 31, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 10,
+ 13, 9, 13, 32, 33, 34, 37, 39,
+ 91, 92, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 10, 13, 9, 13, 32, 34, 92, 127,
+ 0, 31, 9, 13, 32, 34, 44, 92,
+ 127, 0, 31, 10, 13, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 79, 92,
+ 111, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 80, 92,
+ 112, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 92, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 34, 44,
+ 61, 92, 127, 0, 31, 10, 13, 9,
+ 13, 32, 34, 44, 61, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 91, 92, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 10, 13, 9, 13, 32, 33, 34, 37,
+ 39, 91, 92, 126, 127, 0, 31, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 10, 13, 9, 13, 32, 34, 92,
+ 127, 0, 31, 9, 13, 32, 34, 44,
+ 92, 127, 0, 31, 9, 13, 32, 34,
+ 44, 92, 127, 0, 31, 10, 13, 34,
+ 9, 13, 32, 34, 44, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 65, 68, 78, 79, 81, 82, 83, 92,
+ 97, 100, 110, 111, 113, 114, 115, 126,
+ 127, 0, 31, 42, 43, 45, 46, 48,
+ 57, 66, 90, 95, 122, 10, 13, 34,
+ 9, 13, 32, 33, 34, 37, 39, 65,
+ 68, 78, 79, 81, 82, 83, 92, 97,
+ 100, 110, 111, 113, 114, 115, 126, 127,
+ 0, 31, 42, 43, 45, 46, 48, 57,
+ 66, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 61,
+ 92, 127, 0, 31, 10, 13, 34, 9,
+ 13, 32, 34, 44, 61, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 91, 92, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 10, 13, 34, 9, 13, 32, 33, 34,
+ 37, 39, 91, 92, 126, 127, 0, 31,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 10, 13, 34, 9, 13, 32,
+ 34, 92, 127, 0, 31, 9, 13, 32,
+ 33, 34, 37, 39, 44, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 10, 13, 34, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 126, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 34, 44, 61, 10, 13, 34,
+ 9, 13, 32, 34, 44, 61, 9, 13,
+ 32, 33, 34, 37, 39, 65, 68, 78,
+ 79, 81, 82, 83, 97, 100, 110, 111,
+ 113, 114, 115, 126, 42, 43, 45, 46,
+ 48, 57, 66, 90, 95, 122, 10, 13,
+ 34, 9, 13, 32, 33, 34, 37, 39,
+ 65, 68, 78, 79, 81, 82, 83, 97,
+ 100, 110, 111, 113, 114, 115, 126, 42,
+ 43, 45, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 76, 108, 126, 42, 46, 48,
+ 57, 65, 90, 95, 122, 10, 13, 34,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 79, 111, 126, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 91, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 10,
+ 13, 34, 9, 13, 32, 33, 34, 37,
+ 39, 91, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 10, 13, 34,
+ 9, 13, 32, 34, 9, 13, 32, 33,
+ 34, 37, 39, 44, 126, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 34, 44, 10, 13, 34, 9, 13, 32,
+ 34, 44, 10, 13, 34, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 79, 111,
+ 126, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 78, 110, 126, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 67, 99,
+ 126, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 69, 101, 126, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 126, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 34, 44, 61, 10, 13, 34,
+ 9, 13, 32, 34, 44, 61, 9, 13,
+ 32, 33, 34, 37, 39, 91, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 10, 13, 34, 9, 13, 32, 33,
+ 34, 37, 39, 91, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 10,
+ 13, 34, 9, 13, 32, 34, 13, 34,
+ 58, 48, 57, 65, 70, 97, 102, 13,
+ 34, 58, 93, 48, 57, 65, 70, 97,
+ 102, 13, 34, 58, 93, 48, 57, 65,
+ 70, 97, 102, 13, 34, 58, 93, 48,
+ 57, 65, 70, 97, 102, 13, 34, 58,
+ 93, 13, 34, 58, 48, 57, 65, 70,
+ 97, 102, 13, 34, 46, 58, 93, 48,
+ 57, 65, 70, 97, 102, 13, 34, 48,
+ 57, 13, 34, 46, 48, 57, 13, 34,
+ 48, 57, 13, 34, 46, 48, 57, 13,
+ 34, 48, 57, 13, 34, 93, 48, 57,
+ 13, 34, 93, 48, 57, 13, 34, 93,
+ 9, 13, 32, 34, 44, 13, 34, 46,
+ 48, 57, 13, 34, 46, 13, 34, 46,
+ 48, 57, 13, 34, 46, 13, 34, 46,
+ 58, 93, 48, 57, 65, 70, 97, 102,
+ 13, 34, 46, 58, 93, 48, 57, 65,
+ 70, 97, 102, 13, 34, 58, 93, 48,
+ 57, 65, 70, 97, 102, 13, 34, 58,
+ 93, 48, 57, 65, 70, 97, 102, 13,
+ 34, 58, 93, 48, 57, 65, 70, 97,
+ 102, 13, 34, 58, 93, 48, 57, 65,
+ 70, 97, 102, 13, 34, 58, 93, 13,
+ 34, 48, 57, 65, 70, 97, 102, 13,
+ 34, 46, 58, 93, 48, 57, 65, 70,
+ 97, 102, 13, 34, 46, 58, 93, 48,
+ 57, 65, 70, 97, 102, 13, 34, 46,
+ 58, 93, 48, 57, 65, 70, 97, 102,
+ 13, 34, 48, 57, 13, 34, 46, 48,
+ 57, 13, 34, 46, 48, 57, 13, 34,
+ 46, 13, 34, 58, 10, 13, 34, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 80, 112, 126, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 65, 97, 126, 42,
+ 46, 48, 57, 66, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 81, 113, 126, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 85, 117, 126, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 69, 101, 126, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 126, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 34, 44, 61, 10, 13, 34, 9, 13,
+ 32, 34, 44, 61, 9, 13, 32, 33,
+ 34, 37, 39, 91, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 10,
+ 13, 34, 9, 13, 32, 33, 34, 37,
+ 39, 91, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 10, 13, 34,
+ 9, 13, 32, 34, 9, 13, 32, 34,
+ 44, 92, 127, 0, 31, 10, 13, 9,
+ 13, 32, 34, 44, 92, 127, 0, 31,
+ 10, 13, 34, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 79, 111, 126, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 80, 112, 126, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 126, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 34, 44, 61, 10, 13, 34, 9, 13,
+ 32, 34, 44, 61, 9, 13, 32, 33,
+ 34, 37, 39, 91, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 10,
+ 13, 34, 9, 13, 32, 33, 34, 37,
+ 39, 91, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 10, 13, 34,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 69, 101, 126, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 65, 97, 126,
+ 42, 46, 48, 57, 66, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 76, 108, 126, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 77, 109, 126,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 126, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 61,
+ 10, 13, 34, 9, 13, 32, 34, 44,
+ 61, 9, 13, 32, 33, 34, 37, 39,
+ 91, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 10, 13, 34, 9,
+ 13, 32, 33, 34, 37, 39, 91, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 10, 13, 34, 9, 13, 32,
+ 34, 9, 13, 32, 34, 44, 92, 127,
+ 0, 31, 10, 13, 9, 13, 32, 34,
+ 44, 92, 127, 0, 31, 10, 13, 9,
+ 13, 32, 34, 44, 92, 127, 0, 31,
+ 9, 13, 32, 33, 34, 37, 39, 65,
+ 68, 78, 79, 81, 82, 83, 92, 97,
+ 100, 110, 111, 113, 114, 115, 126, 127,
+ 0, 31, 42, 43, 45, 46, 48, 57,
+ 66, 90, 95, 122, 10, 13, 9, 13,
+ 32, 33, 34, 37, 39, 65, 68, 78,
+ 79, 81, 82, 83, 92, 97, 100, 110,
+ 111, 113, 114, 115, 126, 127, 0, 31,
+ 42, 43, 45, 46, 48, 57, 66, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 92, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 34, 44, 61, 92, 127,
+ 0, 31, 10, 13, 9, 13, 32, 34,
+ 44, 61, 92, 127, 0, 31, 9, 13,
+ 32, 33, 34, 37, 39, 91, 92, 126,
+ 127, 0, 31, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 10, 13, 9,
+ 13, 32, 33, 34, 37, 39, 91, 92,
+ 126, 127, 0, 31, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 10, 13,
+ 9, 13, 32, 34, 92, 127, 0, 31,
+ 9, 13, 32, 34, 44, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 44, 92, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 34, 44, 92, 127, 0, 31, 10,
+ 13, 13, 34, 58, 92, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 92, 93, 127, 0, 8,
+ 10, 31, 13, 34, 58, 92, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 46, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 92, 127, 0, 8,
+ 10, 31, 48, 57, 13, 34, 46, 92,
+ 127, 0, 8, 10, 31, 48, 57, 13,
+ 34, 92, 127, 0, 8, 10, 31, 48,
+ 57, 13, 34, 46, 92, 127, 0, 8,
+ 10, 31, 48, 57, 13, 34, 92, 127,
+ 0, 8, 10, 31, 48, 57, 13, 34,
+ 92, 93, 127, 0, 8, 10, 31, 48,
+ 57, 13, 34, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 13, 34, 92, 93,
+ 127, 0, 8, 10, 31, 9, 13, 32,
+ 34, 44, 92, 127, 0, 31, 13, 34,
+ 46, 92, 127, 0, 8, 10, 31, 48,
+ 57, 13, 34, 46, 92, 127, 0, 8,
+ 10, 31, 13, 34, 46, 92, 127, 0,
+ 8, 10, 31, 48, 57, 13, 34, 46,
+ 92, 127, 0, 8, 10, 31, 13, 34,
+ 46, 58, 92, 93, 127, 0, 8, 10,
+ 31, 48, 57, 65, 70, 97, 102, 13,
+ 34, 46, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 92, 93, 127, 0, 8,
+ 10, 31, 13, 34, 92, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 46, 58, 92, 93, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 46, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 46, 58, 92, 93,
+ 127, 0, 8, 10, 31, 48, 57, 65,
+ 70, 97, 102, 13, 34, 92, 127, 0,
+ 8, 10, 31, 48, 57, 13, 34, 46,
+ 92, 127, 0, 8, 10, 31, 48, 57,
+ 13, 34, 46, 92, 127, 0, 8, 10,
+ 31, 48, 57, 13, 34, 46, 92, 127,
+ 0, 8, 10, 31, 13, 34, 58, 92,
+ 127, 0, 8, 10, 31, 10, 13, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 76, 92, 108, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 71, 92, 103, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 79, 92, 111, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 82, 92, 114, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 73, 92, 105, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 84, 92, 116, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 72, 92, 104, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 77, 92, 109, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 92, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 34, 44, 61, 92, 127, 0, 31, 10,
+ 13, 9, 13, 32, 34, 44, 61, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 91, 92, 126, 127, 0, 31,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 10, 13, 9, 13, 32, 33,
+ 34, 37, 39, 91, 92, 126, 127, 0,
+ 31, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 92, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 10, 13, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 79, 92, 111, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 77, 92, 109, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 65, 92, 97, 126, 127,
+ 0, 31, 42, 46, 48, 57, 66, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 73, 92, 105, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 78, 92, 110, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 92, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 34, 44, 61, 92, 127,
+ 0, 31, 10, 13, 9, 13, 32, 34,
+ 44, 61, 92, 127, 0, 31, 9, 13,
+ 32, 33, 34, 37, 39, 91, 92, 126,
+ 127, 0, 31, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 10, 13, 9,
+ 13, 32, 33, 34, 37, 39, 91, 92,
+ 126, 127, 0, 31, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 10, 13,
+ 9, 13, 32, 34, 92, 127, 0, 31,
+ 9, 13, 32, 34, 44, 92, 127, 0,
+ 31, 10, 13, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 79, 92, 111, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 78, 92, 110, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 67, 92, 99, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 69, 92, 101, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 92, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 34, 44, 61, 92,
+ 127, 0, 31, 10, 13, 9, 13, 32,
+ 34, 44, 61, 92, 127, 0, 31, 9,
+ 13, 32, 33, 34, 37, 39, 91, 92,
+ 126, 127, 0, 31, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 10, 13,
+ 9, 13, 32, 33, 34, 37, 39, 91,
+ 92, 126, 127, 0, 31, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 10,
+ 13, 9, 13, 32, 34, 92, 127, 0,
+ 31, 9, 13, 32, 34, 44, 92, 127,
+ 0, 31, 10, 13, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 80, 92, 112,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 65, 92, 97,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 66, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 81, 92, 113,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 85, 92, 117,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 69, 92, 101,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 61,
+ 92, 127, 0, 31, 10, 13, 9, 13,
+ 32, 34, 44, 61, 92, 127, 0, 31,
+ 9, 13, 32, 33, 34, 37, 39, 91,
+ 92, 126, 127, 0, 31, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 10,
+ 13, 9, 13, 32, 33, 34, 37, 39,
+ 91, 92, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 10, 13, 9, 13, 32, 34, 92, 127,
+ 0, 31, 9, 13, 32, 34, 44, 92,
+ 127, 0, 31, 10, 13, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 79, 92,
+ 111, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 80, 92,
+ 112, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 92, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 34, 44,
+ 61, 92, 127, 0, 31, 10, 13, 9,
+ 13, 32, 34, 44, 61, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 91, 92, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 10, 13, 9, 13, 32, 33, 34, 37,
+ 39, 91, 92, 126, 127, 0, 31, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 10, 13, 9, 13, 32, 34, 92,
+ 127, 0, 31, 9, 13, 32, 34, 44,
+ 92, 127, 0, 31, 10, 13, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 69,
+ 92, 101, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 65,
+ 92, 97, 126, 127, 0, 31, 42, 46,
+ 48, 57, 66, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 76,
+ 92, 108, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 77,
+ 92, 109, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 92,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 34,
+ 44, 61, 92, 127, 0, 31, 10, 13,
+ 9, 13, 32, 34, 44, 61, 92, 127,
+ 0, 31, 9, 13, 32, 33, 34, 37,
+ 39, 91, 92, 126, 127, 0, 31, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 10, 13, 9, 13, 32, 33, 34,
+ 37, 39, 91, 92, 126, 127, 0, 31,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 10, 13, 9, 13, 32, 34,
+ 92, 127, 0, 31, 9, 13, 32, 34,
+ 44, 92, 127, 0, 31, 10, 13, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 84, 92, 116, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 65, 92, 97, 126, 127, 0, 31, 42,
+ 46, 48, 57, 66, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 76, 92, 108, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 69, 92, 101, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 92, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 34, 44, 61, 92, 127, 0, 31, 10,
+ 13, 9, 13, 32, 34, 44, 61, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 70, 84, 91, 92, 102, 116,
+ 126, 127, 0, 31, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 10, 13,
+ 9, 13, 32, 33, 34, 37, 39, 70,
+ 84, 91, 92, 102, 116, 126, 127, 0,
+ 31, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 65, 92, 97, 126, 127,
+ 0, 31, 42, 46, 48, 57, 66, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 76, 92, 108, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 83, 92, 115, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 69, 92, 101, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 34, 44, 92, 127, 0, 31,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 82, 92, 114, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 85,
+ 92, 117, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 10, 13,
+ 10, 13, 34, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 84, 116, 126, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 65, 97, 126, 42, 46, 48, 57, 66,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 76, 108, 126, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 69, 101, 126, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 126, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 34, 44, 61, 10, 13, 34, 9, 13,
+ 32, 34, 44, 61, 9, 13, 32, 33,
+ 34, 37, 39, 70, 84, 91, 102, 116,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 10, 13, 34, 9, 13,
+ 32, 33, 34, 37, 39, 70, 84, 91,
+ 102, 116, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 65, 97, 126,
+ 42, 46, 48, 57, 66, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 76, 108, 126, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 83, 115, 126, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 69, 101,
+ 126, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 34, 44, 9, 13,
+ 32, 33, 34, 37, 39, 44, 82, 114,
+ 126, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 85, 117, 126, 42, 46, 48, 57,
+ 65, 90, 95, 122, 10, 13, 34, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 77, 109, 126, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 65, 97, 126, 42,
+ 46, 48, 57, 66, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 73, 105, 126, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 78, 110, 126, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 126, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 34, 44, 61, 10,
+ 13, 34, 9, 13, 32, 34, 44, 61,
+ 9, 13, 32, 33, 34, 37, 39, 91,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 10, 13, 34, 9, 13,
+ 32, 33, 34, 37, 39, 91, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 10, 13, 34, 9, 13, 32, 34,
+ 9, 13, 32, 34, 44, 92, 127, 0,
+ 31, 9, 13, 32, 34, 44, 92, 127,
+ 0, 31, 10, 13, 34, 9, 13, 32,
+ 34, 44, 92, 127, 0, 31, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 80,
+ 112, 126, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 65, 97, 126, 42, 46,
+ 48, 57, 66, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 81,
+ 113, 126, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 85, 117, 126, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 69,
+ 101, 126, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 126, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 34,
+ 44, 61, 10, 13, 34, 9, 13, 32,
+ 34, 44, 61, 9, 13, 32, 33, 34,
+ 37, 39, 91, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 10, 13,
+ 34, 9, 13, 32, 33, 34, 37, 39,
+ 91, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 10, 13, 34, 9,
+ 13, 32, 34, 13, 34, 58, 48, 57,
+ 65, 70, 97, 102, 13, 34, 58, 93,
+ 48, 57, 65, 70, 97, 102, 13, 34,
+ 58, 93, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 93, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 93, 13, 34,
+ 58, 48, 57, 65, 70, 97, 102, 13,
+ 34, 46, 58, 93, 48, 57, 65, 70,
+ 97, 102, 13, 34, 48, 57, 13, 34,
+ 46, 48, 57, 13, 34, 48, 57, 13,
+ 34, 46, 48, 57, 13, 34, 48, 57,
+ 13, 34, 93, 48, 57, 13, 34, 93,
+ 48, 57, 13, 34, 93, 9, 13, 32,
+ 34, 44, 13, 34, 46, 48, 57, 13,
+ 34, 46, 13, 34, 46, 48, 57, 13,
+ 34, 46, 13, 34, 46, 58, 93, 48,
+ 57, 65, 70, 97, 102, 13, 34, 46,
+ 58, 93, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 93, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 93, 48, 57,
+ 65, 70, 97, 102, 13, 34, 58, 93,
+ 48, 57, 65, 70, 97, 102, 13, 34,
+ 58, 93, 48, 57, 65, 70, 97, 102,
+ 13, 34, 58, 93, 13, 34, 48, 57,
+ 65, 70, 97, 102, 13, 34, 46, 58,
+ 93, 48, 57, 65, 70, 97, 102, 13,
+ 34, 46, 58, 93, 48, 57, 65, 70,
+ 97, 102, 13, 34, 46, 58, 93, 48,
+ 57, 65, 70, 97, 102, 13, 34, 48,
+ 57, 13, 34, 46, 48, 57, 13, 34,
+ 46, 48, 57, 13, 34, 46, 13, 34,
+ 58, 10, 13, 34, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 79, 111, 126,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 80, 112, 126, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 126, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 34, 44, 61, 10, 13, 34, 9,
+ 13, 32, 34, 44, 61, 9, 13, 32,
+ 33, 34, 37, 39, 91, 126, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 10, 13, 34, 9, 13, 32, 33, 34,
+ 37, 39, 91, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 10, 13,
+ 34, 9, 13, 32, 34, 9, 13, 32,
+ 34, 44, 92, 127, 0, 31, 9, 13,
+ 32, 34, 44, 92, 127, 0, 31, 10,
+ 13, 34, 9, 13, 32, 34, 44, 92,
+ 127, 0, 31, 10, 13, 34, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 69,
+ 101, 126, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 65, 97, 126, 42, 46,
+ 48, 57, 66, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 76,
+ 108, 126, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 77, 109, 126, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 126,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 34, 44, 61, 10, 13,
+ 34, 9, 13, 32, 34, 44, 61, 9,
+ 13, 32, 33, 34, 37, 39, 91, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 10, 13, 34, 9, 13, 32,
+ 33, 34, 37, 39, 91, 126, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 10, 13, 34, 9, 13, 32, 34, 10,
+ 13, 34, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 84, 116, 126, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 65,
+ 97, 126, 42, 46, 48, 57, 66, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 76, 108, 126, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 69,
+ 101, 126, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 126, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 34,
+ 44, 61, 10, 13, 34, 9, 13, 32,
+ 34, 44, 61, 9, 13, 32, 33, 34,
+ 37, 39, 70, 84, 91, 102, 116, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 10, 13, 34, 9, 13, 32,
+ 33, 34, 37, 39, 70, 84, 91, 102,
+ 116, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 65, 97, 126, 42,
+ 46, 48, 57, 66, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 76,
+ 108, 126, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 83, 115, 126, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 69, 101, 126,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 34, 44, 9, 13, 32,
+ 33, 34, 37, 39, 44, 82, 114, 126,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 85, 117, 126, 42, 46, 48, 57, 65,
+ 90, 95, 122, 10, 13, 34, 10, 13,
+ 34, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 71, 103, 126, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 79, 111,
+ 126, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 82, 114, 126, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 73, 105,
+ 126, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 84, 116, 126, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 72, 104,
+ 126, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 77, 109, 126, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 126, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 34, 44, 61, 10, 13, 34,
+ 9, 13, 32, 34, 44, 61, 9, 13,
+ 32, 33, 34, 37, 39, 91, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 10, 13, 34, 9, 13, 32, 33,
+ 34, 37, 39, 91, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 126,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 10, 13, 34, 13, 34, 58, 92, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 13, 34, 58, 92,
+ 127, 0, 8, 10, 31, 48, 57, 65,
+ 70, 97, 102, 13, 34, 46, 58, 92,
+ 93, 127, 0, 8, 10, 31, 48, 57,
+ 65, 70, 97, 102, 13, 34, 92, 127,
+ 0, 8, 10, 31, 48, 57, 13, 34,
+ 46, 92, 127, 0, 8, 10, 31, 48,
+ 57, 13, 34, 92, 127, 0, 8, 10,
+ 31, 48, 57, 13, 34, 46, 92, 127,
+ 0, 8, 10, 31, 48, 57, 13, 34,
+ 92, 127, 0, 8, 10, 31, 48, 57,
+ 13, 34, 92, 93, 127, 0, 8, 10,
+ 31, 48, 57, 13, 34, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 13, 34,
+ 92, 93, 127, 0, 8, 10, 31, 9,
+ 13, 32, 34, 44, 92, 127, 0, 31,
+ 13, 34, 46, 92, 127, 0, 8, 10,
+ 31, 48, 57, 13, 34, 46, 92, 127,
+ 0, 8, 10, 31, 13, 34, 46, 92,
+ 127, 0, 8, 10, 31, 48, 57, 13,
+ 34, 46, 92, 127, 0, 8, 10, 31,
+ 13, 34, 46, 58, 92, 93, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 46, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 58, 92, 93, 127,
+ 0, 8, 10, 31, 13, 34, 92, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 46, 58, 92, 93,
+ 127, 0, 8, 10, 31, 48, 57, 65,
+ 70, 97, 102, 13, 34, 46, 58, 92,
+ 93, 127, 0, 8, 10, 31, 48, 57,
+ 65, 70, 97, 102, 13, 34, 46, 58,
+ 92, 93, 127, 0, 8, 10, 31, 48,
+ 57, 65, 70, 97, 102, 13, 34, 92,
+ 127, 0, 8, 10, 31, 48, 57, 13,
+ 34, 46, 92, 127, 0, 8, 10, 31,
+ 48, 57, 13, 34, 46, 92, 127, 0,
+ 8, 10, 31, 48, 57, 13, 34, 46,
+ 92, 127, 0, 8, 10, 31, 13, 34,
+ 58, 92, 127, 0, 8, 10, 31, 10,
+ 13, 34, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 76, 92, 108, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 71, 92, 103, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 79, 92, 111, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 82, 92, 114, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 73, 92, 105, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 84, 92, 116, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 72, 92, 104, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 77, 92, 109, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 92, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 34, 44, 61, 92, 127,
+ 0, 31, 10, 13, 34, 9, 13, 32,
+ 34, 44, 61, 92, 127, 0, 31, 9,
+ 13, 32, 33, 34, 37, 39, 91, 92,
+ 126, 127, 0, 31, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 10, 13,
+ 34, 9, 13, 32, 33, 34, 37, 39,
+ 91, 92, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 92, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 10, 13, 34,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 79, 92, 111, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 77, 92, 109, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 65, 92, 97, 126, 127, 0, 31,
+ 42, 46, 48, 57, 66, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 73, 92, 105, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 78, 92, 110, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 92, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 34, 44, 61, 92, 127, 0, 31,
+ 10, 13, 34, 9, 13, 32, 34, 44,
+ 61, 92, 127, 0, 31, 9, 13, 32,
+ 33, 34, 37, 39, 91, 92, 126, 127,
+ 0, 31, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 10, 13, 34, 9,
+ 13, 32, 33, 34, 37, 39, 91, 92,
+ 126, 127, 0, 31, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 10, 13,
+ 34, 9, 13, 32, 34, 92, 127, 0,
+ 31, 10, 13, 34, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 79, 92, 111,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 78, 92, 110,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 67, 92, 99,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 69, 92, 101,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 61,
+ 92, 127, 0, 31, 10, 13, 34, 9,
+ 13, 32, 34, 44, 61, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 91, 92, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 10, 13, 34, 9, 13, 32, 33, 34,
+ 37, 39, 91, 92, 126, 127, 0, 31,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 10, 13, 34, 9, 13, 32,
+ 34, 92, 127, 0, 31, 10, 13, 34,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 80, 92, 112, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 65, 92, 97, 126, 127, 0, 31,
+ 42, 46, 48, 57, 66, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 81, 92, 113, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 85, 92, 117, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 69, 92, 101, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 92, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 34, 44, 61, 92, 127, 0, 31,
+ 10, 13, 34, 9, 13, 32, 34, 44,
+ 61, 92, 127, 0, 31, 9, 13, 32,
+ 33, 34, 37, 39, 91, 92, 126, 127,
+ 0, 31, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 10, 13, 34, 9,
+ 13, 32, 33, 34, 37, 39, 91, 92,
+ 126, 127, 0, 31, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 10, 13,
+ 34, 9, 13, 32, 34, 92, 127, 0,
+ 31, 10, 13, 34, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 79, 92, 111,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 80, 92, 112,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 61,
+ 92, 127, 0, 31, 10, 13, 34, 9,
+ 13, 32, 34, 44, 61, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 91, 92, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 10, 13, 34, 9, 13, 32, 33, 34,
+ 37, 39, 91, 92, 126, 127, 0, 31,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 10, 13, 34, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 69, 92,
+ 101, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 65, 92,
+ 97, 126, 127, 0, 31, 42, 46, 48,
+ 57, 66, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 76, 92,
+ 108, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 77, 92,
+ 109, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 92, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 34, 44,
+ 61, 92, 127, 0, 31, 10, 13, 34,
+ 9, 13, 32, 34, 44, 61, 92, 127,
+ 0, 31, 9, 13, 32, 33, 34, 37,
+ 39, 91, 92, 126, 127, 0, 31, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 10, 13, 34, 9, 13, 32, 33,
+ 34, 37, 39, 91, 92, 126, 127, 0,
+ 31, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 10, 13, 34, 9, 13,
+ 32, 34, 92, 127, 0, 31, 10, 13,
+ 34, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 84, 92, 116, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 65, 92, 97, 126, 127, 0,
+ 31, 42, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 76, 92, 108, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 69, 92, 101, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 92, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 34, 44, 61, 92, 127, 0,
+ 31, 10, 13, 34, 9, 13, 32, 34,
+ 44, 61, 92, 127, 0, 31, 9, 13,
+ 32, 33, 34, 37, 39, 70, 84, 91,
+ 92, 102, 116, 126, 127, 0, 31, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 10, 13, 34, 9, 13, 32, 33,
+ 34, 37, 39, 70, 84, 91, 92, 102,
+ 116, 126, 127, 0, 31, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 65,
+ 92, 97, 126, 127, 0, 31, 42, 46,
+ 48, 57, 66, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 76, 92,
+ 108, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 83, 92, 115,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 69, 92, 101, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 34, 44,
+ 92, 127, 0, 31, 9, 13, 32, 33,
+ 34, 37, 39, 44, 82, 92, 114, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 85, 92, 117, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 10, 13, 34, 10, 13, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 69, 92, 101, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 65, 92, 97, 126, 127, 0, 31, 42,
+ 46, 48, 57, 66, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 76, 92, 108, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 77, 92, 109, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 92, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 34, 44, 61, 92, 127, 0, 31, 10,
+ 13, 9, 13, 32, 34, 44, 61, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 91, 92, 126, 127, 0, 31,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 10, 13, 9, 13, 32, 33,
+ 34, 37, 39, 91, 92, 126, 127, 0,
+ 31, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 10, 13, 9, 13, 32,
+ 34, 92, 127, 0, 31, 9, 13, 32,
+ 34, 44, 92, 127, 0, 31, 10, 13,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 84, 92, 116, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 65, 92, 97, 126, 127, 0, 31,
+ 42, 46, 48, 57, 66, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 76, 92, 108, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 69, 92, 101, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 61, 92, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 34, 44, 61, 92, 127, 0, 31,
+ 10, 13, 9, 13, 32, 34, 44, 61,
+ 92, 127, 0, 31, 9, 13, 32, 33,
+ 34, 37, 39, 70, 84, 91, 92, 102,
+ 116, 126, 127, 0, 31, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 10,
+ 13, 9, 13, 32, 33, 34, 37, 39,
+ 70, 84, 91, 92, 102, 116, 126, 127,
+ 0, 31, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 65, 92, 97, 126,
+ 127, 0, 31, 42, 46, 48, 57, 66,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 76, 92, 108, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 83, 92, 115, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 69, 92, 101, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 34, 44, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 44, 82, 92, 114, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 85, 92, 117, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 10,
+ 13, 10, 13, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 79, 92, 111, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 80, 92, 112, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 92, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 34, 44, 61, 92,
+ 127, 0, 31, 10, 13, 9, 13, 32,
+ 34, 44, 61, 92, 127, 0, 31, 9,
+ 13, 32, 33, 34, 37, 39, 91, 92,
+ 126, 127, 0, 31, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 10, 13,
+ 9, 13, 32, 33, 34, 37, 39, 91,
+ 92, 126, 127, 0, 31, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 10,
+ 13, 9, 13, 32, 34, 92, 127, 0,
+ 31, 9, 13, 32, 34, 44, 92, 127,
+ 0, 31, 10, 13, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 69, 92, 101,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 65, 92, 97,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 66, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 76, 92, 108,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 77, 92, 109,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 61,
+ 92, 127, 0, 31, 10, 13, 9, 13,
+ 32, 34, 44, 61, 92, 127, 0, 31,
+ 9, 13, 32, 33, 34, 37, 39, 91,
+ 92, 126, 127, 0, 31, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 10,
+ 13, 9, 13, 32, 33, 34, 37, 39,
+ 91, 92, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 10, 13, 9, 13, 32, 34, 92, 127,
+ 0, 31, 9, 13, 32, 34, 44, 92,
+ 127, 0, 31, 10, 13, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 84, 92,
+ 116, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 65, 92,
+ 97, 126, 127, 0, 31, 42, 46, 48,
+ 57, 66, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 76, 92,
+ 108, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 69, 92,
+ 101, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 92, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 34, 44,
+ 61, 92, 127, 0, 31, 10, 13, 9,
+ 13, 32, 34, 44, 61, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 70, 84, 91, 92, 102, 116, 126, 127,
+ 0, 31, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 10, 13, 9, 13,
+ 32, 33, 34, 37, 39, 70, 84, 91,
+ 92, 102, 116, 126, 127, 0, 31, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 65, 92, 97, 126, 127, 0, 31,
+ 42, 46, 48, 57, 66, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 76, 92, 108, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 83,
+ 92, 115, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 69, 92,
+ 101, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 34, 44, 92, 127, 0, 31, 9, 13,
+ 32, 33, 34, 37, 39, 44, 82, 92,
+ 114, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 85, 92, 117,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 10, 13, 10, 13,
+ 34, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 77, 109, 126, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 65, 97,
+ 126, 42, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 73, 105, 126, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 78, 110,
+ 126, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 126, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 34, 44,
+ 61, 10, 13, 34, 9, 13, 32, 34,
+ 44, 61, 9, 13, 32, 33, 34, 37,
+ 39, 91, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 10, 13, 34,
+ 9, 13, 32, 33, 34, 37, 39, 91,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 10, 13, 34, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 71,
+ 103, 126, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 79, 111, 126, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 82,
+ 114, 126, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 73, 105, 126, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 84,
+ 116, 126, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 72, 104, 126, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 77,
+ 109, 126, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 126, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 34,
+ 44, 61, 10, 13, 34, 9, 13, 32,
+ 34, 44, 61, 9, 13, 32, 33, 34,
+ 37, 39, 91, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 10, 13,
+ 34, 9, 13, 32, 33, 34, 37, 39,
+ 91, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 126, 42, 46, 48,
+ 57, 65, 90, 95, 122, 10, 13, 34,
+ 13, 34, 58, 92, 127, 0, 8, 10,
+ 31, 48, 57, 65, 70, 97, 102, 13,
+ 34, 58, 92, 93, 127, 0, 8, 10,
+ 31, 48, 57, 65, 70, 97, 102, 13,
+ 34, 58, 92, 93, 127, 0, 8, 10,
+ 31, 48, 57, 65, 70, 97, 102, 13,
+ 34, 58, 92, 93, 127, 0, 8, 10,
+ 31, 48, 57, 65, 70, 97, 102, 13,
+ 34, 58, 92, 93, 127, 0, 8, 10,
+ 31, 13, 34, 58, 92, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 46, 58, 92, 93, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 92, 127, 0, 8, 10,
+ 31, 48, 57, 13, 34, 46, 92, 127,
+ 0, 8, 10, 31, 48, 57, 13, 34,
+ 92, 127, 0, 8, 10, 31, 48, 57,
+ 13, 34, 46, 92, 127, 0, 8, 10,
+ 31, 48, 57, 13, 34, 92, 127, 0,
+ 8, 10, 31, 48, 57, 13, 34, 92,
+ 93, 127, 0, 8, 10, 31, 48, 57,
+ 13, 34, 92, 93, 127, 0, 8, 10,
+ 31, 48, 57, 13, 34, 92, 93, 127,
+ 0, 8, 10, 31, 9, 13, 32, 34,
+ 44, 92, 127, 0, 31, 13, 34, 46,
+ 92, 127, 0, 8, 10, 31, 48, 57,
+ 13, 34, 46, 92, 127, 0, 8, 10,
+ 31, 13, 34, 46, 92, 127, 0, 8,
+ 10, 31, 48, 57, 13, 34, 46, 92,
+ 127, 0, 8, 10, 31, 13, 34, 46,
+ 58, 92, 93, 127, 0, 8, 10, 31,
+ 48, 57, 65, 70, 97, 102, 13, 34,
+ 46, 58, 92, 93, 127, 0, 8, 10,
+ 31, 48, 57, 65, 70, 97, 102, 13,
+ 34, 58, 92, 93, 127, 0, 8, 10,
+ 31, 48, 57, 65, 70, 97, 102, 13,
+ 34, 58, 92, 93, 127, 0, 8, 10,
+ 31, 48, 57, 65, 70, 97, 102, 13,
+ 34, 58, 92, 93, 127, 0, 8, 10,
+ 31, 48, 57, 65, 70, 97, 102, 13,
+ 34, 58, 92, 93, 127, 0, 8, 10,
+ 31, 48, 57, 65, 70, 97, 102, 13,
+ 34, 58, 92, 93, 127, 0, 8, 10,
+ 31, 13, 34, 92, 127, 0, 8, 10,
+ 31, 48, 57, 65, 70, 97, 102, 13,
+ 34, 46, 58, 92, 93, 127, 0, 8,
+ 10, 31, 48, 57, 65, 70, 97, 102,
+ 13, 34, 46, 58, 92, 93, 127, 0,
+ 8, 10, 31, 48, 57, 65, 70, 97,
+ 102, 13, 34, 46, 58, 92, 93, 127,
+ 0, 8, 10, 31, 48, 57, 65, 70,
+ 97, 102, 13, 34, 92, 127, 0, 8,
+ 10, 31, 48, 57, 13, 34, 46, 92,
+ 127, 0, 8, 10, 31, 48, 57, 13,
+ 34, 46, 92, 127, 0, 8, 10, 31,
+ 48, 57, 13, 34, 46, 92, 127, 0,
+ 8, 10, 31, 13, 34, 58, 92, 127,
+ 0, 8, 10, 31, 10, 13, 34, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 76, 92, 108, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 71, 92, 103, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 79, 92, 111, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 82, 92, 114, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 73, 92, 105, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 84, 92, 116, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 72, 92, 104, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 77, 92, 109, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 92, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 34, 44, 61, 92, 127, 0, 31, 10,
+ 13, 34, 9, 13, 32, 34, 44, 61,
+ 92, 127, 0, 31, 9, 13, 32, 33,
+ 34, 37, 39, 91, 92, 126, 127, 0,
+ 31, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 10, 13, 34, 9, 13,
+ 32, 33, 34, 37, 39, 91, 92, 126,
+ 127, 0, 31, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 10, 13, 34, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 79, 92,
+ 111, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 77, 92,
+ 109, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 65, 92,
+ 97, 126, 127, 0, 31, 42, 46, 48,
+ 57, 66, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 73, 92,
+ 105, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 78, 92,
+ 110, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 92, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 34, 44,
+ 61, 92, 127, 0, 31, 10, 13, 34,
+ 9, 13, 32, 34, 44, 61, 92, 127,
+ 0, 31, 9, 13, 32, 33, 34, 37,
+ 39, 91, 92, 126, 127, 0, 31, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 10, 13, 34, 9, 13, 32, 33,
+ 34, 37, 39, 91, 92, 126, 127, 0,
+ 31, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 10, 13, 34, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 79,
+ 92, 111, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 78,
+ 92, 110, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 67,
+ 92, 99, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 69,
+ 92, 101, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 92,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 34,
+ 44, 61, 92, 127, 0, 31, 10, 13,
+ 34, 9, 13, 32, 34, 44, 61, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 91, 92, 126, 127, 0, 31,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 10, 13, 34, 9, 13, 32,
+ 33, 34, 37, 39, 91, 92, 126, 127,
+ 0, 31, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 10, 13, 34, 9,
+ 13, 32, 34, 92, 127, 0, 31, 10,
+ 13, 34, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 80, 92, 112, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 65, 92, 97, 126, 127,
+ 0, 31, 42, 46, 48, 57, 66, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 81, 92, 113, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 85, 92, 117, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 69, 92, 101, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 92, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 34, 44, 61, 92, 127,
+ 0, 31, 10, 13, 34, 9, 13, 32,
+ 34, 44, 61, 92, 127, 0, 31, 9,
+ 13, 32, 33, 34, 37, 39, 91, 92,
+ 126, 127, 0, 31, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 10, 13,
+ 34, 9, 13, 32, 33, 34, 37, 39,
+ 91, 92, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 10, 13, 34, 9, 13, 32, 34, 92,
+ 127, 0, 31, 10, 13, 34, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 79,
+ 92, 111, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 80,
+ 92, 112, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 92,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 34,
+ 44, 61, 92, 127, 0, 31, 10, 13,
+ 34, 9, 13, 32, 34, 44, 61, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 91, 92, 126, 127, 0, 31,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 10, 13, 34, 9, 13, 32,
+ 33, 34, 37, 39, 91, 92, 126, 127,
+ 0, 31, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 10, 13, 34, 9,
+ 13, 32, 34, 92, 127, 0, 31, 10,
+ 13, 34, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 69, 92, 101, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 65, 92, 97, 126, 127,
+ 0, 31, 42, 46, 48, 57, 66, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 76, 92, 108, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 77, 92, 109, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 92, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 34, 44, 61, 92, 127,
+ 0, 31, 10, 13, 34, 9, 13, 32,
+ 34, 44, 61, 92, 127, 0, 31, 9,
+ 13, 32, 33, 34, 37, 39, 91, 92,
+ 126, 127, 0, 31, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 10, 13,
+ 34, 9, 13, 32, 33, 34, 37, 39,
+ 91, 92, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 10, 13, 34, 9, 13, 32, 34, 92,
+ 127, 0, 31, 10, 13, 34, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 84,
+ 92, 116, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 65,
+ 92, 97, 126, 127, 0, 31, 42, 46,
+ 48, 57, 66, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 76,
+ 92, 108, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 69,
+ 92, 101, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 92,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 34,
+ 44, 61, 92, 127, 0, 31, 10, 13,
+ 34, 9, 13, 32, 34, 44, 61, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 70, 84, 91, 92, 102, 116,
+ 126, 127, 0, 31, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 10, 13,
+ 34, 9, 13, 32, 33, 34, 37, 39,
+ 70, 84, 91, 92, 102, 116, 126, 127,
+ 0, 31, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 65, 92, 97, 126,
+ 127, 0, 31, 42, 46, 48, 57, 66,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 76, 92, 108, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 83, 92, 115, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 69, 92, 101, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 34, 44, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 44, 82, 92, 114, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 85, 92, 117, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 10,
+ 13, 34, 10, 13, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 79, 92, 111,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 78, 92, 110,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 67, 92, 99,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 69, 92, 101,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 61,
+ 92, 127, 0, 31, 10, 13, 9, 13,
+ 32, 34, 44, 61, 92, 127, 0, 31,
+ 9, 13, 32, 33, 34, 37, 39, 91,
+ 92, 126, 127, 0, 31, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 10,
+ 13, 9, 13, 32, 33, 34, 37, 39,
+ 91, 92, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 10, 13, 9, 13, 32, 34, 92, 127,
+ 0, 31, 10, 13, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 80, 92, 112,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 65, 92, 97,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 66, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 81, 92, 113,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 85, 92, 117,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 69, 92, 101,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 61,
+ 92, 127, 0, 31, 10, 13, 9, 13,
+ 32, 34, 44, 61, 92, 127, 0, 31,
+ 9, 13, 32, 33, 34, 37, 39, 91,
+ 92, 126, 127, 0, 31, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 10,
+ 13, 9, 13, 32, 33, 34, 37, 39,
+ 91, 92, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 10, 13, 9, 13, 32, 34, 92, 127,
+ 0, 31, 10, 13, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 79, 92, 111,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 80, 92, 112,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 61,
+ 92, 127, 0, 31, 10, 13, 9, 13,
+ 32, 34, 44, 61, 92, 127, 0, 31,
+ 9, 13, 32, 33, 34, 37, 39, 91,
+ 92, 126, 127, 0, 31, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 10,
+ 13, 9, 13, 32, 33, 34, 37, 39,
+ 91, 92, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 10, 13, 9, 13, 32, 34, 92, 127,
+ 0, 31, 9, 13, 32, 34, 44, 92,
+ 127, 0, 31, 10, 13, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 69, 92,
+ 101, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 65, 92,
+ 97, 126, 127, 0, 31, 42, 46, 48,
+ 57, 66, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 76, 92,
+ 108, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 77, 92,
+ 109, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 92, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 34, 44,
+ 61, 92, 127, 0, 31, 10, 13, 9,
+ 13, 32, 34, 44, 61, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 91, 92, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 10, 13, 9, 13, 32, 33, 34, 37,
+ 39, 91, 92, 126, 127, 0, 31, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 10, 13, 9, 13, 32, 34, 92,
+ 127, 0, 31, 10, 13, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 84, 92,
+ 116, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 65, 92,
+ 97, 126, 127, 0, 31, 42, 46, 48,
+ 57, 66, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 76, 92,
+ 108, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 69, 92,
+ 101, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 92, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 34, 44,
+ 61, 92, 127, 0, 31, 10, 13, 9,
+ 13, 32, 34, 44, 61, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 70, 84, 91, 92, 102, 116, 126, 127,
+ 0, 31, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 10, 13, 9, 13,
+ 32, 33, 34, 37, 39, 70, 84, 91,
+ 92, 102, 116, 126, 127, 0, 31, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 65, 92, 97, 126, 127, 0, 31,
+ 42, 46, 48, 57, 66, 90, 95, 122,
+ 9, 13, 32, 33, 34, 37, 39, 44,
+ 76, 92, 108, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 83,
+ 92, 115, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 69, 92,
+ 101, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 34, 44, 92, 127, 0, 31, 9, 13,
+ 32, 33, 34, 37, 39, 44, 82, 92,
+ 114, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 85, 92, 117,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 10, 13, 10, 13,
+ 9, 13, 32, 33, 37, 39, 44, 61,
+ 77, 109, 126, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 37,
+ 39, 44, 61, 65, 97, 126, 42, 46,
+ 48, 57, 66, 90, 95, 122, 9, 13,
+ 32, 33, 37, 39, 44, 61, 73, 105,
+ 126, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 37, 39, 44,
+ 61, 78, 110, 126, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 37, 39, 44, 61, 126, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 44, 61, 10, 13, 9, 13, 32, 44,
+ 61, 9, 13, 32, 33, 34, 37, 39,
+ 91, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 10, 13, 9, 13,
+ 32, 33, 34, 37, 39, 91, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 10, 13, 9, 13, 32, 34, 13,
+ 34, 92, 127, 0, 8, 10, 31, 10,
+ 13, 9, 13, 32, 33, 37, 39, 44,
+ 61, 71, 103, 126, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 37, 39, 44, 61, 79, 111, 126, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 37, 39, 44, 61, 82,
+ 114, 126, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 37, 39,
+ 44, 61, 73, 105, 126, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 37, 39, 44, 61, 84, 116, 126,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 37, 39, 44, 61,
+ 72, 104, 126, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 37,
+ 39, 44, 61, 77, 109, 126, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 37, 39, 44, 61, 126, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 44, 61, 10, 13, 9, 13,
+ 32, 44, 61, 9, 13, 32, 33, 34,
+ 37, 39, 91, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 10, 13,
+ 9, 13, 32, 33, 34, 37, 39, 91,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 37,
+ 39, 44, 126, 42, 46, 48, 57, 65,
+ 90, 95, 122, 10, 13, 9, 13, 32,
+ 33, 37, 39, 44, 61, 79, 111, 126,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 37, 39, 44, 61,
+ 77, 109, 126, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 37,
+ 39, 44, 61, 65, 97, 126, 42, 46,
+ 48, 57, 66, 90, 95, 122, 9, 13,
+ 32, 33, 37, 39, 44, 61, 73, 105,
+ 126, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 33, 37, 39, 44,
+ 61, 78, 110, 126, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 37, 39, 44, 61, 126, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 44, 61, 10, 13, 9, 13, 32, 44,
+ 61, 9, 13, 32, 33, 34, 37, 39,
+ 91, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 10, 13, 9, 13,
+ 32, 33, 34, 37, 39, 91, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 10, 13, 9, 13, 32, 34, 13,
+ 34, 92, 127, 0, 8, 10, 31, 13,
+ 34, 92, 127, 0, 8, 10, 31, 10,
+ 13, 34, 13, 34, 0, 9, 11, 127,
+ 9, 13, 32, 34, 44, 92, 127, 0,
+ 31, 10, 13, 9, 13, 32, 34, 44,
+ 92, 127, 0, 31, 10, 13, 9, 13,
+ 32, 34, 44, 92, 127, 0, 31, 9,
+ 13, 32, 33, 34, 37, 39, 65, 68,
+ 78, 79, 81, 82, 83, 92, 97, 100,
+ 110, 111, 113, 114, 115, 126, 127, 0,
+ 31, 42, 43, 45, 46, 48, 57, 66,
+ 90, 95, 122, 10, 13, 9, 13, 32,
+ 33, 34, 37, 39, 65, 68, 78, 79,
+ 81, 82, 83, 92, 97, 100, 110, 111,
+ 113, 114, 115, 126, 127, 0, 31, 42,
+ 43, 45, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 44, 61, 92, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 34, 44, 61, 92, 127, 0,
+ 31, 10, 13, 9, 13, 32, 34, 44,
+ 61, 92, 127, 0, 31, 9, 13, 32,
+ 33, 34, 37, 39, 91, 92, 126, 127,
+ 0, 31, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 10, 13, 9, 13,
+ 32, 33, 34, 37, 39, 91, 92, 126,
+ 127, 0, 31, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 92,
+ 127, 0, 31, 10, 13, 13, 34, 58,
+ 92, 127, 0, 8, 10, 31, 48, 57,
+ 65, 70, 97, 102, 13, 34, 58, 92,
+ 93, 127, 0, 8, 10, 31, 48, 57,
+ 65, 70, 97, 102, 13, 34, 58, 92,
+ 93, 127, 0, 8, 10, 31, 48, 57,
+ 65, 70, 97, 102, 13, 34, 58, 92,
+ 93, 127, 0, 8, 10, 31, 48, 57,
+ 65, 70, 97, 102, 13, 34, 58, 92,
+ 93, 127, 0, 8, 10, 31, 13, 34,
+ 58, 92, 127, 0, 8, 10, 31, 48,
+ 57, 65, 70, 97, 102, 13, 34, 46,
+ 58, 92, 93, 127, 0, 8, 10, 31,
+ 48, 57, 65, 70, 97, 102, 13, 34,
+ 92, 127, 0, 8, 10, 31, 48, 57,
+ 13, 34, 46, 92, 127, 0, 8, 10,
+ 31, 48, 57, 13, 34, 92, 127, 0,
+ 8, 10, 31, 48, 57, 13, 34, 46,
+ 92, 127, 0, 8, 10, 31, 48, 57,
+ 13, 34, 92, 127, 0, 8, 10, 31,
+ 48, 57, 13, 34, 92, 93, 127, 0,
+ 8, 10, 31, 48, 57, 13, 34, 92,
+ 93, 127, 0, 8, 10, 31, 48, 57,
+ 13, 34, 92, 93, 127, 0, 8, 10,
+ 31, 9, 13, 32, 34, 44, 92, 127,
+ 0, 31, 13, 34, 46, 92, 127, 0,
+ 8, 10, 31, 48, 57, 13, 34, 46,
+ 92, 127, 0, 8, 10, 31, 13, 34,
+ 46, 92, 127, 0, 8, 10, 31, 48,
+ 57, 13, 34, 46, 92, 127, 0, 8,
+ 10, 31, 13, 34, 46, 58, 92, 93,
+ 127, 0, 8, 10, 31, 48, 57, 65,
+ 70, 97, 102, 13, 34, 46, 58, 92,
+ 93, 127, 0, 8, 10, 31, 48, 57,
+ 65, 70, 97, 102, 13, 34, 58, 92,
+ 93, 127, 0, 8, 10, 31, 48, 57,
+ 65, 70, 97, 102, 13, 34, 58, 92,
+ 93, 127, 0, 8, 10, 31, 48, 57,
+ 65, 70, 97, 102, 13, 34, 58, 92,
+ 93, 127, 0, 8, 10, 31, 48, 57,
+ 65, 70, 97, 102, 13, 34, 58, 92,
+ 93, 127, 0, 8, 10, 31, 48, 57,
+ 65, 70, 97, 102, 13, 34, 58, 92,
+ 93, 127, 0, 8, 10, 31, 13, 34,
+ 92, 127, 0, 8, 10, 31, 48, 57,
+ 65, 70, 97, 102, 13, 34, 46, 58,
+ 92, 93, 127, 0, 8, 10, 31, 48,
+ 57, 65, 70, 97, 102, 13, 34, 46,
+ 58, 92, 93, 127, 0, 8, 10, 31,
+ 48, 57, 65, 70, 97, 102, 13, 34,
+ 46, 58, 92, 93, 127, 0, 8, 10,
+ 31, 48, 57, 65, 70, 97, 102, 13,
+ 34, 92, 127, 0, 8, 10, 31, 48,
+ 57, 13, 34, 46, 92, 127, 0, 8,
+ 10, 31, 48, 57, 13, 34, 46, 92,
+ 127, 0, 8, 10, 31, 48, 57, 13,
+ 34, 46, 92, 127, 0, 8, 10, 31,
+ 13, 34, 58, 92, 127, 0, 8, 10,
+ 31, 10, 13, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 76, 92, 108, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 71, 92, 103, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 79, 92, 111, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 82, 92, 114, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 73, 92, 105, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 84, 92, 116, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 72, 92, 104, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 77, 92, 109, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 92, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 34, 44, 61, 92,
+ 127, 0, 31, 10, 13, 9, 13, 32,
+ 34, 44, 61, 92, 127, 0, 31, 9,
+ 13, 32, 33, 34, 37, 39, 91, 92,
+ 126, 127, 0, 31, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 10, 13,
+ 9, 13, 32, 33, 34, 37, 39, 91,
+ 92, 126, 127, 0, 31, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 92,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 10, 13, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 79,
+ 92, 111, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 77,
+ 92, 109, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 65,
+ 92, 97, 126, 127, 0, 31, 42, 46,
+ 48, 57, 66, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 73,
+ 92, 105, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 78,
+ 92, 110, 126, 127, 0, 31, 42, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 61, 92,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 34,
+ 44, 61, 92, 127, 0, 31, 10, 13,
+ 9, 13, 32, 34, 44, 61, 92, 127,
+ 0, 31, 9, 13, 32, 33, 34, 37,
+ 39, 91, 92, 126, 127, 0, 31, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 10, 13, 9, 13, 32, 33, 34,
+ 37, 39, 91, 92, 126, 127, 0, 31,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 10, 13, 9, 13, 32, 34,
+ 92, 127, 0, 31, 9, 13, 32, 34,
+ 44, 92, 127, 0, 31, 10, 13, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 79, 92, 111, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 78, 92, 110, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 67, 92, 99, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 69, 92, 101, 126, 127, 0, 31, 42,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 44, 61,
+ 92, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 34, 44, 61, 92, 127, 0, 31, 10,
+ 13, 9, 13, 32, 34, 44, 61, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 91, 92, 126, 127, 0, 31,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 10, 13, 9, 13, 32, 33,
+ 34, 37, 39, 91, 92, 126, 127, 0,
+ 31, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 10, 13, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 80, 92,
+ 112, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 65, 92,
+ 97, 126, 127, 0, 31, 42, 46, 48,
+ 57, 66, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 81, 92,
+ 113, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 85, 92,
+ 117, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 69, 92,
+ 101, 126, 127, 0, 31, 42, 46, 48,
+ 57, 65, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 61, 92, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 34, 44,
+ 61, 92, 127, 0, 31, 10, 13, 9,
+ 13, 32, 34, 44, 61, 92, 127, 0,
+ 31, 9, 13, 32, 33, 34, 37, 39,
+ 91, 92, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 10, 13, 9, 13, 32, 33, 34, 37,
+ 39, 91, 92, 126, 127, 0, 31, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 10, 13, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 79, 92, 111, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 80, 92, 112, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 61, 92, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 9, 13, 32, 34, 44, 61, 92,
+ 127, 0, 31, 10, 13, 9, 13, 32,
+ 34, 44, 61, 92, 127, 0, 31, 9,
+ 13, 32, 33, 34, 37, 39, 91, 92,
+ 126, 127, 0, 31, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 10, 13,
+ 9, 13, 32, 33, 34, 37, 39, 91,
+ 92, 126, 127, 0, 31, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 10,
+ 13, 9, 13, 32, 34, 92, 127, 0,
+ 31, 9, 13, 32, 34, 44, 92, 127,
+ 0, 31, 10, 13, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 69, 92, 101,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 65, 92, 97,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 66, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 76, 92, 108,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 77, 92, 109,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 61, 92, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 61,
+ 92, 127, 0, 31, 10, 13, 9, 13,
+ 32, 34, 44, 61, 92, 127, 0, 31,
+ 9, 13, 32, 33, 34, 37, 39, 91,
+ 92, 126, 127, 0, 31, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 10,
+ 13, 9, 13, 32, 33, 34, 37, 39,
+ 91, 92, 126, 127, 0, 31, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 10, 13, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 84, 92, 116, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 65, 92, 97, 126, 127,
+ 0, 31, 42, 46, 48, 57, 66, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 76, 92, 108, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 69, 92, 101, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 61, 92, 126, 127, 0, 31,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 34, 44, 61, 92, 127,
+ 0, 31, 10, 13, 9, 13, 32, 34,
+ 44, 61, 92, 127, 0, 31, 9, 13,
+ 32, 33, 34, 37, 39, 70, 84, 91,
+ 92, 102, 116, 126, 127, 0, 31, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 10, 13, 9, 13, 32, 33, 34,
+ 37, 39, 70, 84, 91, 92, 102, 116,
+ 126, 127, 0, 31, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 13,
+ 32, 33, 34, 37, 39, 44, 65, 92,
+ 97, 126, 127, 0, 31, 42, 46, 48,
+ 57, 66, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 44, 76, 92, 108,
+ 126, 127, 0, 31, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 33,
+ 34, 37, 39, 44, 83, 92, 115, 126,
+ 127, 0, 31, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 34,
+ 37, 39, 44, 69, 92, 101, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 34, 44, 92,
+ 127, 0, 31, 9, 13, 32, 33, 34,
+ 37, 39, 44, 82, 92, 114, 126, 127,
+ 0, 31, 42, 46, 48, 57, 65, 90,
+ 95, 122, 9, 13, 32, 33, 34, 37,
+ 39, 44, 85, 92, 117, 126, 127, 0,
+ 31, 42, 46, 48, 57, 65, 90, 95,
+ 122, 10, 13, 10, 13, 9, 13, 32,
+ 33, 37, 39, 44, 61, 79, 111, 126,
+ 42, 46, 48, 57, 65, 90, 95, 122,
+ 9, 13, 32, 33, 37, 39, 44, 61,
+ 80, 112, 126, 42, 46, 48, 57, 65,
+ 90, 95, 122, 9, 13, 32, 33, 37,
+ 39, 44, 61, 126, 42, 46, 48, 57,
+ 65, 90, 95, 122, 9, 13, 32, 44,
+ 61, 10, 13, 9, 13, 32, 44, 61,
+ 9, 13, 32, 33, 34, 37, 39, 91,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 10, 13, 9, 13, 32,
+ 33, 34, 37, 39, 91, 126, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 10, 13, 9, 13, 32, 34, 13, 34,
+ 92, 127, 0, 8, 10, 31, 13, 34,
+ 92, 127, 0, 8, 10, 31, 10, 13,
+ 34, 13, 34, 0, 9, 11, 127, 10,
+ 13, 13, 73, 105, 13, 71, 103, 13,
+ 69, 101, 13, 83, 115, 13, 84, 116,
+ 9, 13, 32, 10, 13, 9, 13, 32,
+ 87, 119, 87, 119, 13, 9, 13, 32,
+ 9, 13, 32, 9, 13, 32, 9, 13,
+ 32, 9, 13, 32, 33, 37, 39, 65,
+ 68, 78, 79, 81, 82, 83, 97, 100,
+ 110, 111, 113, 114, 115, 126, 42, 43,
+ 45, 46, 48, 57, 66, 90, 95, 122,
+ 9, 13, 32, 9, 13, 32, 9, 13,
+ 32, 9, 13, 32, 9, 13, 32, 33,
+ 37, 39, 65, 68, 78, 79, 81, 82,
+ 83, 97, 100, 110, 111, 113, 114, 115,
+ 126, 42, 43, 45, 46, 48, 57, 66,
+ 90, 95, 122, 9, 13, 32, 9, 13,
+ 32, 9, 13, 32, 9, 13, 32, 9,
+ 13, 32, 33, 37, 39, 65, 68, 78,
+ 79, 81, 82, 83, 97, 100, 110, 111,
+ 113, 114, 115, 126, 42, 43, 45, 46,
+ 48, 57, 66, 90, 95, 122, 9, 13,
+ 32, 9, 13, 32, 9, 13, 32, 9,
+ 13, 32, 9, 13, 32, 33, 37, 39,
+ 65, 68, 78, 79, 81, 82, 83, 97,
+ 100, 110, 111, 113, 114, 115, 126, 42,
+ 43, 45, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 9, 13, 32, 9,
+ 13, 32, 13, 34, 9, 13, 32, 33,
+ 37, 39, 65, 68, 78, 79, 81, 82,
+ 83, 97, 100, 110, 111, 113, 114, 115,
+ 126, 42, 43, 45, 46, 48, 57, 66,
+ 90, 95, 122, 9, 13, 32, 9, 13,
+ 32, 9, 13, 32, 9, 13, 32, 9,
+ 13, 32, 33, 37, 39, 65, 68, 78,
+ 79, 81, 82, 83, 97, 100, 110, 111,
+ 113, 114, 115, 126, 42, 43, 45, 46,
+ 48, 57, 66, 90, 95, 122, 9, 13,
+ 32, 9, 13, 32, 9, 13, 32, 33,
+ 37, 39, 65, 68, 78, 79, 81, 82,
+ 83, 97, 100, 110, 111, 113, 114, 115,
+ 126, 42, 43, 45, 46, 48, 57, 66,
+ 90, 95, 122, 9, 13, 32, 34, 9,
+ 13, 32, 33, 37, 39, 65, 68, 78,
+ 79, 81, 82, 83, 97, 100, 110, 111,
+ 113, 114, 115, 126, 42, 43, 45, 46,
+ 48, 57, 66, 90, 95, 122, 9, 13,
+ 32, 33, 37, 39, 65, 68, 78, 79,
+ 81, 82, 83, 97, 100, 110, 111, 113,
+ 114, 115, 126, 42, 43, 45, 46, 48,
+ 57, 66, 90, 95, 122, 9, 13, 32,
+ 9, 13, 32, 9, 13, 32, 9, 13,
+ 32, 9, 13, 32, 9, 13, 32, 33,
+ 37, 39, 65, 68, 78, 79, 81, 82,
+ 83, 97, 100, 110, 111, 113, 114, 115,
+ 126, 42, 43, 45, 46, 48, 57, 66,
+ 90, 95, 122, 9, 13, 32, 9, 13,
+ 32, 9, 13, 32, 33, 37, 39, 65,
+ 68, 78, 79, 81, 82, 83, 97, 100,
+ 110, 111, 113, 114, 115, 126, 42, 43,
+ 45, 46, 48, 57, 66, 90, 95, 122,
+ 9, 13, 32, 9, 13, 32, 9, 13,
+ 32, 13, 34, 9, 13, 32, 34, 9,
+ 13, 32, 34, 9, 13, 32, 34, 9,
+ 13, 32, 34, 9, 13, 32, 34, 9,
+ 13, 32, 34, 9, 13, 32, 33, 34,
+ 37, 39, 65, 68, 78, 79, 81, 82,
+ 83, 97, 100, 110, 111, 113, 114, 115,
+ 126, 42, 43, 45, 46, 48, 57, 66,
+ 90, 95, 122, 9, 13, 32, 34, 9,
+ 13, 32, 34, 9, 13, 32, 33, 34,
+ 37, 39, 65, 68, 78, 79, 81, 82,
+ 83, 97, 100, 110, 111, 113, 114, 115,
+ 126, 42, 43, 45, 46, 48, 57, 66,
+ 90, 95, 122, 9, 13, 32, 34, 9,
+ 13, 32, 34, 9, 13, 32, 34, 9,
+ 13, 32, 33, 34, 37, 39, 65, 68,
+ 78, 79, 81, 82, 83, 97, 100, 110,
+ 111, 113, 114, 115, 126, 42, 43, 45,
+ 46, 48, 57, 66, 90, 95, 122, 9,
+ 13, 32, 34, 9, 13, 32, 34, 9,
+ 13, 32, 34, 9, 13, 32, 33, 37,
+ 39, 65, 68, 78, 79, 81, 82, 83,
+ 97, 100, 110, 111, 113, 114, 115, 126,
+ 42, 43, 45, 46, 48, 57, 66, 90,
+ 95, 122, 9, 13, 32, 33, 37, 39,
+ 65, 68, 78, 79, 81, 82, 83, 97,
+ 100, 110, 111, 113, 114, 115, 126, 42,
+ 43, 45, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 9, 13, 32, 9,
+ 13, 32, 9, 13, 32, 9, 13, 32,
+ 9, 13, 32, 33, 37, 39, 65, 68,
+ 78, 79, 81, 82, 83, 97, 100, 110,
+ 111, 113, 114, 115, 126, 42, 43, 45,
+ 46, 48, 57, 66, 90, 95, 122, 9,
+ 13, 32, 9, 13, 32, 9, 13, 32,
+ 33, 37, 39, 65, 68, 78, 79, 81,
+ 82, 83, 97, 100, 110, 111, 113, 114,
+ 115, 126, 42, 43, 45, 46, 48, 57,
+ 66, 90, 95, 122, 9, 13, 32, 9,
+ 13, 32, 9, 13, 32, 9, 13, 32,
+ 33, 37, 39, 65, 68, 78, 79, 81,
+ 82, 83, 97, 100, 110, 111, 113, 114,
+ 115, 126, 42, 43, 45, 46, 48, 57,
+ 66, 90, 95, 122, 9, 13, 32, 9,
+ 13, 32, 9, 13, 32, 9, 13, 32,
+ 33, 37, 39, 65, 68, 78, 79, 81,
+ 82, 83, 97, 100, 110, 111, 113, 114,
+ 115, 126, 42, 43, 45, 46, 48, 57,
+ 66, 90, 95, 122, 9, 13, 32, 9,
+ 13, 32, 9, 13, 32, 9, 13, 32,
+ 9, 13, 32, 9, 13, 32, 9, 13,
+ 32, 9, 13, 32, 9, 13, 32, 33,
+ 37, 39, 65, 68, 78, 79, 81, 82,
+ 83, 97, 100, 110, 111, 113, 114, 115,
+ 126, 42, 43, 45, 46, 48, 57, 66,
+ 90, 95, 122, 9, 13, 32, 33, 37,
+ 39, 65, 68, 78, 79, 81, 82, 83,
+ 97, 100, 110, 111, 113, 114, 115, 126,
+ 42, 43, 45, 46, 48, 57, 66, 90,
+ 95, 122, 9, 13, 32, 9, 13, 32,
+ 9, 13, 32, 33, 37, 39, 65, 68,
+ 78, 79, 81, 82, 83, 97, 100, 110,
+ 111, 113, 114, 115, 126, 42, 43, 45,
+ 46, 48, 57, 66, 90, 95, 122, 9,
+ 13, 32, 9, 13, 32, 9, 13, 32,
+ 9, 13, 32, 33, 37, 39, 65, 68,
+ 78, 79, 81, 82, 83, 97, 100, 110,
+ 111, 113, 114, 115, 126, 42, 43, 45,
+ 46, 48, 57, 66, 90, 95, 122, 9,
+ 13, 32, 9, 13, 32, 9, 13, 32,
+ 9, 13, 32, 33, 37, 39, 65, 68,
+ 78, 79, 81, 82, 83, 97, 100, 110,
+ 111, 113, 114, 115, 126, 42, 43, 45,
+ 46, 48, 57, 66, 90, 95, 122, 9,
+ 13, 32, 9, 13, 32, 9, 13, 32,
+ 9, 13, 32, 33, 37, 39, 65, 68,
+ 78, 79, 81, 82, 83, 97, 100, 110,
+ 111, 113, 114, 115, 126, 42, 43, 45,
+ 46, 48, 57, 66, 90, 95, 122, 9,
+ 13, 32, 9, 13, 32, 9, 13, 32,
+ 9, 13, 32, 34, 9, 13, 32, 34,
+ 9, 13, 32, 34, 9, 13, 32, 34,
+ 9, 13, 32, 34, 9, 13, 32, 33,
+ 34, 37, 39, 65, 68, 78, 79, 81,
+ 82, 83, 97, 100, 110, 111, 113, 114,
+ 115, 126, 42, 43, 45, 46, 48, 57,
+ 66, 90, 95, 122, 9, 13, 32, 34,
+ 9, 13, 32, 34, 9, 13, 32, 33,
+ 34, 37, 39, 65, 68, 78, 79, 81,
+ 82, 83, 97, 100, 110, 111, 113, 114,
+ 115, 126, 42, 43, 45, 46, 48, 57,
+ 66, 90, 95, 122, 9, 13, 32, 34,
+ 9, 13, 32, 34, 9, 13, 32, 34,
+ 9, 13, 32, 33, 34, 37, 39, 65,
+ 68, 78, 79, 81, 82, 83, 97, 100,
+ 110, 111, 113, 114, 115, 126, 42, 43,
+ 45, 46, 48, 57, 66, 90, 95, 122,
+ 9, 13, 32, 34, 9, 13, 32, 34,
+ 9, 13, 32, 34, 9, 13, 32, 33,
+ 34, 37, 39, 65, 68, 78, 79, 81,
+ 82, 83, 97, 100, 110, 111, 113, 114,
+ 115, 126, 42, 43, 45, 46, 48, 57,
+ 66, 90, 95, 122, 9, 13, 32, 34,
+ 9, 13, 32, 34, 9, 13, 32, 34,
+ 9, 13, 32, 33, 37, 39, 65, 68,
+ 78, 79, 81, 82, 83, 97, 100, 110,
+ 111, 113, 114, 115, 126, 42, 43, 45,
+ 46, 48, 57, 66, 90, 95, 122, 9,
+ 13, 32, 33, 34, 37, 39, 65, 68,
+ 78, 79, 81, 82, 83, 97, 100, 110,
+ 111, 113, 114, 115, 126, 42, 43, 45,
+ 46, 48, 57, 66, 90, 95, 122, 9,
+ 13, 32, 34, 9, 13, 32, 34, 9,
+ 13, 32, 33, 34, 37, 39, 65, 68,
+ 78, 79, 81, 82, 83, 97, 100, 110,
+ 111, 113, 114, 115, 126, 42, 43, 45,
+ 46, 48, 57, 66, 90, 95, 122, 9,
+ 13, 32, 34, 9, 13, 32, 34, 9,
+ 13, 32, 34, 9, 13, 32, 33, 37,
+ 39, 65, 68, 78, 79, 81, 82, 83,
+ 97, 100, 110, 111, 113, 114, 115, 126,
+ 42, 43, 45, 46, 48, 57, 66, 90,
+ 95, 122, 9, 13, 32, 33, 37, 39,
+ 65, 68, 78, 79, 81, 82, 83, 97,
+ 100, 110, 111, 113, 114, 115, 126, 42,
+ 43, 45, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 9, 13, 32, 9,
+ 13, 32, 9, 13, 32, 9, 13, 32,
+ 9, 13, 32, 33, 37, 39, 65, 68,
+ 78, 79, 81, 82, 83, 97, 100, 110,
+ 111, 113, 114, 115, 126, 42, 43, 45,
+ 46, 48, 57, 66, 90, 95, 122, 9,
+ 13, 32, 9, 13, 32, 9, 13, 32,
+ 33, 37, 39, 65, 68, 78, 79, 81,
+ 82, 83, 97, 100, 110, 111, 113, 114,
+ 115, 126, 42, 43, 45, 46, 48, 57,
+ 66, 90, 95, 122, 9, 13, 32, 9,
+ 13, 32, 9, 13, 32, 9, 13, 32,
+ 33, 37, 39, 65, 68, 78, 79, 81,
+ 82, 83, 97, 100, 110, 111, 113, 114,
+ 115, 126, 42, 43, 45, 46, 48, 57,
+ 66, 90, 95, 122, 9, 13, 32, 9,
+ 13, 32, 9, 13, 32, 9, 13, 32,
+ 33, 37, 39, 65, 68, 78, 79, 81,
+ 82, 83, 97, 100, 110, 111, 113, 114,
+ 115, 126, 42, 43, 45, 46, 48, 57,
+ 66, 90, 95, 122, 9, 13, 32, 9,
+ 13, 32, 9, 13, 32, 9, 13, 32,
+ 33, 37, 39, 65, 68, 78, 79, 81,
+ 82, 83, 97, 100, 110, 111, 113, 114,
+ 115, 126, 42, 43, 45, 46, 48, 57,
+ 66, 90, 95, 122, 9, 13, 32, 9,
+ 13, 32, 9, 13, 32, 9, 13, 32,
+ 33, 37, 39, 65, 68, 78, 79, 81,
+ 82, 83, 97, 100, 110, 111, 113, 114,
+ 115, 126, 42, 43, 45, 46, 48, 57,
+ 66, 90, 95, 122, 9, 13, 32, 9,
+ 13, 32, 9, 13, 32, 9, 13, 32,
+ 33, 37, 39, 65, 68, 78, 79, 81,
+ 82, 83, 97, 100, 110, 111, 113, 114,
+ 115, 126, 42, 43, 45, 46, 48, 57,
+ 66, 90, 95, 122, 9, 13, 32, 9,
+ 13, 32, 9, 13, 32, 33, 37, 39,
+ 65, 68, 78, 79, 81, 82, 83, 97,
+ 100, 110, 111, 113, 114, 115, 126, 42,
+ 43, 45, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 65, 68, 78, 79, 81, 82, 83, 97,
+ 100, 110, 111, 113, 114, 115, 126, 42,
+ 43, 45, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 34, 9, 13, 32,
+ 34, 9, 13, 32, 33, 34, 37, 39,
+ 65, 68, 78, 79, 81, 82, 83, 97,
+ 100, 110, 111, 113, 114, 115, 126, 42,
+ 43, 45, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 34, 9, 13, 32,
+ 34, 9, 13, 32, 34, 9, 13, 32,
+ 33, 34, 37, 39, 65, 68, 78, 79,
+ 81, 82, 83, 97, 100, 110, 111, 113,
+ 114, 115, 126, 42, 43, 45, 46, 48,
+ 57, 66, 90, 95, 122, 9, 13, 32,
+ 34, 9, 13, 32, 34, 9, 13, 32,
+ 34, 9, 13, 32, 33, 34, 37, 39,
+ 65, 68, 78, 79, 81, 82, 83, 97,
+ 100, 110, 111, 113, 114, 115, 126, 42,
+ 43, 45, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 34, 9, 13, 32,
+ 34, 9, 13, 32, 34, 9, 13, 32,
+ 33, 34, 37, 39, 65, 68, 78, 79,
+ 81, 82, 83, 97, 100, 110, 111, 113,
+ 114, 115, 126, 42, 43, 45, 46, 48,
+ 57, 66, 90, 95, 122, 9, 13, 32,
+ 33, 34, 37, 39, 65, 68, 78, 79,
+ 81, 82, 83, 97, 100, 110, 111, 113,
+ 114, 115, 126, 42, 43, 45, 46, 48,
+ 57, 66, 90, 95, 122, 9, 13, 32,
+ 34, 9, 13, 32, 34, 9, 13, 32,
+ 34, 9, 13, 32, 33, 34, 37, 39,
+ 65, 68, 78, 79, 81, 82, 83, 97,
+ 100, 110, 111, 113, 114, 115, 126, 42,
+ 43, 45, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 34, 9, 13, 32,
+ 34, 9, 13, 32, 33, 34, 37, 39,
+ 65, 68, 78, 79, 81, 82, 83, 97,
+ 100, 110, 111, 113, 114, 115, 126, 42,
+ 43, 45, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 65, 68, 78, 79, 81, 82, 83, 97,
+ 100, 110, 111, 113, 114, 115, 126, 42,
+ 43, 45, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 34, 9, 13, 32,
+ 34, 9, 13, 32, 33, 34, 37, 39,
+ 65, 68, 78, 79, 81, 82, 83, 97,
+ 100, 110, 111, 113, 114, 115, 126, 42,
+ 43, 45, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 65, 68, 78, 79, 81, 82, 83, 97,
+ 100, 110, 111, 113, 114, 115, 126, 42,
+ 43, 45, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 34, 9, 13, 32,
+ 34, 9, 13, 32, 33, 34, 37, 39,
+ 65, 68, 78, 79, 81, 82, 83, 97,
+ 100, 110, 111, 113, 114, 115, 126, 42,
+ 43, 45, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 34, 9, 13, 32,
+ 34, 9, 13, 32, 34, 9, 13, 32,
+ 33, 34, 37, 39, 65, 68, 78, 79,
+ 81, 82, 83, 97, 100, 110, 111, 113,
+ 114, 115, 126, 42, 43, 45, 46, 48,
+ 57, 66, 90, 95, 122, 9, 13, 32,
+ 34, 9, 13, 32, 34, 9, 13, 32,
+ 34, 9, 13, 32, 33, 34, 37, 39,
+ 65, 68, 78, 79, 81, 82, 83, 97,
+ 100, 110, 111, 113, 114, 115, 126, 42,
+ 43, 45, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 34, 9, 13, 32,
+ 34, 9, 13, 32, 34, 9, 13, 32,
+ 33, 34, 37, 39, 65, 68, 78, 79,
+ 81, 82, 83, 97, 100, 110, 111, 113,
+ 114, 115, 126, 42, 43, 45, 46, 48,
+ 57, 66, 90, 95, 122, 9, 13, 32,
+ 34, 9, 13, 32, 34, 9, 13, 32,
+ 33, 34, 37, 39, 65, 68, 78, 79,
+ 81, 82, 83, 97, 100, 110, 111, 113,
+ 114, 115, 126, 42, 43, 45, 46, 48,
+ 57, 66, 90, 95, 122, 9, 13, 32,
+ 34, 9, 13, 32, 34, 9, 13, 32,
+ 34, 9, 13, 32, 33, 34, 37, 39,
+ 65, 68, 78, 79, 81, 82, 83, 97,
+ 100, 110, 111, 113, 114, 115, 126, 42,
+ 43, 45, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 34, 9, 13, 32,
+ 34, 9, 13, 32, 33, 34, 37, 39,
+ 65, 68, 78, 79, 81, 82, 83, 97,
+ 100, 110, 111, 113, 114, 115, 126, 42,
+ 43, 45, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 33, 37, 39, 65,
+ 68, 78, 79, 81, 82, 83, 97, 100,
+ 110, 111, 113, 114, 115, 126, 42, 43,
+ 45, 46, 48, 57, 66, 90, 95, 122,
+ 9, 13, 32, 9, 13, 32, 9, 13,
+ 32, 9, 13, 32, 33, 37, 39, 65,
+ 68, 78, 79, 81, 82, 83, 97, 100,
+ 110, 111, 113, 114, 115, 126, 42, 43,
+ 45, 46, 48, 57, 66, 90, 95, 122,
+ 9, 13, 32, 9, 13, 32, 9, 13,
+ 32, 33, 37, 39, 65, 68, 78, 79,
+ 81, 82, 83, 97, 100, 110, 111, 113,
+ 114, 115, 126, 42, 43, 45, 46, 48,
+ 57, 66, 90, 95, 122, 9, 13, 32,
+ 33, 37, 39, 65, 68, 78, 79, 81,
+ 82, 83, 97, 100, 110, 111, 113, 114,
+ 115, 126, 42, 43, 45, 46, 48, 57,
+ 66, 90, 95, 122, 9, 13, 32, 9,
+ 13, 32, 9, 13, 32, 9, 13, 32,
+ 33, 37, 39, 65, 68, 78, 79, 81,
+ 82, 83, 97, 100, 110, 111, 113, 114,
+ 115, 126, 42, 43, 45, 46, 48, 57,
+ 66, 90, 95, 122, 9, 13, 32, 9,
+ 13, 32, 9, 13, 32, 9, 13, 32,
+ 33, 37, 39, 65, 68, 78, 79, 81,
+ 82, 83, 97, 100, 110, 111, 113, 114,
+ 115, 126, 42, 43, 45, 46, 48, 57,
+ 66, 90, 95, 122, 9, 13, 32, 9,
+ 13, 32, 9, 13, 32, 33, 37, 39,
+ 65, 68, 78, 79, 81, 82, 83, 97,
+ 100, 110, 111, 113, 114, 115, 126, 42,
+ 43, 45, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 65, 68, 78, 79, 81, 82, 83, 97,
+ 100, 110, 111, 113, 114, 115, 126, 42,
+ 43, 45, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 34, 9, 13, 32,
+ 34, 9, 13, 32, 33, 34, 37, 39,
+ 65, 68, 78, 79, 81, 82, 83, 97,
+ 100, 110, 111, 113, 114, 115, 126, 42,
+ 43, 45, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 34, 9, 13, 32,
+ 34, 9, 13, 32, 33, 34, 37, 39,
+ 65, 68, 78, 79, 81, 82, 83, 97,
+ 100, 110, 111, 113, 114, 115, 126, 42,
+ 43, 45, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 33, 34, 37, 39,
+ 65, 68, 78, 79, 81, 82, 83, 97,
+ 100, 110, 111, 113, 114, 115, 126, 42,
+ 43, 45, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 34, 9, 13, 32,
+ 34, 9, 13, 32, 33, 34, 37, 39,
+ 65, 68, 78, 79, 81, 82, 83, 97,
+ 100, 110, 111, 113, 114, 115, 126, 42,
+ 43, 45, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 34, 9, 13, 32,
+ 34, 9, 13, 32, 33, 34, 37, 39,
+ 65, 68, 78, 79, 81, 82, 83, 97,
+ 100, 110, 111, 113, 114, 115, 126, 42,
+ 43, 45, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 34, 9, 13, 32,
+ 34, 9, 13, 32, 34, 9, 13, 32,
+ 33, 34, 37, 39, 65, 68, 78, 79,
+ 81, 82, 83, 97, 100, 110, 111, 113,
+ 114, 115, 126, 42, 43, 45, 46, 48,
+ 57, 66, 90, 95, 122, 9, 13, 32,
+ 34, 9, 13, 32, 34, 9, 13, 32,
+ 34, 9, 13, 32, 33, 34, 37, 39,
+ 65, 68, 78, 79, 81, 82, 83, 97,
+ 100, 110, 111, 113, 114, 115, 126, 42,
+ 43, 45, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 34, 9, 13, 32,
+ 34, 9, 13, 32, 34, 9, 13, 32,
+ 33, 34, 37, 39, 65, 68, 78, 79,
+ 81, 82, 83, 97, 100, 110, 111, 113,
+ 114, 115, 126, 42, 43, 45, 46, 48,
+ 57, 66, 90, 95, 122, 9, 13, 32,
+ 34, 9, 13, 32, 34, 9, 13, 32,
+ 34, 9, 13, 32, 33, 34, 37, 39,
+ 65, 68, 78, 79, 81, 82, 83, 97,
+ 100, 110, 111, 113, 114, 115, 126, 42,
+ 43, 45, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 34, 9, 13, 32,
+ 34, 9, 13, 32, 33, 34, 37, 39,
+ 65, 68, 78, 79, 81, 82, 83, 97,
+ 100, 110, 111, 113, 114, 115, 126, 42,
+ 43, 45, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 33, 37, 39, 65,
+ 68, 78, 79, 81, 82, 83, 97, 100,
+ 110, 111, 113, 114, 115, 126, 42, 43,
+ 45, 46, 48, 57, 66, 90, 95, 122,
+ 9, 13, 32, 9, 13, 32, 9, 13,
+ 32, 9, 13, 32, 33, 37, 39, 65,
+ 68, 78, 79, 81, 82, 83, 97, 100,
+ 110, 111, 113, 114, 115, 126, 42, 43,
+ 45, 46, 48, 57, 66, 90, 95, 122,
+ 9, 13, 32, 9, 13, 32, 9, 13,
+ 32, 9, 13, 32, 33, 37, 39, 65,
+ 68, 78, 79, 81, 82, 83, 97, 100,
+ 110, 111, 113, 114, 115, 126, 42, 43,
+ 45, 46, 48, 57, 66, 90, 95, 122,
+ 9, 13, 32, 9, 13, 32, 9, 13,
+ 32, 9, 13, 32, 33, 37, 39, 65,
+ 68, 78, 79, 81, 82, 83, 97, 100,
+ 110, 111, 113, 114, 115, 126, 42, 43,
+ 45, 46, 48, 57, 66, 90, 95, 122,
+ 9, 13, 32, 9, 13, 32, 9, 13,
+ 32, 9, 13, 32, 33, 37, 39, 65,
+ 68, 78, 79, 81, 82, 83, 97, 100,
+ 110, 111, 113, 114, 115, 126, 42, 43,
+ 45, 46, 48, 57, 66, 90, 95, 122,
+ 9, 13, 32, 9, 13, 32, 9, 13,
+ 32, 33, 37, 39, 65, 68, 78, 79,
+ 81, 82, 83, 97, 100, 110, 111, 113,
+ 114, 115, 126, 42, 43, 45, 46, 48,
+ 57, 66, 90, 95, 122, 9, 13, 32,
+ 33, 37, 39, 65, 68, 78, 79, 81,
+ 82, 83, 97, 100, 110, 111, 113, 114,
+ 115, 126, 42, 43, 45, 46, 48, 57,
+ 66, 90, 95, 122, 9, 13, 32, 9,
+ 13, 32, 9, 13, 32, 9, 13, 32,
+ 33, 37, 39, 65, 68, 78, 79, 81,
+ 82, 83, 97, 100, 110, 111, 113, 114,
+ 115, 126, 42, 43, 45, 46, 48, 57,
+ 66, 90, 95, 122, 9, 13, 32, 9,
+ 13, 32, 9, 13, 32, 33, 37, 39,
+ 65, 68, 78, 79, 81, 82, 83, 97,
+ 100, 110, 111, 113, 114, 115, 126, 42,
+ 43, 45, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 9, 13, 32, 9,
+ 13, 32, 9, 13, 32, 34, 9, 13,
+ 32, 33, 37, 39, 65, 68, 78, 79,
+ 81, 82, 83, 97, 100, 110, 111, 113,
+ 114, 115, 126, 42, 43, 45, 46, 48,
+ 57, 66, 90, 95, 122, 9, 13, 32,
+ 33, 37, 39, 65, 68, 78, 79, 81,
+ 82, 83, 97, 100, 110, 111, 113, 114,
+ 115, 126, 42, 43, 45, 46, 48, 57,
+ 66, 90, 95, 122, 9, 13, 32, 9,
+ 13, 32, 9, 13, 32, 9, 13, 32,
+ 9, 13, 32, 33, 37, 39, 65, 68,
+ 78, 79, 81, 82, 83, 97, 100, 110,
+ 111, 113, 114, 115, 126, 42, 43, 45,
+ 46, 48, 57, 66, 90, 95, 122, 9,
+ 13, 32, 9, 13, 32, 9, 13, 32,
+ 33, 37, 39, 65, 68, 78, 79, 81,
+ 82, 83, 97, 100, 110, 111, 113, 114,
+ 115, 126, 42, 43, 45, 46, 48, 57,
+ 66, 90, 95, 122, 9, 13, 32, 9,
+ 13, 32, 9, 13, 32, 9, 13, 32,
+ 33, 37, 39, 65, 68, 78, 79, 81,
+ 82, 83, 97, 100, 110, 111, 113, 114,
+ 115, 126, 42, 43, 45, 46, 48, 57,
+ 66, 90, 95, 122, 9, 13, 32, 9,
+ 13, 32, 9, 13, 32, 33, 37, 39,
+ 65, 68, 78, 79, 81, 82, 83, 97,
+ 100, 110, 111, 113, 114, 115, 126, 42,
+ 43, 45, 46, 48, 57, 66, 90, 95,
+ 122, 9, 13, 32, 9, 13, 32, 9,
+ 13, 32, 33, 37, 39, 65, 68, 78,
+ 79, 81, 82, 83, 97, 100, 110, 111,
+ 113, 114, 115, 126, 42, 43, 45, 46,
+ 48, 57, 66, 90, 95, 122, 9, 13,
+ 32, 9, 13, 32, 9, 13, 32, 9,
+ 13, 32, 33, 37, 39, 65, 68, 78,
+ 79, 81, 82, 83, 97, 100, 110, 111,
+ 113, 114, 115, 126, 42, 43, 45, 46,
+ 48, 57, 66, 90, 95, 122, 9, 13,
+ 32, 9, 13, 32, 9, 13, 32, 33,
+ 37, 39, 65, 68, 78, 79, 81, 82,
+ 83, 97, 100, 110, 111, 113, 114, 115,
+ 126, 42, 43, 45, 46, 48, 57, 66,
+ 90, 95, 122, 9, 13, 32, 9, 13,
+ 32, 9, 13, 32, 33, 37, 39, 65,
+ 68, 78, 79, 81, 82, 83, 97, 100,
+ 110, 111, 113, 114, 115, 126, 42, 43,
+ 45, 46, 48, 57, 66, 90, 95, 122,
+ 9, 13, 32, 33, 37, 39, 65, 68,
+ 78, 79, 81, 82, 83, 97, 100, 110,
+ 111, 113, 114, 115, 126, 42, 43, 45,
+ 46, 48, 57, 66, 90, 95, 122, 9,
+ 13, 32, 9, 13, 32, 9, 13, 32,
+ 9, 13, 32, 34, 9, 13, 32, 33,
+ 37, 39, 65, 68, 78, 79, 81, 82,
+ 83, 97, 100, 110, 111, 113, 114, 115,
+ 126, 42, 43, 45, 46, 48, 57, 66,
+ 90, 95, 122, 0
+};
+
+static const char _thttp_machine_parser_header_WWW_Authenticate_single_lengths[] = {
+ 0, 4, 2, 2, 2, 2, 1, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 3, 7, 1, 2, 7,
+ 2, 7, 3, 3, 3, 3, 3, 21,
+ 2, 21, 9, 5, 2, 5, 21, 2,
+ 21, 11, 2, 11, 9, 2, 9, 2,
+ 4, 4, 2, 4, 4, 2, 4, 2,
+ 11, 11, 11, 11, 9, 5, 2, 5,
+ 9, 2, 9, 2, 4, 4, 2, 4,
+ 1, 8, 2, 3, 3, 3, 3, 2,
+ 4, 1, 2, 1, 2, 1, 2, 2,
+ 2, 2, 2, 2, 2, 4, 4, 3,
+ 3, 3, 3, 3, 1, 4, 4, 4,
+ 1, 2, 2, 2, 2, 2, 11, 11,
+ 11, 11, 11, 9, 5, 2, 5, 9,
+ 2, 9, 2, 4, 4, 2, 4, 1,
+ 2, 11, 11, 9, 5, 2, 5, 9,
+ 2, 9, 2, 4, 4, 4, 2, 3,
+ 4, 2, 4, 11, 11, 11, 11, 9,
+ 5, 2, 5, 9, 2, 9, 2, 4,
+ 4, 2, 4, 1, 2, 11, 11, 11,
+ 11, 9, 5, 2, 5, 13, 2, 13,
+ 10, 10, 10, 10, 4, 10, 10, 2,
+ 3, 2, 7, 2, 7, 2, 7, 24,
+ 2, 24, 12, 8, 2, 8, 11, 2,
+ 11, 2, 6, 7, 7, 2, 1, 11,
+ 5, 6, 6, 6, 6, 5, 7, 4,
+ 5, 4, 5, 4, 5, 5, 5, 5,
+ 5, 5, 5, 7, 7, 6, 6, 6,
+ 6, 6, 4, 7, 7, 7, 4, 5,
+ 5, 5, 5, 2, 14, 14, 14, 14,
+ 14, 14, 14, 14, 12, 8, 2, 8,
+ 11, 2, 11, 11, 2, 14, 14, 14,
+ 14, 14, 12, 8, 2, 8, 11, 2,
+ 11, 2, 6, 7, 4, 2, 3, 3,
+ 2, 7, 3, 7, 24, 3, 24, 12,
+ 8, 3, 8, 11, 3, 11, 3, 6,
+ 11, 3, 10, 6, 3, 6, 22, 3,
+ 22, 12, 3, 12, 9, 3, 9, 3,
+ 4, 9, 5, 3, 5, 3, 12, 12,
+ 12, 12, 10, 6, 3, 6, 9, 3,
+ 9, 3, 4, 7, 2, 7, 2, 7,
+ 24, 2, 24, 12, 8, 2, 8, 11,
+ 2, 11, 2, 6, 7, 11, 7, 2,
+ 5, 6, 6, 6, 6, 5, 7, 4,
+ 5, 4, 5, 4, 5, 5, 5, 7,
+ 5, 5, 5, 5, 7, 7, 6, 6,
+ 6, 6, 6, 4, 7, 7, 7, 4,
+ 5, 5, 5, 5, 2, 14, 14, 14,
+ 14, 14, 14, 14, 14, 12, 8, 2,
+ 8, 11, 2, 11, 11, 2, 14, 14,
+ 14, 14, 14, 12, 8, 2, 8, 11,
+ 2, 11, 2, 6, 7, 2, 14, 14,
+ 14, 14, 12, 8, 2, 8, 11, 2,
+ 11, 2, 6, 7, 2, 14, 14, 14,
+ 14, 14, 12, 8, 2, 8, 11, 2,
+ 11, 2, 6, 7, 7, 2, 7, 24,
+ 2, 24, 12, 8, 2, 8, 11, 2,
+ 11, 2, 6, 7, 11, 2, 5, 6,
+ 6, 6, 6, 5, 7, 4, 5, 4,
+ 5, 4, 5, 5, 5, 7, 5, 5,
+ 5, 5, 7, 7, 6, 6, 6, 6,
+ 6, 4, 7, 7, 7, 4, 5, 5,
+ 5, 5, 2, 14, 14, 14, 14, 14,
+ 14, 14, 14, 12, 8, 2, 8, 11,
+ 2, 11, 11, 2, 14, 14, 14, 14,
+ 14, 12, 8, 2, 8, 11, 2, 11,
+ 2, 6, 7, 2, 14, 14, 14, 14,
+ 12, 8, 2, 8, 11, 2, 11, 2,
+ 6, 7, 2, 14, 14, 14, 14, 14,
+ 12, 8, 2, 8, 11, 2, 11, 2,
+ 6, 7, 2, 14, 14, 12, 8, 2,
+ 8, 11, 2, 11, 2, 6, 7, 7,
+ 3, 7, 24, 3, 24, 12, 8, 3,
+ 8, 11, 3, 11, 3, 6, 11, 3,
+ 10, 6, 3, 6, 22, 3, 22, 12,
+ 3, 12, 9, 3, 9, 3, 4, 9,
+ 5, 3, 5, 3, 12, 12, 12, 12,
+ 10, 6, 3, 6, 9, 3, 9, 3,
+ 4, 3, 4, 4, 4, 4, 3, 5,
+ 2, 3, 2, 3, 2, 3, 3, 3,
+ 5, 3, 3, 3, 3, 5, 5, 4,
+ 4, 4, 4, 4, 2, 5, 5, 5,
+ 2, 3, 3, 3, 3, 3, 12, 12,
+ 12, 12, 12, 10, 6, 3, 6, 9,
+ 3, 9, 3, 4, 7, 2, 7, 3,
+ 12, 12, 10, 6, 3, 6, 9, 3,
+ 9, 3, 12, 12, 12, 12, 10, 6,
+ 3, 6, 9, 3, 9, 3, 4, 7,
+ 2, 7, 2, 7, 24, 2, 24, 12,
+ 8, 2, 8, 11, 2, 11, 2, 6,
+ 7, 11, 7, 2, 5, 6, 6, 6,
+ 6, 5, 7, 4, 5, 4, 5, 4,
+ 5, 5, 5, 7, 5, 5, 5, 5,
+ 7, 7, 6, 6, 6, 6, 6, 4,
+ 7, 7, 7, 4, 5, 5, 5, 5,
+ 2, 14, 14, 14, 14, 14, 14, 14,
+ 14, 12, 8, 2, 8, 11, 2, 11,
+ 11, 2, 14, 14, 14, 14, 14, 12,
+ 8, 2, 8, 11, 2, 11, 2, 6,
+ 7, 2, 14, 14, 14, 14, 12, 8,
+ 2, 8, 11, 2, 11, 2, 6, 7,
+ 2, 14, 14, 14, 14, 14, 12, 8,
+ 2, 8, 11, 2, 11, 2, 6, 7,
+ 2, 14, 14, 12, 8, 2, 8, 11,
+ 2, 11, 2, 6, 7, 2, 14, 14,
+ 14, 14, 12, 8, 2, 8, 11, 2,
+ 11, 2, 6, 7, 2, 14, 14, 14,
+ 14, 12, 8, 2, 8, 15, 2, 15,
+ 13, 13, 13, 13, 7, 13, 13, 2,
+ 3, 12, 12, 12, 12, 10, 6, 3,
+ 6, 13, 3, 13, 11, 11, 11, 11,
+ 5, 11, 11, 3, 12, 12, 12, 12,
+ 10, 6, 3, 6, 9, 3, 9, 3,
+ 4, 7, 7, 3, 7, 12, 12, 12,
+ 12, 12, 10, 6, 3, 6, 9, 3,
+ 9, 3, 4, 3, 4, 4, 4, 4,
+ 3, 5, 2, 3, 2, 3, 2, 3,
+ 3, 3, 5, 3, 3, 3, 3, 5,
+ 5, 4, 4, 4, 4, 4, 2, 5,
+ 5, 5, 2, 3, 3, 3, 3, 3,
+ 12, 12, 10, 6, 3, 6, 9, 3,
+ 9, 3, 4, 7, 7, 3, 7, 3,
+ 12, 12, 12, 12, 10, 6, 3, 6,
+ 9, 3, 9, 3, 4, 3, 12, 12,
+ 12, 12, 10, 6, 3, 6, 13, 3,
+ 13, 11, 11, 11, 11, 5, 11, 11,
+ 3, 3, 12, 12, 12, 12, 12, 12,
+ 12, 10, 6, 3, 6, 9, 3, 9,
+ 9, 3, 5, 6, 6, 6, 6, 5,
+ 7, 4, 5, 4, 5, 4, 5, 5,
+ 5, 7, 5, 5, 5, 5, 7, 7,
+ 6, 6, 6, 6, 6, 4, 7, 7,
+ 7, 4, 5, 5, 5, 5, 3, 14,
+ 14, 14, 14, 14, 14, 14, 14, 12,
+ 8, 3, 8, 11, 3, 11, 11, 3,
+ 14, 14, 14, 14, 14, 12, 8, 3,
+ 8, 11, 3, 11, 3, 6, 3, 14,
+ 14, 14, 14, 12, 8, 3, 8, 11,
+ 3, 11, 3, 6, 3, 14, 14, 14,
+ 14, 14, 12, 8, 3, 8, 11, 3,
+ 11, 3, 6, 3, 14, 14, 12, 8,
+ 3, 8, 11, 3, 11, 3, 14, 14,
+ 14, 14, 12, 8, 3, 8, 11, 3,
+ 11, 3, 6, 3, 14, 14, 14, 14,
+ 12, 8, 3, 8, 15, 3, 15, 13,
+ 13, 13, 13, 7, 13, 13, 3, 2,
+ 14, 14, 14, 14, 12, 8, 2, 8,
+ 11, 2, 11, 2, 6, 7, 2, 14,
+ 14, 14, 14, 12, 8, 2, 8, 15,
+ 2, 15, 13, 13, 13, 13, 7, 13,
+ 13, 2, 2, 14, 14, 12, 8, 2,
+ 8, 11, 2, 11, 2, 6, 7, 2,
+ 14, 14, 14, 14, 12, 8, 2, 8,
+ 11, 2, 11, 2, 6, 7, 2, 14,
+ 14, 14, 14, 12, 8, 2, 8, 15,
+ 2, 15, 13, 13, 13, 13, 7, 13,
+ 13, 2, 3, 12, 12, 12, 12, 10,
+ 6, 3, 6, 9, 3, 9, 3, 12,
+ 12, 12, 12, 12, 12, 12, 10, 6,
+ 3, 6, 9, 3, 9, 9, 3, 5,
+ 6, 6, 6, 6, 5, 7, 4, 5,
+ 4, 5, 4, 5, 5, 5, 7, 5,
+ 5, 5, 5, 7, 7, 6, 6, 6,
+ 6, 6, 4, 7, 7, 7, 4, 5,
+ 5, 5, 5, 3, 14, 14, 14, 14,
+ 14, 14, 14, 14, 12, 8, 3, 8,
+ 11, 3, 11, 11, 3, 14, 14, 14,
+ 14, 14, 12, 8, 3, 8, 11, 3,
+ 11, 3, 14, 14, 14, 14, 12, 8,
+ 3, 8, 11, 3, 11, 3, 6, 3,
+ 14, 14, 14, 14, 14, 12, 8, 3,
+ 8, 11, 3, 11, 3, 6, 3, 14,
+ 14, 12, 8, 3, 8, 11, 3, 11,
+ 3, 6, 3, 14, 14, 14, 14, 12,
+ 8, 3, 8, 11, 3, 11, 3, 6,
+ 3, 14, 14, 14, 14, 12, 8, 3,
+ 8, 15, 3, 15, 13, 13, 13, 13,
+ 7, 13, 13, 3, 2, 14, 14, 14,
+ 14, 12, 8, 2, 8, 11, 2, 11,
+ 2, 6, 2, 14, 14, 14, 14, 14,
+ 12, 8, 2, 8, 11, 2, 11, 2,
+ 6, 2, 14, 14, 12, 8, 2, 8,
+ 11, 2, 11, 2, 6, 7, 2, 14,
+ 14, 14, 14, 12, 8, 2, 8, 11,
+ 2, 11, 2, 6, 2, 14, 14, 14,
+ 14, 12, 8, 2, 8, 15, 2, 15,
+ 13, 13, 13, 13, 7, 13, 13, 2,
+ 2, 11, 11, 11, 11, 9, 5, 2,
+ 5, 9, 2, 9, 2, 4, 4, 2,
+ 11, 11, 11, 11, 11, 11, 11, 9,
+ 5, 2, 5, 9, 2, 9, 8, 2,
+ 11, 11, 11, 11, 11, 9, 5, 2,
+ 5, 9, 2, 9, 2, 4, 4, 4,
+ 3, 2, 7, 2, 7, 2, 7, 24,
+ 2, 24, 12, 8, 2, 8, 11, 2,
+ 11, 11, 7, 2, 5, 6, 6, 6,
+ 6, 5, 7, 4, 5, 4, 5, 4,
+ 5, 5, 5, 7, 5, 5, 5, 5,
+ 7, 7, 6, 6, 6, 6, 6, 4,
+ 7, 7, 7, 4, 5, 5, 5, 5,
+ 2, 14, 14, 14, 14, 14, 14, 14,
+ 14, 12, 8, 2, 8, 11, 2, 11,
+ 11, 2, 14, 14, 14, 14, 14, 12,
+ 8, 2, 8, 11, 2, 11, 2, 6,
+ 7, 2, 14, 14, 14, 14, 12, 8,
+ 2, 8, 11, 2, 11, 2, 14, 14,
+ 14, 14, 14, 12, 8, 2, 8, 11,
+ 2, 11, 2, 14, 14, 12, 8, 2,
+ 8, 11, 2, 11, 2, 6, 7, 2,
+ 14, 14, 14, 14, 12, 8, 2, 8,
+ 11, 2, 11, 2, 14, 14, 14, 14,
+ 12, 8, 2, 8, 15, 2, 15, 13,
+ 13, 13, 13, 7, 13, 13, 2, 2,
+ 11, 11, 9, 5, 2, 5, 9, 2,
+ 9, 2, 4, 4, 4, 3, 2, 2,
+ 3, 3, 3, 3, 3, 3, 2, 3,
+ 2, 2, 1, 3, 3, 3, 3, 21,
+ 3, 3, 3, 3, 21, 3, 3, 3,
+ 3, 21, 3, 3, 3, 3, 21, 3,
+ 3, 3, 2, 21, 3, 3, 3, 3,
+ 21, 3, 3, 21, 4, 21, 21, 3,
+ 3, 3, 3, 3, 21, 3, 3, 21,
+ 3, 3, 3, 2, 4, 4, 4, 4,
+ 4, 4, 22, 4, 4, 22, 4, 4,
+ 4, 22, 4, 4, 4, 21, 21, 3,
+ 3, 3, 3, 3, 21, 3, 3, 21,
+ 3, 3, 3, 21, 3, 3, 3, 21,
+ 3, 3, 3, 3, 3, 3, 3, 3,
+ 21, 21, 3, 3, 21, 3, 3, 3,
+ 21, 3, 3, 3, 21, 3, 3, 3,
+ 21, 3, 3, 3, 4, 4, 4, 4,
+ 4, 22, 4, 4, 22, 4, 4, 4,
+ 22, 4, 4, 4, 22, 4, 4, 4,
+ 21, 22, 4, 4, 22, 4, 4, 4,
+ 21, 21, 3, 3, 3, 3, 3, 21,
+ 3, 3, 21, 3, 3, 3, 21, 3,
+ 3, 3, 21, 3, 3, 3, 21, 3,
+ 3, 3, 21, 3, 3, 3, 21, 3,
+ 3, 21, 22, 4, 4, 22, 4, 4,
+ 4, 22, 4, 4, 4, 22, 4, 4,
+ 4, 22, 22, 4, 4, 4, 22, 4,
+ 4, 22, 22, 4, 4, 22, 22, 4,
+ 4, 22, 4, 4, 4, 22, 4, 4,
+ 4, 22, 4, 4, 4, 22, 4, 4,
+ 22, 4, 4, 4, 22, 4, 4, 22,
+ 21, 3, 3, 3, 21, 3, 3, 21,
+ 21, 3, 3, 3, 21, 3, 3, 3,
+ 21, 3, 3, 21, 22, 4, 4, 22,
+ 4, 4, 22, 22, 4, 4, 22, 4,
+ 4, 22, 4, 4, 4, 22, 4, 4,
+ 4, 22, 4, 4, 4, 22, 4, 4,
+ 4, 22, 4, 4, 22, 21, 3, 3,
+ 3, 21, 3, 3, 3, 21, 3, 3,
+ 3, 21, 3, 3, 3, 21, 3, 3,
+ 21, 21, 3, 3, 3, 21, 3, 3,
+ 21, 3, 3, 3, 4, 21, 21, 3,
+ 3, 3, 3, 21, 3, 3, 21, 3,
+ 3, 3, 21, 3, 3, 21, 3, 3,
+ 21, 3, 3, 3, 21, 3, 3, 21,
+ 3, 3, 21, 21, 3, 3, 3, 4,
+ 21
+};
+
+static const char _thttp_machine_parser_header_WWW_Authenticate_range_lengths[] = {
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 5,
+ 0, 5, 4, 0, 0, 0, 5, 0,
+ 5, 4, 0, 4, 5, 0, 5, 0,
+ 0, 2, 0, 0, 0, 0, 0, 0,
+ 4, 4, 4, 4, 4, 0, 0, 0,
+ 5, 0, 5, 0, 0, 2, 0, 0,
+ 2, 4, 3, 3, 3, 3, 0, 3,
+ 3, 1, 1, 1, 1, 1, 1, 1,
+ 0, 1, 0, 1, 0, 3, 3, 3,
+ 3, 3, 3, 0, 3, 3, 3, 3,
+ 1, 1, 1, 0, 0, 0, 4, 4,
+ 4, 4, 4, 4, 0, 0, 0, 5,
+ 0, 5, 0, 0, 2, 0, 0, 2,
+ 0, 4, 4, 4, 0, 0, 0, 5,
+ 0, 5, 0, 0, 2, 2, 0, 0,
+ 0, 0, 0, 4, 4, 4, 4, 4,
+ 0, 0, 0, 5, 0, 5, 0, 0,
+ 2, 0, 0, 2, 0, 4, 4, 4,
+ 4, 4, 0, 0, 0, 5, 0, 5,
+ 4, 4, 4, 4, 0, 4, 4, 0,
+ 0, 2, 1, 0, 1, 0, 1, 6,
+ 0, 6, 5, 1, 0, 1, 6, 0,
+ 6, 0, 1, 1, 1, 0, 2, 5,
+ 5, 5, 5, 5, 2, 5, 5, 3,
+ 3, 3, 3, 3, 3, 3, 2, 3,
+ 2, 3, 2, 5, 5, 5, 5, 5,
+ 5, 2, 5, 5, 5, 5, 3, 3,
+ 3, 2, 2, 0, 5, 5, 5, 5,
+ 5, 5, 5, 5, 5, 1, 0, 1,
+ 6, 0, 6, 5, 0, 5, 5, 5,
+ 5, 5, 5, 1, 0, 1, 6, 0,
+ 6, 0, 1, 1, 2, 0, 0, 0,
+ 2, 1, 0, 1, 6, 0, 6, 5,
+ 1, 0, 1, 6, 0, 6, 0, 1,
+ 5, 0, 4, 0, 0, 0, 5, 0,
+ 5, 4, 0, 4, 5, 0, 5, 0,
+ 0, 4, 0, 0, 0, 0, 4, 4,
+ 4, 4, 4, 0, 0, 0, 5, 0,
+ 5, 0, 0, 1, 0, 1, 0, 1,
+ 6, 0, 6, 5, 1, 0, 1, 6,
+ 0, 6, 0, 1, 1, 5, 1, 0,
+ 5, 5, 5, 5, 2, 5, 5, 3,
+ 3, 3, 3, 3, 3, 3, 2, 1,
+ 3, 2, 3, 2, 5, 5, 5, 5,
+ 5, 5, 2, 5, 5, 5, 5, 3,
+ 3, 3, 2, 2, 0, 5, 5, 5,
+ 5, 5, 5, 5, 5, 5, 1, 0,
+ 1, 6, 0, 6, 5, 0, 5, 5,
+ 5, 5, 5, 5, 1, 0, 1, 6,
+ 0, 6, 0, 1, 1, 0, 5, 5,
+ 5, 5, 5, 1, 0, 1, 6, 0,
+ 6, 0, 1, 1, 0, 5, 5, 5,
+ 5, 5, 5, 1, 0, 1, 6, 0,
+ 6, 0, 1, 1, 1, 0, 1, 6,
+ 0, 6, 5, 1, 0, 1, 6, 0,
+ 6, 0, 1, 1, 5, 0, 5, 5,
+ 5, 5, 2, 5, 5, 3, 3, 3,
+ 3, 3, 3, 3, 2, 1, 3, 2,
+ 3, 2, 5, 5, 5, 5, 5, 5,
+ 2, 5, 5, 5, 5, 3, 3, 3,
+ 2, 2, 0, 5, 5, 5, 5, 5,
+ 5, 5, 5, 5, 1, 0, 1, 6,
+ 0, 6, 5, 0, 5, 5, 5, 5,
+ 5, 5, 1, 0, 1, 6, 0, 6,
+ 0, 1, 1, 0, 5, 5, 5, 5,
+ 5, 1, 0, 1, 6, 0, 6, 0,
+ 1, 1, 0, 5, 5, 5, 5, 5,
+ 5, 1, 0, 1, 6, 0, 6, 0,
+ 1, 1, 0, 5, 5, 5, 1, 0,
+ 1, 6, 0, 6, 0, 1, 1, 1,
+ 0, 1, 6, 0, 6, 5, 1, 0,
+ 1, 6, 0, 6, 0, 1, 5, 0,
+ 4, 0, 0, 0, 5, 0, 5, 4,
+ 0, 4, 5, 0, 5, 0, 0, 4,
+ 0, 0, 0, 0, 4, 4, 4, 4,
+ 4, 0, 0, 0, 5, 0, 5, 0,
+ 0, 3, 3, 3, 3, 0, 3, 3,
+ 1, 1, 1, 1, 1, 1, 1, 0,
+ 0, 1, 0, 1, 0, 3, 3, 3,
+ 3, 3, 3, 0, 3, 3, 3, 3,
+ 1, 1, 1, 0, 0, 0, 4, 4,
+ 4, 4, 4, 4, 0, 0, 0, 5,
+ 0, 5, 0, 0, 1, 0, 1, 0,
+ 4, 4, 4, 0, 0, 0, 5, 0,
+ 5, 0, 4, 4, 4, 4, 4, 0,
+ 0, 0, 5, 0, 5, 0, 0, 1,
+ 0, 1, 0, 1, 6, 0, 6, 5,
+ 1, 0, 1, 6, 0, 6, 0, 1,
+ 1, 5, 1, 0, 5, 5, 5, 5,
+ 2, 5, 5, 3, 3, 3, 3, 3,
+ 3, 3, 2, 1, 3, 2, 3, 2,
+ 5, 5, 5, 5, 5, 5, 2, 5,
+ 5, 5, 5, 3, 3, 3, 2, 2,
+ 0, 5, 5, 5, 5, 5, 5, 5,
+ 5, 5, 1, 0, 1, 6, 0, 6,
+ 5, 0, 5, 5, 5, 5, 5, 5,
+ 1, 0, 1, 6, 0, 6, 0, 1,
+ 1, 0, 5, 5, 5, 5, 5, 1,
+ 0, 1, 6, 0, 6, 0, 1, 1,
+ 0, 5, 5, 5, 5, 5, 5, 1,
+ 0, 1, 6, 0, 6, 0, 1, 1,
+ 0, 5, 5, 5, 1, 0, 1, 6,
+ 0, 6, 0, 1, 1, 0, 5, 5,
+ 5, 5, 5, 1, 0, 1, 6, 0,
+ 6, 0, 1, 1, 0, 5, 5, 5,
+ 5, 5, 1, 0, 1, 6, 0, 6,
+ 5, 5, 5, 5, 1, 5, 5, 0,
+ 0, 4, 4, 4, 4, 4, 0, 0,
+ 0, 5, 0, 5, 4, 4, 4, 4,
+ 0, 4, 4, 0, 4, 4, 4, 4,
+ 4, 0, 0, 0, 5, 0, 5, 0,
+ 0, 1, 1, 0, 1, 4, 4, 4,
+ 4, 4, 4, 0, 0, 0, 5, 0,
+ 5, 0, 0, 3, 3, 3, 3, 0,
+ 3, 3, 1, 1, 1, 1, 1, 1,
+ 1, 0, 0, 1, 0, 1, 0, 3,
+ 3, 3, 3, 3, 3, 0, 3, 3,
+ 3, 3, 1, 1, 1, 0, 0, 0,
+ 4, 4, 4, 0, 0, 0, 5, 0,
+ 5, 0, 0, 1, 1, 0, 1, 0,
+ 4, 4, 4, 4, 4, 0, 0, 0,
+ 5, 0, 5, 0, 0, 0, 4, 4,
+ 4, 4, 4, 0, 0, 0, 5, 0,
+ 5, 4, 4, 4, 4, 0, 4, 4,
+ 0, 0, 4, 4, 4, 4, 4, 4,
+ 4, 4, 0, 0, 0, 5, 0, 5,
+ 4, 0, 5, 5, 5, 5, 2, 5,
+ 5, 3, 3, 3, 3, 3, 3, 3,
+ 2, 1, 3, 2, 3, 2, 5, 5,
+ 5, 5, 5, 5, 2, 5, 5, 5,
+ 5, 3, 3, 3, 2, 2, 0, 5,
+ 5, 5, 5, 5, 5, 5, 5, 5,
+ 1, 0, 1, 6, 0, 6, 5, 0,
+ 5, 5, 5, 5, 5, 5, 1, 0,
+ 1, 6, 0, 6, 0, 1, 0, 5,
+ 5, 5, 5, 5, 1, 0, 1, 6,
+ 0, 6, 0, 1, 0, 5, 5, 5,
+ 5, 5, 5, 1, 0, 1, 6, 0,
+ 6, 0, 1, 0, 5, 5, 5, 1,
+ 0, 1, 6, 0, 6, 0, 5, 5,
+ 5, 5, 5, 1, 0, 1, 6, 0,
+ 6, 0, 1, 0, 5, 5, 5, 5,
+ 5, 1, 0, 1, 6, 0, 6, 5,
+ 5, 5, 5, 1, 5, 5, 0, 0,
+ 5, 5, 5, 5, 5, 1, 0, 1,
+ 6, 0, 6, 0, 1, 1, 0, 5,
+ 5, 5, 5, 5, 1, 0, 1, 6,
+ 0, 6, 5, 5, 5, 5, 1, 5,
+ 5, 0, 0, 5, 5, 5, 1, 0,
+ 1, 6, 0, 6, 0, 1, 1, 0,
+ 5, 5, 5, 5, 5, 1, 0, 1,
+ 6, 0, 6, 0, 1, 1, 0, 5,
+ 5, 5, 5, 5, 1, 0, 1, 6,
+ 0, 6, 5, 5, 5, 5, 1, 5,
+ 5, 0, 0, 4, 4, 4, 4, 4,
+ 0, 0, 0, 5, 0, 5, 0, 4,
+ 4, 4, 4, 4, 4, 4, 4, 0,
+ 0, 0, 5, 0, 5, 4, 0, 5,
+ 5, 5, 5, 2, 5, 5, 3, 3,
+ 3, 3, 3, 3, 3, 2, 1, 3,
+ 2, 3, 2, 5, 5, 5, 5, 5,
+ 5, 2, 5, 5, 5, 5, 3, 3,
+ 3, 2, 2, 0, 5, 5, 5, 5,
+ 5, 5, 5, 5, 5, 1, 0, 1,
+ 6, 0, 6, 5, 0, 5, 5, 5,
+ 5, 5, 5, 1, 0, 1, 6, 0,
+ 6, 0, 5, 5, 5, 5, 5, 1,
+ 0, 1, 6, 0, 6, 0, 1, 0,
+ 5, 5, 5, 5, 5, 5, 1, 0,
+ 1, 6, 0, 6, 0, 1, 0, 5,
+ 5, 5, 1, 0, 1, 6, 0, 6,
+ 0, 1, 0, 5, 5, 5, 5, 5,
+ 1, 0, 1, 6, 0, 6, 0, 1,
+ 0, 5, 5, 5, 5, 5, 1, 0,
+ 1, 6, 0, 6, 5, 5, 5, 5,
+ 1, 5, 5, 0, 0, 5, 5, 5,
+ 5, 5, 1, 0, 1, 6, 0, 6,
+ 0, 1, 0, 5, 5, 5, 5, 5,
+ 5, 1, 0, 1, 6, 0, 6, 0,
+ 1, 0, 5, 5, 5, 1, 0, 1,
+ 6, 0, 6, 0, 1, 1, 0, 5,
+ 5, 5, 5, 5, 1, 0, 1, 6,
+ 0, 6, 0, 1, 0, 5, 5, 5,
+ 5, 5, 1, 0, 1, 6, 0, 6,
+ 5, 5, 5, 5, 1, 5, 5, 0,
+ 0, 4, 4, 4, 4, 4, 0, 0,
+ 0, 5, 0, 5, 0, 0, 2, 0,
+ 4, 4, 4, 4, 4, 4, 4, 4,
+ 0, 0, 0, 5, 0, 5, 4, 0,
+ 4, 4, 4, 4, 4, 4, 0, 0,
+ 0, 5, 0, 5, 0, 0, 2, 2,
+ 0, 2, 1, 0, 1, 0, 1, 6,
+ 0, 6, 5, 1, 0, 1, 6, 0,
+ 6, 5, 1, 0, 5, 5, 5, 5,
+ 2, 5, 5, 3, 3, 3, 3, 3,
+ 3, 3, 2, 1, 3, 2, 3, 2,
+ 5, 5, 5, 5, 5, 5, 2, 5,
+ 5, 5, 5, 3, 3, 3, 2, 2,
+ 0, 5, 5, 5, 5, 5, 5, 5,
+ 5, 5, 1, 0, 1, 6, 0, 6,
+ 5, 0, 5, 5, 5, 5, 5, 5,
+ 1, 0, 1, 6, 0, 6, 0, 1,
+ 1, 0, 5, 5, 5, 5, 5, 1,
+ 0, 1, 6, 0, 6, 0, 5, 5,
+ 5, 5, 5, 5, 1, 0, 1, 6,
+ 0, 6, 0, 5, 5, 5, 1, 0,
+ 1, 6, 0, 6, 0, 1, 1, 0,
+ 5, 5, 5, 5, 5, 1, 0, 1,
+ 6, 0, 6, 0, 5, 5, 5, 5,
+ 5, 1, 0, 1, 6, 0, 6, 5,
+ 5, 5, 5, 1, 5, 5, 0, 0,
+ 4, 4, 4, 0, 0, 0, 5, 0,
+ 5, 0, 0, 2, 2, 0, 2, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 5,
+ 0, 0, 0, 0, 5, 0, 0, 0,
+ 0, 5, 0, 0, 0, 0, 5, 0,
+ 0, 0, 0, 5, 0, 0, 0, 0,
+ 5, 0, 0, 5, 0, 5, 5, 0,
+ 0, 0, 0, 0, 5, 0, 0, 5,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 5, 0, 0, 5, 0, 0,
+ 0, 5, 0, 0, 0, 5, 5, 0,
+ 0, 0, 0, 0, 5, 0, 0, 5,
+ 0, 0, 0, 5, 0, 0, 0, 5,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 5, 5, 0, 0, 5, 0, 0, 0,
+ 5, 0, 0, 0, 5, 0, 0, 0,
+ 5, 0, 0, 0, 0, 0, 0, 0,
+ 0, 5, 0, 0, 5, 0, 0, 0,
+ 5, 0, 0, 0, 5, 0, 0, 0,
+ 5, 5, 0, 0, 5, 0, 0, 0,
+ 5, 5, 0, 0, 0, 0, 0, 5,
+ 0, 0, 5, 0, 0, 0, 5, 0,
+ 0, 0, 5, 0, 0, 0, 5, 0,
+ 0, 0, 5, 0, 0, 0, 5, 0,
+ 0, 5, 5, 0, 0, 5, 0, 0,
+ 0, 5, 0, 0, 0, 5, 0, 0,
+ 0, 5, 5, 0, 0, 0, 5, 0,
+ 0, 5, 5, 0, 0, 5, 5, 0,
+ 0, 5, 0, 0, 0, 5, 0, 0,
+ 0, 5, 0, 0, 0, 5, 0, 0,
+ 5, 0, 0, 0, 5, 0, 0, 5,
+ 5, 0, 0, 0, 5, 0, 0, 5,
+ 5, 0, 0, 0, 5, 0, 0, 0,
+ 5, 0, 0, 5, 5, 0, 0, 5,
+ 0, 0, 5, 5, 0, 0, 5, 0,
+ 0, 5, 0, 0, 0, 5, 0, 0,
+ 0, 5, 0, 0, 0, 5, 0, 0,
+ 0, 5, 0, 0, 5, 5, 0, 0,
+ 0, 5, 0, 0, 0, 5, 0, 0,
+ 0, 5, 0, 0, 0, 5, 0, 0,
+ 5, 5, 0, 0, 0, 5, 0, 0,
+ 5, 0, 0, 0, 0, 5, 5, 0,
+ 0, 0, 0, 5, 0, 0, 5, 0,
+ 0, 0, 5, 0, 0, 5, 0, 0,
+ 5, 0, 0, 0, 5, 0, 0, 5,
+ 0, 0, 5, 5, 0, 0, 0, 0,
+ 5
+};
+
+static const short _thttp_machine_parser_header_WWW_Authenticate_index_offsets[] = {
+ 0, 0, 5, 8, 11, 14, 17, 19,
+ 22, 25, 28, 31, 34, 37, 40, 43,
+ 46, 49, 52, 55, 59, 67, 69, 72,
+ 80, 83, 91, 95, 99, 103, 107, 111,
+ 138, 141, 168, 182, 188, 191, 197, 224,
+ 227, 254, 270, 273, 289, 304, 307, 322,
+ 325, 330, 337, 340, 345, 350, 353, 358,
+ 361, 377, 393, 409, 425, 439, 445, 448,
+ 454, 469, 472, 487, 490, 495, 502, 505,
+ 510, 514, 527, 533, 540, 547, 554, 558,
+ 564, 572, 575, 579, 582, 586, 589, 593,
+ 597, 600, 604, 607, 611, 614, 622, 630,
+ 637, 644, 651, 658, 662, 667, 675, 683,
+ 691, 694, 698, 702, 705, 708, 711, 727,
+ 743, 759, 775, 791, 805, 811, 814, 820,
+ 835, 838, 853, 856, 861, 868, 871, 876,
+ 880, 883, 899, 915, 929, 935, 938, 944,
+ 959, 962, 977, 980, 985, 992, 999, 1002,
+ 1006, 1011, 1014, 1019, 1035, 1051, 1067, 1083,
+ 1097, 1103, 1106, 1112, 1127, 1130, 1145, 1148,
+ 1153, 1160, 1163, 1168, 1172, 1175, 1191, 1207,
+ 1223, 1239, 1253, 1259, 1262, 1268, 1287, 1290,
+ 1309, 1324, 1339, 1354, 1369, 1374, 1389, 1404,
+ 1407, 1411, 1416, 1425, 1428, 1437, 1440, 1449,
+ 1480, 1483, 1514, 1532, 1542, 1545, 1555, 1573,
+ 1576, 1594, 1597, 1605, 1614, 1623, 1626, 1630,
+ 1647, 1658, 1670, 1682, 1694, 1703, 1714, 1727,
+ 1735, 1744, 1752, 1761, 1769, 1778, 1787, 1795,
+ 1804, 1812, 1821, 1829, 1842, 1855, 1867, 1879,
+ 1891, 1903, 1912, 1922, 1935, 1948, 1961, 1969,
+ 1978, 1987, 1995, 2003, 2006, 2026, 2046, 2066,
+ 2086, 2106, 2126, 2146, 2166, 2184, 2194, 2197,
+ 2207, 2225, 2228, 2246, 2263, 2266, 2286, 2306,
+ 2326, 2346, 2366, 2384, 2394, 2397, 2407, 2425,
+ 2428, 2446, 2449, 2457, 2466, 2473, 2476, 2480,
+ 2484, 2489, 2498, 2502, 2511, 2542, 2546, 2577,
+ 2595, 2605, 2609, 2619, 2637, 2641, 2659, 2663,
+ 2671, 2688, 2692, 2707, 2714, 2718, 2725, 2753,
+ 2757, 2785, 2802, 2806, 2823, 2838, 2842, 2857,
+ 2861, 2866, 2880, 2886, 2890, 2896, 2900, 2917,
+ 2934, 2951, 2968, 2983, 2990, 2994, 3001, 3016,
+ 3020, 3035, 3039, 3044, 3053, 3056, 3065, 3068,
+ 3077, 3108, 3111, 3142, 3160, 3170, 3173, 3183,
+ 3201, 3204, 3222, 3225, 3233, 3242, 3259, 3268,
+ 3271, 3282, 3294, 3306, 3318, 3327, 3338, 3351,
+ 3359, 3368, 3376, 3385, 3393, 3402, 3411, 3419,
+ 3428, 3437, 3445, 3454, 3462, 3475, 3488, 3500,
+ 3512, 3524, 3536, 3545, 3555, 3568, 3581, 3594,
+ 3602, 3611, 3620, 3628, 3636, 3639, 3659, 3679,
+ 3699, 3719, 3739, 3759, 3779, 3799, 3817, 3827,
+ 3830, 3840, 3858, 3861, 3879, 3896, 3899, 3919,
+ 3939, 3959, 3979, 3999, 4017, 4027, 4030, 4040,
+ 4058, 4061, 4079, 4082, 4090, 4099, 4102, 4122,
+ 4142, 4162, 4182, 4200, 4210, 4213, 4223, 4241,
+ 4244, 4262, 4265, 4273, 4282, 4285, 4305, 4325,
+ 4345, 4365, 4385, 4403, 4413, 4416, 4426, 4444,
+ 4447, 4465, 4468, 4476, 4485, 4494, 4497, 4506,
+ 4537, 4540, 4571, 4589, 4599, 4602, 4612, 4630,
+ 4633, 4651, 4654, 4662, 4671, 4688, 4691, 4702,
+ 4714, 4726, 4738, 4747, 4758, 4771, 4779, 4788,
+ 4796, 4805, 4813, 4822, 4831, 4839, 4848, 4857,
+ 4865, 4874, 4882, 4895, 4908, 4920, 4932, 4944,
+ 4956, 4965, 4975, 4988, 5001, 5014, 5022, 5031,
+ 5040, 5048, 5056, 5059, 5079, 5099, 5119, 5139,
+ 5159, 5179, 5199, 5219, 5237, 5247, 5250, 5260,
+ 5278, 5281, 5299, 5316, 5319, 5339, 5359, 5379,
+ 5399, 5419, 5437, 5447, 5450, 5460, 5478, 5481,
+ 5499, 5502, 5510, 5519, 5522, 5542, 5562, 5582,
+ 5602, 5620, 5630, 5633, 5643, 5661, 5664, 5682,
+ 5685, 5693, 5702, 5705, 5725, 5745, 5765, 5785,
+ 5805, 5823, 5833, 5836, 5846, 5864, 5867, 5885,
+ 5888, 5896, 5905, 5908, 5928, 5948, 5966, 5976,
+ 5979, 5989, 6007, 6010, 6028, 6031, 6039, 6048,
+ 6057, 6061, 6070, 6101, 6105, 6136, 6154, 6164,
+ 6168, 6178, 6196, 6200, 6218, 6222, 6230, 6247,
+ 6251, 6266, 6273, 6277, 6284, 6312, 6316, 6344,
+ 6361, 6365, 6382, 6397, 6401, 6416, 6420, 6425,
+ 6439, 6445, 6449, 6455, 6459, 6476, 6493, 6510,
+ 6527, 6542, 6549, 6553, 6560, 6575, 6579, 6594,
+ 6598, 6603, 6610, 6618, 6626, 6634, 6639, 6646,
+ 6655, 6659, 6664, 6668, 6673, 6677, 6682, 6687,
+ 6691, 6697, 6702, 6706, 6711, 6715, 6724, 6733,
+ 6741, 6749, 6757, 6765, 6770, 6776, 6785, 6794,
+ 6803, 6807, 6812, 6817, 6821, 6825, 6829, 6846,
+ 6863, 6880, 6897, 6914, 6929, 6936, 6940, 6947,
+ 6962, 6966, 6981, 6985, 6990, 6999, 7002, 7011,
+ 7015, 7032, 7049, 7064, 7071, 7075, 7082, 7097,
+ 7101, 7116, 7120, 7137, 7154, 7171, 7188, 7203,
+ 7210, 7214, 7221, 7236, 7240, 7255, 7259, 7264,
+ 7273, 7276, 7285, 7288, 7297, 7328, 7331, 7362,
+ 7380, 7390, 7393, 7403, 7421, 7424, 7442, 7445,
+ 7453, 7462, 7479, 7488, 7491, 7502, 7514, 7526,
+ 7538, 7547, 7558, 7571, 7579, 7588, 7596, 7605,
+ 7613, 7622, 7631, 7639, 7648, 7657, 7665, 7674,
+ 7682, 7695, 7708, 7720, 7732, 7744, 7756, 7765,
+ 7775, 7788, 7801, 7814, 7822, 7831, 7840, 7848,
+ 7856, 7859, 7879, 7899, 7919, 7939, 7959, 7979,
+ 7999, 8019, 8037, 8047, 8050, 8060, 8078, 8081,
+ 8099, 8116, 8119, 8139, 8159, 8179, 8199, 8219,
+ 8237, 8247, 8250, 8260, 8278, 8281, 8299, 8302,
+ 8310, 8319, 8322, 8342, 8362, 8382, 8402, 8420,
+ 8430, 8433, 8443, 8461, 8464, 8482, 8485, 8493,
+ 8502, 8505, 8525, 8545, 8565, 8585, 8605, 8623,
+ 8633, 8636, 8646, 8664, 8667, 8685, 8688, 8696,
+ 8705, 8708, 8728, 8748, 8766, 8776, 8779, 8789,
+ 8807, 8810, 8828, 8831, 8839, 8848, 8851, 8871,
+ 8891, 8911, 8931, 8949, 8959, 8962, 8972, 8990,
+ 8993, 9011, 9014, 9022, 9031, 9034, 9054, 9074,
+ 9094, 9114, 9132, 9142, 9145, 9155, 9177, 9180,
+ 9202, 9221, 9240, 9259, 9278, 9287, 9306, 9325,
+ 9328, 9332, 9349, 9366, 9383, 9400, 9415, 9422,
+ 9426, 9433, 9452, 9456, 9475, 9491, 9507, 9523,
+ 9539, 9545, 9561, 9577, 9581, 9598, 9615, 9632,
+ 9649, 9664, 9671, 9675, 9682, 9697, 9701, 9716,
+ 9720, 9725, 9734, 9743, 9747, 9756, 9773, 9790,
+ 9807, 9824, 9841, 9856, 9863, 9867, 9874, 9889,
+ 9893, 9908, 9912, 9917, 9924, 9932, 9940, 9948,
+ 9953, 9960, 9969, 9973, 9978, 9982, 9987, 9991,
+ 9996, 10001, 10005, 10011, 10016, 10020, 10025, 10029,
+ 10038, 10047, 10055, 10063, 10071, 10079, 10084, 10090,
+ 10099, 10108, 10117, 10121, 10126, 10131, 10135, 10139,
+ 10143, 10160, 10177, 10192, 10199, 10203, 10210, 10225,
+ 10229, 10244, 10248, 10253, 10262, 10271, 10275, 10284,
+ 10288, 10305, 10322, 10339, 10356, 10371, 10378, 10382,
+ 10389, 10404, 10408, 10423, 10427, 10432, 10436, 10453,
+ 10470, 10487, 10504, 10519, 10526, 10530, 10537, 10556,
+ 10560, 10579, 10595, 10611, 10627, 10643, 10649, 10665,
+ 10681, 10685, 10689, 10706, 10723, 10740, 10757, 10774,
+ 10791, 10808, 10823, 10830, 10834, 10841, 10856, 10860,
+ 10875, 10889, 10893, 10904, 10916, 10928, 10940, 10949,
+ 10960, 10973, 10981, 10990, 10998, 11007, 11015, 11024,
+ 11033, 11041, 11050, 11059, 11067, 11076, 11084, 11097,
+ 11110, 11122, 11134, 11146, 11158, 11167, 11177, 11190,
+ 11203, 11216, 11224, 11233, 11242, 11250, 11258, 11262,
+ 11282, 11302, 11322, 11342, 11362, 11382, 11402, 11422,
+ 11440, 11450, 11454, 11464, 11482, 11486, 11504, 11521,
+ 11525, 11545, 11565, 11585, 11605, 11625, 11643, 11653,
+ 11657, 11667, 11685, 11689, 11707, 11711, 11719, 11723,
+ 11743, 11763, 11783, 11803, 11821, 11831, 11835, 11845,
+ 11863, 11867, 11885, 11889, 11897, 11901, 11921, 11941,
+ 11961, 11981, 12001, 12019, 12029, 12033, 12043, 12061,
+ 12065, 12083, 12087, 12095, 12099, 12119, 12139, 12157,
+ 12167, 12171, 12181, 12199, 12203, 12221, 12225, 12245,
+ 12265, 12285, 12305, 12323, 12333, 12337, 12347, 12365,
+ 12369, 12387, 12391, 12399, 12403, 12423, 12443, 12463,
+ 12483, 12501, 12511, 12515, 12525, 12547, 12551, 12573,
+ 12592, 12611, 12630, 12649, 12658, 12677, 12696, 12700,
+ 12703, 12723, 12743, 12763, 12783, 12801, 12811, 12814,
+ 12824, 12842, 12845, 12863, 12866, 12874, 12883, 12886,
+ 12906, 12926, 12946, 12966, 12984, 12994, 12997, 13007,
+ 13029, 13032, 13054, 13073, 13092, 13111, 13130, 13139,
+ 13158, 13177, 13180, 13183, 13203, 13223, 13241, 13251,
+ 13254, 13264, 13282, 13285, 13303, 13306, 13314, 13323,
+ 13326, 13346, 13366, 13386, 13406, 13424, 13434, 13437,
+ 13447, 13465, 13468, 13486, 13489, 13497, 13506, 13509,
+ 13529, 13549, 13569, 13589, 13607, 13617, 13620, 13630,
+ 13652, 13655, 13677, 13696, 13715, 13734, 13753, 13762,
+ 13781, 13800, 13803, 13807, 13824, 13841, 13858, 13875,
+ 13890, 13897, 13901, 13908, 13923, 13927, 13942, 13946,
+ 13963, 13980, 13997, 14014, 14031, 14048, 14065, 14080,
+ 14087, 14091, 14098, 14113, 14117, 14132, 14146, 14150,
+ 14161, 14173, 14185, 14197, 14206, 14217, 14230, 14238,
+ 14247, 14255, 14264, 14272, 14281, 14290, 14298, 14307,
+ 14316, 14324, 14333, 14341, 14354, 14367, 14379, 14391,
+ 14403, 14415, 14424, 14434, 14447, 14460, 14473, 14481,
+ 14490, 14499, 14507, 14515, 14519, 14539, 14559, 14579,
+ 14599, 14619, 14639, 14659, 14679, 14697, 14707, 14711,
+ 14721, 14739, 14743, 14761, 14778, 14782, 14802, 14822,
+ 14842, 14862, 14882, 14900, 14910, 14914, 14924, 14942,
+ 14946, 14964, 14968, 14988, 15008, 15028, 15048, 15066,
+ 15076, 15080, 15090, 15108, 15112, 15130, 15134, 15142,
+ 15146, 15166, 15186, 15206, 15226, 15246, 15264, 15274,
+ 15278, 15288, 15306, 15310, 15328, 15332, 15340, 15344,
+ 15364, 15384, 15402, 15412, 15416, 15426, 15444, 15448,
+ 15466, 15470, 15478, 15482, 15502, 15522, 15542, 15562,
+ 15580, 15590, 15594, 15604, 15622, 15626, 15644, 15648,
+ 15656, 15660, 15680, 15700, 15720, 15740, 15758, 15768,
+ 15772, 15782, 15804, 15808, 15830, 15849, 15868, 15887,
+ 15906, 15915, 15934, 15953, 15957, 15960, 15980, 16000,
+ 16020, 16040, 16058, 16068, 16071, 16081, 16099, 16102,
+ 16120, 16123, 16131, 16134, 16154, 16174, 16194, 16214,
+ 16234, 16252, 16262, 16265, 16275, 16293, 16296, 16314,
+ 16317, 16325, 16328, 16348, 16368, 16386, 16396, 16399,
+ 16409, 16427, 16430, 16448, 16451, 16459, 16468, 16471,
+ 16491, 16511, 16531, 16551, 16569, 16579, 16582, 16592,
+ 16610, 16613, 16631, 16634, 16642, 16645, 16665, 16685,
+ 16705, 16725, 16743, 16753, 16756, 16766, 16788, 16791,
+ 16813, 16832, 16851, 16870, 16889, 16898, 16917, 16936,
+ 16939, 16942, 16958, 16974, 16990, 17006, 17020, 17026,
+ 17029, 17035, 17050, 17053, 17068, 17071, 17076, 17083,
+ 17086, 17102, 17118, 17134, 17150, 17166, 17182, 17198,
+ 17212, 17218, 17221, 17227, 17242, 17245, 17260, 17273,
+ 17276, 17292, 17308, 17324, 17340, 17356, 17370, 17376,
+ 17379, 17385, 17400, 17403, 17418, 17421, 17426, 17433,
+ 17440, 17444, 17449, 17458, 17461, 17470, 17473, 17482,
+ 17513, 17516, 17547, 17565, 17575, 17578, 17588, 17606,
+ 17609, 17627, 17644, 17653, 17656, 17667, 17679, 17691,
+ 17703, 17712, 17723, 17736, 17744, 17753, 17761, 17770,
+ 17778, 17787, 17796, 17804, 17813, 17822, 17830, 17839,
+ 17847, 17860, 17873, 17885, 17897, 17909, 17921, 17930,
+ 17940, 17953, 17966, 17979, 17987, 17996, 18005, 18013,
+ 18021, 18024, 18044, 18064, 18084, 18104, 18124, 18144,
+ 18164, 18184, 18202, 18212, 18215, 18225, 18243, 18246,
+ 18264, 18281, 18284, 18304, 18324, 18344, 18364, 18384,
+ 18402, 18412, 18415, 18425, 18443, 18446, 18464, 18467,
+ 18475, 18484, 18487, 18507, 18527, 18547, 18567, 18585,
+ 18595, 18598, 18608, 18626, 18629, 18647, 18650, 18670,
+ 18690, 18710, 18730, 18750, 18768, 18778, 18781, 18791,
+ 18809, 18812, 18830, 18833, 18853, 18873, 18891, 18901,
+ 18904, 18914, 18932, 18935, 18953, 18956, 18964, 18973,
+ 18976, 18996, 19016, 19036, 19056, 19074, 19084, 19087,
+ 19097, 19115, 19118, 19136, 19139, 19159, 19179, 19199,
+ 19219, 19237, 19247, 19250, 19260, 19282, 19285, 19307,
+ 19326, 19345, 19364, 19383, 19392, 19411, 19430, 19433,
+ 19436, 19452, 19468, 19482, 19488, 19491, 19497, 19512,
+ 19515, 19530, 19533, 19538, 19545, 19552, 19556, 19561,
+ 19564, 19568, 19572, 19576, 19580, 19584, 19588, 19591,
+ 19595, 19598, 19601, 19603, 19607, 19611, 19615, 19619,
+ 19646, 19650, 19654, 19658, 19662, 19689, 19693, 19697,
+ 19701, 19705, 19732, 19736, 19740, 19744, 19748, 19775,
+ 19779, 19783, 19787, 19790, 19817, 19821, 19825, 19829,
+ 19833, 19860, 19864, 19868, 19895, 19900, 19927, 19954,
+ 19958, 19962, 19966, 19970, 19974, 20001, 20005, 20009,
+ 20036, 20040, 20044, 20048, 20051, 20056, 20061, 20066,
+ 20071, 20076, 20081, 20109, 20114, 20119, 20147, 20152,
+ 20157, 20162, 20190, 20195, 20200, 20205, 20232, 20259,
+ 20263, 20267, 20271, 20275, 20279, 20306, 20310, 20314,
+ 20341, 20345, 20349, 20353, 20380, 20384, 20388, 20392,
+ 20419, 20423, 20427, 20431, 20435, 20439, 20443, 20447,
+ 20451, 20478, 20505, 20509, 20513, 20540, 20544, 20548,
+ 20552, 20579, 20583, 20587, 20591, 20618, 20622, 20626,
+ 20630, 20657, 20661, 20665, 20669, 20674, 20679, 20684,
+ 20689, 20694, 20722, 20727, 20732, 20760, 20765, 20770,
+ 20775, 20803, 20808, 20813, 20818, 20846, 20851, 20856,
+ 20861, 20888, 20916, 20921, 20926, 20954, 20959, 20964,
+ 20969, 20996, 21023, 21027, 21031, 21035, 21039, 21043,
+ 21070, 21074, 21078, 21105, 21109, 21113, 21117, 21144,
+ 21148, 21152, 21156, 21183, 21187, 21191, 21195, 21222,
+ 21226, 21230, 21234, 21261, 21265, 21269, 21273, 21300,
+ 21304, 21308, 21335, 21363, 21368, 21373, 21401, 21406,
+ 21411, 21416, 21444, 21449, 21454, 21459, 21487, 21492,
+ 21497, 21502, 21530, 21558, 21563, 21568, 21573, 21601,
+ 21606, 21611, 21639, 21667, 21672, 21677, 21705, 21733,
+ 21738, 21743, 21771, 21776, 21781, 21786, 21814, 21819,
+ 21824, 21829, 21857, 21862, 21867, 21872, 21900, 21905,
+ 21910, 21938, 21943, 21948, 21953, 21981, 21986, 21991,
+ 22019, 22046, 22050, 22054, 22058, 22085, 22089, 22093,
+ 22120, 22147, 22151, 22155, 22159, 22186, 22190, 22194,
+ 22198, 22225, 22229, 22233, 22260, 22288, 22293, 22298,
+ 22326, 22331, 22336, 22364, 22392, 22397, 22402, 22430,
+ 22435, 22440, 22468, 22473, 22478, 22483, 22511, 22516,
+ 22521, 22526, 22554, 22559, 22564, 22569, 22597, 22602,
+ 22607, 22612, 22640, 22645, 22650, 22678, 22705, 22709,
+ 22713, 22717, 22744, 22748, 22752, 22756, 22783, 22787,
+ 22791, 22795, 22822, 22826, 22830, 22834, 22861, 22865,
+ 22869, 22896, 22923, 22927, 22931, 22935, 22962, 22966,
+ 22970, 22997, 23001, 23005, 23009, 23014, 23041, 23068,
+ 23072, 23076, 23080, 23084, 23111, 23115, 23119, 23146,
+ 23150, 23154, 23158, 23185, 23189, 23193, 23220, 23224,
+ 23228, 23255, 23259, 23263, 23267, 23294, 23298, 23302,
+ 23329, 23333, 23337, 23364, 23391, 23395, 23399, 23403,
+ 23408
+};
+
+static const short _thttp_machine_parser_header_WWW_Authenticate_indicies[] = {
+ 0, 2, 0, 2, 1, 3, 3, 1,
+ 4, 4, 1, 5, 5, 1, 6, 6,
+ 1, 7, 1, 8, 8, 1, 9, 9,
+ 1, 10, 10, 1, 11, 11, 1, 12,
+ 12, 1, 13, 13, 1, 14, 14, 1,
+ 15, 15, 1, 16, 16, 1, 17, 17,
+ 1, 18, 18, 1, 19, 19, 1, 19,
+ 19, 20, 1, 22, 23, 22, 24, 25,
+ 24, 25, 21, 26, 21, 27, 26, 21,
+ 22, 28, 22, 24, 25, 24, 25, 21,
+ 29, 26, 21, 30, 26, 30, 24, 25,
+ 24, 25, 21, 26, 31, 31, 21, 26,
+ 32, 32, 21, 26, 33, 33, 21, 26,
+ 34, 34, 21, 35, 36, 35, 21, 37,
+ 38, 37, 39, 39, 39, 40, 41, 42,
+ 43, 44, 45, 46, 40, 41, 42, 43,
+ 44, 45, 46, 39, 39, 39, 39, 39,
+ 39, 21, 47, 26, 21, 48, 26, 48,
+ 39, 39, 39, 40, 41, 42, 43, 44,
+ 45, 46, 40, 41, 42, 43, 44, 45,
+ 46, 39, 39, 39, 39, 39, 39, 21,
+ 49, 50, 49, 51, 51, 51, 52, 53,
+ 51, 51, 51, 51, 51, 21, 54, 55,
+ 54, 56, 53, 21, 57, 26, 21, 58,
+ 26, 58, 56, 53, 21, 56, 59, 56,
+ 39, 39, 39, 40, 60, 42, 43, 61,
+ 45, 46, 40, 60, 42, 43, 61, 45,
+ 46, 39, 39, 39, 39, 39, 39, 21,
+ 62, 26, 21, 63, 26, 63, 39, 39,
+ 39, 40, 60, 42, 43, 61, 45, 46,
+ 40, 60, 42, 43, 61, 45, 46, 39,
+ 39, 39, 39, 39, 39, 21, 49, 50,
+ 49, 51, 51, 51, 52, 53, 64, 64,
+ 51, 51, 51, 51, 51, 21, 65, 26,
+ 21, 49, 50, 49, 51, 51, 51, 52,
+ 53, 66, 66, 51, 51, 51, 51, 51,
+ 21, 53, 67, 53, 68, 69, 68, 68,
+ 70, 68, 68, 68, 68, 68, 68, 21,
+ 71, 26, 21, 72, 73, 72, 68, 69,
+ 68, 68, 70, 68, 68, 68, 68, 68,
+ 68, 21, 74, 26, 21, 75, 26, 75,
+ 69, 21, 76, 77, 78, 21, 21, 21,
+ 69, 79, 26, 21, 80, 81, 80, 52,
+ 21, 82, 83, 82, 56, 21, 84, 26,
+ 21, 85, 26, 85, 56, 21, 86, 26,
+ 21, 49, 50, 49, 51, 51, 51, 52,
+ 53, 87, 87, 51, 51, 51, 51, 51,
+ 21, 49, 50, 49, 51, 51, 51, 52,
+ 53, 88, 88, 51, 51, 51, 51, 51,
+ 21, 49, 50, 49, 51, 51, 51, 52,
+ 53, 89, 89, 51, 51, 51, 51, 51,
+ 21, 49, 50, 49, 51, 51, 51, 52,
+ 53, 90, 90, 51, 51, 51, 51, 51,
+ 21, 91, 92, 91, 51, 51, 51, 52,
+ 93, 51, 51, 51, 51, 51, 21, 94,
+ 95, 94, 56, 93, 21, 96, 26, 21,
+ 97, 26, 97, 56, 93, 21, 98, 99,
+ 98, 68, 100, 68, 68, 70, 68, 68,
+ 68, 68, 68, 68, 21, 101, 26, 21,
+ 102, 103, 102, 68, 100, 68, 68, 70,
+ 68, 68, 68, 68, 68, 68, 21, 104,
+ 26, 21, 105, 26, 105, 106, 21, 107,
+ 108, 109, 21, 21, 21, 106, 110, 26,
+ 21, 111, 112, 111, 113, 21, 26, 106,
+ 106, 21, 80, 81, 80, 68, 68, 68,
+ 52, 68, 68, 68, 68, 68, 21, 26,
+ 115, 114, 114, 114, 21, 26, 117, 77,
+ 116, 116, 116, 21, 26, 117, 77, 118,
+ 118, 118, 21, 26, 117, 77, 119, 119,
+ 119, 21, 26, 117, 77, 21, 26, 121,
+ 120, 114, 114, 21, 26, 122, 117, 77,
+ 123, 116, 116, 21, 26, 124, 21, 26,
+ 125, 126, 21, 26, 127, 21, 26, 128,
+ 129, 21, 26, 130, 21, 26, 77, 131,
+ 21, 26, 77, 132, 21, 26, 77, 21,
+ 26, 128, 133, 21, 26, 128, 21, 26,
+ 125, 134, 21, 26, 125, 21, 26, 122,
+ 117, 77, 135, 118, 118, 21, 26, 122,
+ 117, 77, 119, 119, 119, 21, 26, 137,
+ 77, 136, 136, 136, 21, 26, 139, 77,
+ 138, 138, 138, 21, 26, 139, 77, 140,
+ 140, 140, 21, 26, 139, 77, 141, 141,
+ 141, 21, 26, 139, 77, 21, 26, 142,
+ 136, 136, 21, 26, 122, 139, 77, 143,
+ 138, 138, 21, 26, 122, 139, 77, 144,
+ 140, 140, 21, 26, 122, 139, 77, 141,
+ 141, 141, 21, 26, 145, 21, 26, 122,
+ 146, 21, 26, 122, 147, 21, 26, 122,
+ 21, 26, 121, 21, 148, 26, 21, 49,
+ 50, 49, 51, 51, 51, 52, 53, 149,
+ 149, 51, 51, 51, 51, 51, 21, 49,
+ 50, 49, 51, 51, 51, 52, 53, 150,
+ 150, 51, 51, 51, 51, 51, 21, 49,
+ 50, 49, 51, 51, 51, 52, 53, 151,
+ 151, 51, 51, 51, 51, 51, 21, 49,
+ 50, 49, 51, 51, 51, 52, 53, 152,
+ 152, 51, 51, 51, 51, 51, 21, 49,
+ 50, 49, 51, 51, 51, 52, 53, 153,
+ 153, 51, 51, 51, 51, 51, 21, 154,
+ 155, 154, 51, 51, 51, 52, 156, 51,
+ 51, 51, 51, 51, 21, 157, 158, 157,
+ 56, 156, 21, 159, 26, 21, 160, 26,
+ 160, 56, 156, 21, 161, 162, 161, 68,
+ 163, 68, 68, 70, 68, 68, 68, 68,
+ 68, 68, 21, 164, 26, 21, 165, 166,
+ 165, 68, 163, 68, 68, 70, 68, 68,
+ 68, 68, 68, 68, 21, 167, 26, 21,
+ 168, 26, 168, 169, 21, 170, 171, 172,
+ 21, 21, 21, 169, 173, 26, 21, 174,
+ 175, 174, 176, 21, 26, 169, 169, 21,
+ 177, 26, 21, 49, 50, 49, 51, 51,
+ 51, 52, 53, 178, 178, 51, 51, 51,
+ 51, 51, 21, 49, 50, 49, 51, 51,
+ 51, 52, 53, 179, 179, 51, 51, 51,
+ 51, 51, 21, 180, 181, 180, 51, 51,
+ 51, 52, 182, 51, 51, 51, 51, 51,
+ 21, 183, 184, 183, 56, 182, 21, 185,
+ 26, 21, 186, 26, 186, 56, 182, 21,
+ 182, 187, 182, 68, 188, 68, 68, 70,
+ 68, 68, 68, 68, 68, 68, 21, 189,
+ 26, 21, 190, 191, 190, 68, 188, 68,
+ 68, 70, 68, 68, 68, 68, 68, 68,
+ 21, 192, 26, 21, 193, 26, 193, 188,
+ 21, 196, 197, 198, 195, 195, 195, 194,
+ 201, 202, 203, 200, 200, 200, 199, 204,
+ 202, 200, 205, 204, 202, 200, 206, 207,
+ 206, 56, 21, 208, 26, 21, 209, 210,
+ 209, 56, 21, 49, 50, 49, 51, 51,
+ 51, 52, 53, 211, 211, 51, 51, 51,
+ 51, 51, 21, 49, 50, 49, 51, 51,
+ 51, 52, 53, 212, 212, 51, 51, 51,
+ 51, 51, 21, 49, 50, 49, 51, 51,
+ 51, 52, 53, 213, 213, 51, 51, 51,
+ 51, 51, 21, 49, 50, 49, 51, 51,
+ 51, 52, 53, 214, 214, 51, 51, 51,
+ 51, 51, 21, 215, 216, 215, 51, 51,
+ 51, 52, 217, 51, 51, 51, 51, 51,
+ 21, 218, 219, 218, 56, 217, 21, 220,
+ 26, 21, 221, 26, 221, 56, 217, 21,
+ 222, 223, 222, 68, 224, 68, 68, 70,
+ 68, 68, 68, 68, 68, 68, 21, 225,
+ 26, 21, 226, 227, 226, 68, 224, 68,
+ 68, 70, 68, 68, 68, 68, 68, 68,
+ 21, 228, 26, 21, 229, 26, 229, 230,
+ 21, 231, 232, 233, 21, 21, 21, 230,
+ 234, 26, 21, 235, 236, 235, 237, 21,
+ 26, 230, 230, 21, 238, 26, 21, 49,
+ 50, 49, 51, 51, 51, 52, 53, 239,
+ 239, 51, 51, 51, 51, 51, 21, 49,
+ 50, 49, 51, 51, 51, 52, 53, 240,
+ 240, 51, 51, 51, 51, 51, 21, 49,
+ 50, 49, 51, 51, 51, 52, 53, 241,
+ 241, 51, 51, 51, 51, 51, 21, 49,
+ 50, 49, 51, 51, 51, 52, 53, 242,
+ 242, 51, 51, 51, 51, 51, 21, 243,
+ 244, 243, 51, 51, 51, 52, 245, 51,
+ 51, 51, 51, 51, 21, 246, 247, 246,
+ 56, 245, 21, 248, 26, 21, 249, 26,
+ 249, 56, 245, 21, 245, 250, 245, 68,
+ 69, 68, 68, 251, 252, 70, 251, 252,
+ 68, 68, 68, 68, 68, 68, 21, 253,
+ 26, 21, 254, 73, 254, 68, 69, 68,
+ 68, 251, 252, 70, 251, 252, 68, 68,
+ 68, 68, 68, 68, 21, 80, 81, 80,
+ 68, 68, 68, 52, 255, 255, 68, 68,
+ 68, 68, 68, 21, 80, 81, 80, 68,
+ 68, 68, 52, 256, 256, 68, 68, 68,
+ 68, 68, 21, 80, 81, 80, 68, 68,
+ 68, 52, 257, 257, 68, 68, 68, 68,
+ 68, 21, 80, 81, 80, 68, 68, 68,
+ 52, 258, 258, 68, 68, 68, 68, 68,
+ 21, 259, 260, 259, 261, 21, 80, 81,
+ 80, 68, 68, 68, 52, 262, 262, 68,
+ 68, 68, 68, 68, 21, 80, 81, 80,
+ 68, 68, 68, 52, 257, 257, 68, 68,
+ 68, 68, 68, 21, 263, 26, 21, 264,
+ 204, 202, 200, 204, 265, 199, 199, 200,
+ 266, 267, 266, 77, 268, 78, 21, 21,
+ 69, 269, 26, 21, 270, 271, 270, 77,
+ 268, 78, 21, 21, 69, 272, 26, 21,
+ 273, 76, 273, 77, 268, 78, 21, 21,
+ 69, 268, 274, 268, 275, 77, 275, 275,
+ 276, 277, 278, 279, 280, 281, 282, 78,
+ 276, 277, 278, 279, 280, 281, 282, 275,
+ 21, 21, 275, 275, 275, 275, 275, 69,
+ 283, 26, 21, 284, 76, 284, 275, 77,
+ 275, 275, 276, 277, 278, 279, 280, 281,
+ 282, 78, 276, 277, 278, 279, 280, 281,
+ 282, 275, 21, 21, 275, 275, 275, 275,
+ 275, 69, 285, 286, 285, 287, 77, 287,
+ 287, 288, 289, 78, 287, 21, 21, 287,
+ 287, 287, 287, 69, 290, 291, 290, 77,
+ 268, 289, 78, 21, 21, 69, 292, 26,
+ 21, 293, 76, 293, 77, 268, 289, 78,
+ 21, 21, 69, 289, 294, 289, 295, 296,
+ 295, 295, 297, 78, 295, 21, 21, 295,
+ 295, 295, 295, 295, 69, 298, 26, 21,
+ 299, 300, 299, 295, 296, 295, 295, 297,
+ 78, 295, 21, 21, 295, 295, 295, 295,
+ 295, 69, 301, 26, 21, 302, 76, 302,
+ 296, 78, 21, 21, 69, 303, 304, 303,
+ 77, 288, 78, 21, 21, 69, 305, 306,
+ 305, 77, 268, 78, 21, 21, 69, 307,
+ 26, 21, 26, 69, 69, 21, 303, 304,
+ 303, 295, 77, 295, 295, 288, 78, 295,
+ 21, 21, 295, 295, 295, 295, 69, 76,
+ 77, 309, 78, 21, 21, 21, 308, 308,
+ 308, 69, 76, 77, 311, 78, 296, 21,
+ 21, 21, 310, 310, 310, 69, 76, 77,
+ 311, 78, 296, 21, 21, 21, 312, 312,
+ 312, 69, 76, 77, 311, 78, 296, 21,
+ 21, 21, 313, 313, 313, 69, 76, 77,
+ 311, 78, 296, 21, 21, 21, 69, 76,
+ 77, 315, 78, 21, 21, 21, 314, 308,
+ 308, 69, 76, 77, 316, 311, 78, 296,
+ 21, 21, 21, 317, 310, 310, 69, 76,
+ 77, 78, 21, 21, 21, 318, 69, 76,
+ 77, 319, 78, 21, 21, 21, 320, 69,
+ 76, 77, 78, 21, 21, 21, 321, 69,
+ 76, 77, 322, 78, 21, 21, 21, 323,
+ 69, 76, 77, 78, 21, 21, 21, 324,
+ 69, 76, 77, 78, 296, 21, 21, 21,
+ 325, 69, 76, 77, 78, 296, 21, 21,
+ 21, 326, 69, 76, 77, 78, 296, 21,
+ 21, 21, 69, 76, 77, 322, 78, 21,
+ 21, 21, 327, 69, 76, 77, 322, 78,
+ 21, 21, 21, 69, 76, 77, 319, 78,
+ 21, 21, 21, 328, 69, 76, 77, 319,
+ 78, 21, 21, 21, 69, 76, 77, 316,
+ 311, 78, 296, 21, 21, 21, 329, 312,
+ 312, 69, 76, 77, 316, 311, 78, 296,
+ 21, 21, 21, 313, 313, 313, 69, 76,
+ 77, 331, 78, 296, 21, 21, 21, 330,
+ 330, 330, 69, 76, 77, 333, 78, 296,
+ 21, 21, 21, 332, 332, 332, 69, 76,
+ 77, 333, 78, 296, 21, 21, 21, 334,
+ 334, 334, 69, 76, 77, 333, 78, 296,
+ 21, 21, 21, 335, 335, 335, 69, 76,
+ 77, 333, 78, 296, 21, 21, 21, 69,
+ 76, 77, 78, 21, 21, 21, 336, 330,
+ 330, 69, 76, 77, 316, 333, 78, 296,
+ 21, 21, 21, 337, 332, 332, 69, 76,
+ 77, 316, 333, 78, 296, 21, 21, 21,
+ 338, 334, 334, 69, 76, 77, 316, 333,
+ 78, 296, 21, 21, 21, 335, 335, 335,
+ 69, 76, 77, 78, 21, 21, 21, 339,
+ 69, 76, 77, 316, 78, 21, 21, 21,
+ 340, 69, 76, 77, 316, 78, 21, 21,
+ 21, 341, 69, 76, 77, 316, 78, 21,
+ 21, 21, 69, 76, 77, 315, 78, 21,
+ 21, 21, 69, 342, 26, 21, 285, 286,
+ 285, 287, 77, 287, 287, 288, 289, 343,
+ 78, 343, 287, 21, 21, 287, 287, 287,
+ 287, 69, 285, 286, 285, 287, 77, 287,
+ 287, 288, 289, 344, 78, 344, 287, 21,
+ 21, 287, 287, 287, 287, 69, 285, 286,
+ 285, 287, 77, 287, 287, 288, 289, 345,
+ 78, 345, 287, 21, 21, 287, 287, 287,
+ 287, 69, 285, 286, 285, 287, 77, 287,
+ 287, 288, 289, 346, 78, 346, 287, 21,
+ 21, 287, 287, 287, 287, 69, 285, 286,
+ 285, 287, 77, 287, 287, 288, 289, 347,
+ 78, 347, 287, 21, 21, 287, 287, 287,
+ 287, 69, 285, 286, 285, 287, 77, 287,
+ 287, 288, 289, 348, 78, 348, 287, 21,
+ 21, 287, 287, 287, 287, 69, 285, 286,
+ 285, 287, 77, 287, 287, 288, 289, 349,
+ 78, 349, 287, 21, 21, 287, 287, 287,
+ 287, 69, 285, 286, 285, 287, 77, 287,
+ 287, 288, 289, 350, 78, 350, 287, 21,
+ 21, 287, 287, 287, 287, 69, 351, 352,
+ 351, 287, 77, 287, 287, 288, 353, 78,
+ 287, 21, 21, 287, 287, 287, 287, 69,
+ 354, 355, 354, 77, 268, 353, 78, 21,
+ 21, 69, 356, 26, 21, 357, 76, 357,
+ 77, 268, 353, 78, 21, 21, 69, 353,
+ 358, 353, 359, 296, 359, 359, 297, 78,
+ 359, 21, 21, 359, 359, 359, 359, 359,
+ 69, 360, 26, 21, 361, 300, 361, 359,
+ 296, 359, 359, 297, 78, 359, 21, 21,
+ 359, 359, 359, 359, 359, 69, 362, 363,
+ 362, 364, 77, 364, 364, 365, 78, 364,
+ 21, 21, 364, 364, 364, 364, 69, 366,
+ 26, 21, 285, 286, 285, 287, 77, 287,
+ 287, 288, 289, 367, 78, 367, 287, 21,
+ 21, 287, 287, 287, 287, 69, 285, 286,
+ 285, 287, 77, 287, 287, 288, 289, 368,
+ 78, 368, 287, 21, 21, 287, 287, 287,
+ 287, 69, 285, 286, 285, 287, 77, 287,
+ 287, 288, 289, 369, 78, 369, 287, 21,
+ 21, 287, 287, 287, 287, 69, 285, 286,
+ 285, 287, 77, 287, 287, 288, 289, 370,
+ 78, 370, 287, 21, 21, 287, 287, 287,
+ 287, 69, 285, 286, 285, 287, 77, 287,
+ 287, 288, 289, 371, 78, 371, 287, 21,
+ 21, 287, 287, 287, 287, 69, 372, 373,
+ 372, 287, 77, 287, 287, 288, 374, 78,
+ 287, 21, 21, 287, 287, 287, 287, 69,
+ 375, 376, 375, 77, 268, 374, 78, 21,
+ 21, 69, 377, 26, 21, 378, 76, 378,
+ 77, 268, 374, 78, 21, 21, 69, 374,
+ 379, 374, 295, 380, 295, 295, 297, 78,
+ 295, 21, 21, 295, 295, 295, 295, 295,
+ 69, 381, 26, 21, 382, 383, 382, 295,
+ 380, 295, 295, 297, 78, 295, 21, 21,
+ 295, 295, 295, 295, 295, 69, 384, 26,
+ 21, 385, 76, 385, 380, 78, 21, 21,
+ 69, 388, 389, 388, 390, 391, 392, 387,
+ 387, 386, 395, 396, 397, 394, 394, 394,
+ 393, 398, 396, 394, 399, 398, 396, 394,
+ 400, 398, 396, 394, 398, 401, 393, 393,
+ 394, 402, 403, 402, 396, 404, 397, 394,
+ 394, 393, 405, 398, 396, 394, 406, 395,
+ 406, 396, 404, 397, 394, 394, 393, 404,
+ 407, 404, 408, 396, 408, 408, 409, 410,
+ 411, 412, 413, 414, 415, 397, 409, 410,
+ 411, 412, 413, 414, 415, 408, 394, 394,
+ 408, 408, 408, 408, 408, 393, 416, 398,
+ 396, 394, 417, 395, 417, 408, 396, 408,
+ 408, 409, 410, 411, 412, 413, 414, 415,
+ 397, 409, 410, 411, 412, 413, 414, 415,
+ 408, 394, 394, 408, 408, 408, 408, 408,
+ 393, 418, 419, 418, 420, 396, 420, 420,
+ 421, 422, 397, 420, 394, 394, 420, 420,
+ 420, 420, 393, 423, 424, 423, 396, 404,
+ 422, 397, 394, 394, 393, 425, 398, 396,
+ 394, 426, 395, 426, 396, 404, 422, 397,
+ 394, 394, 393, 422, 427, 422, 428, 401,
+ 428, 428, 429, 397, 428, 394, 394, 428,
+ 428, 428, 428, 428, 393, 430, 398, 396,
+ 394, 431, 432, 431, 428, 401, 428, 428,
+ 429, 397, 428, 394, 394, 428, 428, 428,
+ 428, 428, 393, 433, 398, 396, 394, 434,
+ 395, 434, 401, 397, 394, 394, 393, 435,
+ 436, 435, 428, 396, 428, 428, 421, 397,
+ 428, 394, 394, 428, 428, 428, 428, 393,
+ 437, 398, 396, 394, 438, 439, 438, 440,
+ 396, 440, 440, 441, 442, 440, 440, 440,
+ 440, 440, 394, 443, 444, 443, 396, 445,
+ 442, 394, 446, 398, 396, 394, 447, 398,
+ 447, 396, 445, 442, 394, 445, 448, 445,
+ 449, 396, 449, 449, 450, 451, 452, 453,
+ 454, 455, 456, 450, 451, 452, 453, 454,
+ 455, 456, 449, 449, 449, 449, 449, 449,
+ 394, 457, 398, 396, 394, 458, 398, 458,
+ 449, 396, 449, 449, 450, 451, 452, 453,
+ 454, 455, 456, 450, 451, 452, 453, 454,
+ 455, 456, 449, 449, 449, 449, 449, 449,
+ 394, 438, 439, 438, 440, 396, 440, 440,
+ 441, 442, 459, 459, 440, 440, 440, 440,
+ 440, 394, 460, 398, 396, 394, 438, 439,
+ 438, 440, 396, 440, 440, 441, 442, 461,
+ 461, 440, 440, 440, 440, 440, 394, 442,
+ 462, 442, 463, 401, 463, 463, 464, 463,
+ 463, 463, 463, 463, 463, 394, 465, 398,
+ 396, 394, 466, 467, 466, 463, 401, 463,
+ 463, 464, 463, 463, 463, 463, 463, 463,
+ 394, 468, 398, 396, 394, 469, 398, 469,
+ 401, 394, 470, 471, 470, 463, 396, 463,
+ 463, 441, 463, 463, 463, 463, 463, 394,
+ 472, 473, 472, 396, 445, 394, 474, 398,
+ 396, 394, 475, 398, 475, 396, 445, 394,
+ 476, 398, 396, 394, 438, 439, 438, 440,
+ 396, 440, 440, 441, 442, 477, 477, 440,
+ 440, 440, 440, 440, 394, 438, 439, 438,
+ 440, 396, 440, 440, 441, 442, 478, 478,
+ 440, 440, 440, 440, 440, 394, 438, 439,
+ 438, 440, 396, 440, 440, 441, 442, 479,
+ 479, 440, 440, 440, 440, 440, 394, 438,
+ 439, 438, 440, 396, 440, 440, 441, 442,
+ 480, 480, 440, 440, 440, 440, 440, 394,
+ 481, 482, 481, 440, 396, 440, 440, 441,
+ 483, 440, 440, 440, 440, 440, 394, 484,
+ 485, 484, 396, 445, 483, 394, 486, 398,
+ 396, 394, 487, 398, 487, 396, 445, 483,
+ 394, 488, 489, 488, 463, 490, 463, 463,
+ 464, 463, 463, 463, 463, 463, 463, 394,
+ 491, 398, 396, 394, 492, 493, 492, 463,
+ 490, 463, 463, 464, 463, 463, 463, 463,
+ 463, 463, 394, 494, 398, 396, 394, 495,
+ 398, 495, 496, 394, 497, 498, 497, 108,
+ 499, 109, 21, 21, 106, 500, 26, 21,
+ 501, 502, 501, 108, 499, 109, 21, 21,
+ 106, 503, 26, 21, 504, 107, 504, 108,
+ 499, 109, 21, 21, 106, 499, 505, 499,
+ 506, 108, 506, 506, 507, 508, 509, 510,
+ 511, 512, 513, 109, 507, 508, 509, 510,
+ 511, 512, 513, 506, 21, 21, 506, 506,
+ 506, 506, 506, 106, 514, 26, 21, 515,
+ 107, 515, 506, 108, 506, 506, 507, 508,
+ 509, 510, 511, 512, 513, 109, 507, 508,
+ 509, 510, 511, 512, 513, 506, 21, 21,
+ 506, 506, 506, 506, 506, 106, 516, 517,
+ 516, 518, 108, 518, 518, 519, 520, 109,
+ 518, 21, 21, 518, 518, 518, 518, 106,
+ 521, 522, 521, 108, 499, 520, 109, 21,
+ 21, 106, 523, 26, 21, 524, 107, 524,
+ 108, 499, 520, 109, 21, 21, 106, 520,
+ 525, 520, 526, 527, 526, 526, 528, 109,
+ 526, 21, 21, 526, 526, 526, 526, 526,
+ 106, 529, 26, 21, 530, 531, 530, 526,
+ 527, 526, 526, 528, 109, 526, 21, 21,
+ 526, 526, 526, 526, 526, 106, 532, 26,
+ 21, 533, 107, 533, 527, 109, 21, 21,
+ 106, 534, 535, 534, 77, 536, 78, 21,
+ 21, 69, 537, 538, 537, 526, 108, 526,
+ 526, 519, 109, 526, 21, 21, 526, 526,
+ 526, 526, 106, 539, 540, 539, 108, 499,
+ 109, 21, 21, 106, 541, 26, 21, 107,
+ 108, 543, 109, 21, 21, 21, 542, 542,
+ 542, 106, 107, 108, 545, 109, 546, 21,
+ 21, 21, 544, 544, 544, 106, 107, 108,
+ 545, 109, 546, 21, 21, 21, 547, 547,
+ 547, 106, 107, 108, 545, 109, 546, 21,
+ 21, 21, 548, 548, 548, 106, 107, 108,
+ 545, 109, 546, 21, 21, 21, 106, 107,
+ 108, 550, 109, 21, 21, 21, 549, 542,
+ 542, 106, 107, 108, 551, 545, 109, 546,
+ 21, 21, 21, 552, 544, 544, 106, 107,
+ 108, 109, 21, 21, 21, 553, 106, 107,
+ 108, 554, 109, 21, 21, 21, 555, 106,
+ 107, 108, 109, 21, 21, 21, 556, 106,
+ 107, 108, 557, 109, 21, 21, 21, 558,
+ 106, 107, 108, 109, 21, 21, 21, 559,
+ 106, 107, 108, 109, 546, 21, 21, 21,
+ 560, 106, 107, 108, 109, 546, 21, 21,
+ 21, 561, 106, 107, 108, 109, 546, 21,
+ 21, 21, 106, 537, 538, 537, 108, 519,
+ 109, 21, 21, 106, 107, 108, 557, 109,
+ 21, 21, 21, 562, 106, 107, 108, 557,
+ 109, 21, 21, 21, 106, 107, 108, 554,
+ 109, 21, 21, 21, 563, 106, 107, 108,
+ 554, 109, 21, 21, 21, 106, 107, 108,
+ 551, 545, 109, 546, 21, 21, 21, 564,
+ 547, 547, 106, 107, 108, 551, 545, 109,
+ 546, 21, 21, 21, 548, 548, 548, 106,
+ 107, 108, 566, 109, 546, 21, 21, 21,
+ 565, 565, 565, 106, 107, 108, 568, 109,
+ 546, 21, 21, 21, 567, 567, 567, 106,
+ 107, 108, 568, 109, 546, 21, 21, 21,
+ 569, 569, 569, 106, 107, 108, 568, 109,
+ 546, 21, 21, 21, 570, 570, 570, 106,
+ 107, 108, 568, 109, 546, 21, 21, 21,
+ 106, 107, 108, 109, 21, 21, 21, 571,
+ 565, 565, 106, 107, 108, 551, 568, 109,
+ 546, 21, 21, 21, 572, 567, 567, 106,
+ 107, 108, 551, 568, 109, 546, 21, 21,
+ 21, 573, 569, 569, 106, 107, 108, 551,
+ 568, 109, 546, 21, 21, 21, 570, 570,
+ 570, 106, 107, 108, 109, 21, 21, 21,
+ 574, 106, 107, 108, 551, 109, 21, 21,
+ 21, 575, 106, 107, 108, 551, 109, 21,
+ 21, 21, 576, 106, 107, 108, 551, 109,
+ 21, 21, 21, 106, 107, 108, 550, 109,
+ 21, 21, 21, 106, 577, 26, 21, 516,
+ 517, 516, 518, 108, 518, 518, 519, 520,
+ 578, 109, 578, 518, 21, 21, 518, 518,
+ 518, 518, 106, 516, 517, 516, 518, 108,
+ 518, 518, 519, 520, 579, 109, 579, 518,
+ 21, 21, 518, 518, 518, 518, 106, 516,
+ 517, 516, 518, 108, 518, 518, 519, 520,
+ 580, 109, 580, 518, 21, 21, 518, 518,
+ 518, 518, 106, 516, 517, 516, 518, 108,
+ 518, 518, 519, 520, 581, 109, 581, 518,
+ 21, 21, 518, 518, 518, 518, 106, 516,
+ 517, 516, 518, 108, 518, 518, 519, 520,
+ 582, 109, 582, 518, 21, 21, 518, 518,
+ 518, 518, 106, 516, 517, 516, 518, 108,
+ 518, 518, 519, 520, 583, 109, 583, 518,
+ 21, 21, 518, 518, 518, 518, 106, 516,
+ 517, 516, 518, 108, 518, 518, 519, 520,
+ 584, 109, 584, 518, 21, 21, 518, 518,
+ 518, 518, 106, 516, 517, 516, 518, 108,
+ 518, 518, 519, 520, 585, 109, 585, 518,
+ 21, 21, 518, 518, 518, 518, 106, 586,
+ 587, 586, 518, 108, 518, 518, 519, 588,
+ 109, 518, 21, 21, 518, 518, 518, 518,
+ 106, 589, 590, 589, 108, 499, 588, 109,
+ 21, 21, 106, 591, 26, 21, 592, 107,
+ 592, 108, 499, 588, 109, 21, 21, 106,
+ 588, 593, 588, 594, 527, 594, 594, 528,
+ 109, 594, 21, 21, 594, 594, 594, 594,
+ 594, 106, 595, 26, 21, 596, 531, 596,
+ 594, 527, 594, 594, 528, 109, 594, 21,
+ 21, 594, 594, 594, 594, 594, 106, 597,
+ 598, 597, 599, 108, 599, 599, 600, 109,
+ 599, 21, 21, 599, 599, 599, 599, 106,
+ 601, 26, 21, 516, 517, 516, 518, 108,
+ 518, 518, 519, 520, 602, 109, 602, 518,
+ 21, 21, 518, 518, 518, 518, 106, 516,
+ 517, 516, 518, 108, 518, 518, 519, 520,
+ 603, 109, 603, 518, 21, 21, 518, 518,
+ 518, 518, 106, 516, 517, 516, 518, 108,
+ 518, 518, 519, 520, 604, 109, 604, 518,
+ 21, 21, 518, 518, 518, 518, 106, 516,
+ 517, 516, 518, 108, 518, 518, 519, 520,
+ 605, 109, 605, 518, 21, 21, 518, 518,
+ 518, 518, 106, 516, 517, 516, 518, 108,
+ 518, 518, 519, 520, 606, 109, 606, 518,
+ 21, 21, 518, 518, 518, 518, 106, 607,
+ 608, 607, 518, 108, 518, 518, 519, 609,
+ 109, 518, 21, 21, 518, 518, 518, 518,
+ 106, 610, 611, 610, 108, 499, 609, 109,
+ 21, 21, 106, 612, 26, 21, 613, 107,
+ 613, 108, 499, 609, 109, 21, 21, 106,
+ 609, 614, 609, 526, 615, 526, 526, 528,
+ 109, 526, 21, 21, 526, 526, 526, 526,
+ 526, 106, 616, 26, 21, 617, 618, 617,
+ 526, 615, 526, 526, 528, 109, 526, 21,
+ 21, 526, 526, 526, 526, 526, 106, 619,
+ 26, 21, 620, 107, 620, 615, 109, 21,
+ 21, 106, 621, 622, 621, 390, 623, 392,
+ 387, 387, 386, 624, 26, 21, 516, 517,
+ 516, 518, 108, 518, 518, 519, 520, 625,
+ 109, 625, 518, 21, 21, 518, 518, 518,
+ 518, 106, 516, 517, 516, 518, 108, 518,
+ 518, 519, 520, 626, 109, 626, 518, 21,
+ 21, 518, 518, 518, 518, 106, 516, 517,
+ 516, 518, 108, 518, 518, 519, 520, 627,
+ 109, 627, 518, 21, 21, 518, 518, 518,
+ 518, 106, 516, 517, 516, 518, 108, 518,
+ 518, 519, 520, 628, 109, 628, 518, 21,
+ 21, 518, 518, 518, 518, 106, 629, 630,
+ 629, 518, 108, 518, 518, 519, 631, 109,
+ 518, 21, 21, 518, 518, 518, 518, 106,
+ 632, 633, 632, 108, 499, 631, 109, 21,
+ 21, 106, 634, 26, 21, 635, 107, 635,
+ 108, 499, 631, 109, 21, 21, 106, 636,
+ 637, 636, 526, 638, 526, 526, 528, 109,
+ 526, 21, 21, 526, 526, 526, 526, 526,
+ 106, 639, 26, 21, 640, 641, 640, 526,
+ 638, 526, 526, 528, 109, 526, 21, 21,
+ 526, 526, 526, 526, 526, 106, 642, 26,
+ 21, 643, 107, 643, 644, 109, 21, 21,
+ 106, 645, 646, 645, 108, 647, 109, 21,
+ 21, 106, 648, 26, 21, 516, 517, 516,
+ 518, 108, 518, 518, 519, 520, 649, 109,
+ 649, 518, 21, 21, 518, 518, 518, 518,
+ 106, 516, 517, 516, 518, 108, 518, 518,
+ 519, 520, 650, 109, 650, 518, 21, 21,
+ 518, 518, 518, 518, 106, 516, 517, 516,
+ 518, 108, 518, 518, 519, 520, 651, 109,
+ 651, 518, 21, 21, 518, 518, 518, 518,
+ 106, 516, 517, 516, 518, 108, 518, 518,
+ 519, 520, 652, 109, 652, 518, 21, 21,
+ 518, 518, 518, 518, 106, 516, 517, 516,
+ 518, 108, 518, 518, 519, 520, 653, 109,
+ 653, 518, 21, 21, 518, 518, 518, 518,
+ 106, 654, 655, 654, 518, 108, 518, 518,
+ 519, 656, 109, 518, 21, 21, 518, 518,
+ 518, 518, 106, 657, 658, 657, 108, 499,
+ 656, 109, 21, 21, 106, 659, 26, 21,
+ 660, 107, 660, 108, 499, 656, 109, 21,
+ 21, 106, 661, 662, 661, 526, 663, 526,
+ 526, 528, 109, 526, 21, 21, 526, 526,
+ 526, 526, 526, 106, 664, 26, 21, 665,
+ 666, 665, 526, 663, 526, 526, 528, 109,
+ 526, 21, 21, 526, 526, 526, 526, 526,
+ 106, 667, 26, 21, 668, 107, 668, 669,
+ 109, 21, 21, 106, 670, 671, 670, 171,
+ 672, 172, 21, 21, 169, 673, 674, 673,
+ 171, 675, 172, 21, 21, 169, 676, 26,
+ 21, 677, 170, 677, 171, 675, 172, 21,
+ 21, 169, 675, 678, 675, 679, 171, 679,
+ 679, 680, 681, 682, 683, 684, 685, 686,
+ 172, 680, 681, 682, 683, 684, 685, 686,
+ 679, 21, 21, 679, 679, 679, 679, 679,
+ 169, 687, 26, 21, 688, 170, 688, 679,
+ 171, 679, 679, 680, 681, 682, 683, 684,
+ 685, 686, 172, 680, 681, 682, 683, 684,
+ 685, 686, 679, 21, 21, 679, 679, 679,
+ 679, 679, 169, 689, 690, 689, 691, 171,
+ 691, 691, 692, 693, 172, 691, 21, 21,
+ 691, 691, 691, 691, 169, 694, 695, 694,
+ 171, 675, 693, 172, 21, 21, 169, 696,
+ 26, 21, 697, 170, 697, 171, 675, 693,
+ 172, 21, 21, 169, 693, 698, 693, 699,
+ 700, 699, 699, 701, 172, 699, 21, 21,
+ 699, 699, 699, 699, 699, 169, 702, 26,
+ 21, 703, 704, 703, 699, 700, 699, 699,
+ 701, 172, 699, 21, 21, 699, 699, 699,
+ 699, 699, 169, 705, 26, 21, 706, 170,
+ 706, 700, 172, 21, 21, 169, 707, 708,
+ 707, 77, 709, 78, 21, 21, 69, 710,
+ 711, 710, 699, 171, 699, 699, 692, 172,
+ 699, 21, 21, 699, 699, 699, 699, 169,
+ 712, 26, 21, 170, 171, 714, 172, 21,
+ 21, 21, 713, 713, 713, 169, 170, 171,
+ 716, 172, 717, 21, 21, 21, 715, 715,
+ 715, 169, 170, 171, 716, 172, 717, 21,
+ 21, 21, 718, 718, 718, 169, 170, 171,
+ 716, 172, 717, 21, 21, 21, 719, 719,
+ 719, 169, 170, 171, 716, 172, 717, 21,
+ 21, 21, 169, 170, 171, 721, 172, 21,
+ 21, 21, 720, 713, 713, 169, 170, 171,
+ 722, 716, 172, 717, 21, 21, 21, 723,
+ 715, 715, 169, 170, 171, 172, 21, 21,
+ 21, 724, 169, 170, 171, 725, 172, 21,
+ 21, 21, 726, 169, 170, 171, 172, 21,
+ 21, 21, 727, 169, 170, 171, 728, 172,
+ 21, 21, 21, 729, 169, 170, 171, 172,
+ 21, 21, 21, 730, 169, 170, 171, 172,
+ 717, 21, 21, 21, 731, 169, 170, 171,
+ 172, 717, 21, 21, 21, 732, 169, 170,
+ 171, 172, 717, 21, 21, 21, 169, 710,
+ 711, 710, 171, 692, 172, 21, 21, 169,
+ 170, 171, 728, 172, 21, 21, 21, 733,
+ 169, 170, 171, 728, 172, 21, 21, 21,
+ 169, 170, 171, 725, 172, 21, 21, 21,
+ 734, 169, 170, 171, 725, 172, 21, 21,
+ 21, 169, 170, 171, 722, 716, 172, 717,
+ 21, 21, 21, 735, 718, 718, 169, 170,
+ 171, 722, 716, 172, 717, 21, 21, 21,
+ 719, 719, 719, 169, 170, 171, 737, 172,
+ 717, 21, 21, 21, 736, 736, 736, 169,
+ 170, 171, 739, 172, 717, 21, 21, 21,
+ 738, 738, 738, 169, 170, 171, 739, 172,
+ 717, 21, 21, 21, 740, 740, 740, 169,
+ 170, 171, 739, 172, 717, 21, 21, 21,
+ 741, 741, 741, 169, 170, 171, 739, 172,
+ 717, 21, 21, 21, 169, 170, 171, 172,
+ 21, 21, 21, 742, 736, 736, 169, 170,
+ 171, 722, 739, 172, 717, 21, 21, 21,
+ 743, 738, 738, 169, 170, 171, 722, 739,
+ 172, 717, 21, 21, 21, 744, 740, 740,
+ 169, 170, 171, 722, 739, 172, 717, 21,
+ 21, 21, 741, 741, 741, 169, 170, 171,
+ 172, 21, 21, 21, 745, 169, 170, 171,
+ 722, 172, 21, 21, 21, 746, 169, 170,
+ 171, 722, 172, 21, 21, 21, 747, 169,
+ 170, 171, 722, 172, 21, 21, 21, 169,
+ 170, 171, 721, 172, 21, 21, 21, 169,
+ 748, 26, 21, 689, 690, 689, 691, 171,
+ 691, 691, 692, 693, 749, 172, 749, 691,
+ 21, 21, 691, 691, 691, 691, 169, 689,
+ 690, 689, 691, 171, 691, 691, 692, 693,
+ 750, 172, 750, 691, 21, 21, 691, 691,
+ 691, 691, 169, 689, 690, 689, 691, 171,
+ 691, 691, 692, 693, 751, 172, 751, 691,
+ 21, 21, 691, 691, 691, 691, 169, 689,
+ 690, 689, 691, 171, 691, 691, 692, 693,
+ 752, 172, 752, 691, 21, 21, 691, 691,
+ 691, 691, 169, 689, 690, 689, 691, 171,
+ 691, 691, 692, 693, 753, 172, 753, 691,
+ 21, 21, 691, 691, 691, 691, 169, 689,
+ 690, 689, 691, 171, 691, 691, 692, 693,
+ 754, 172, 754, 691, 21, 21, 691, 691,
+ 691, 691, 169, 689, 690, 689, 691, 171,
+ 691, 691, 692, 693, 755, 172, 755, 691,
+ 21, 21, 691, 691, 691, 691, 169, 689,
+ 690, 689, 691, 171, 691, 691, 692, 693,
+ 756, 172, 756, 691, 21, 21, 691, 691,
+ 691, 691, 169, 757, 758, 757, 691, 171,
+ 691, 691, 692, 759, 172, 691, 21, 21,
+ 691, 691, 691, 691, 169, 760, 761, 760,
+ 171, 675, 759, 172, 21, 21, 169, 762,
+ 26, 21, 763, 170, 763, 171, 675, 759,
+ 172, 21, 21, 169, 759, 764, 759, 765,
+ 700, 765, 765, 701, 172, 765, 21, 21,
+ 765, 765, 765, 765, 765, 169, 766, 26,
+ 21, 767, 704, 767, 765, 700, 765, 765,
+ 701, 172, 765, 21, 21, 765, 765, 765,
+ 765, 765, 169, 768, 769, 768, 770, 171,
+ 770, 770, 771, 172, 770, 21, 21, 770,
+ 770, 770, 770, 169, 772, 26, 21, 689,
+ 690, 689, 691, 171, 691, 691, 692, 693,
+ 773, 172, 773, 691, 21, 21, 691, 691,
+ 691, 691, 169, 689, 690, 689, 691, 171,
+ 691, 691, 692, 693, 774, 172, 774, 691,
+ 21, 21, 691, 691, 691, 691, 169, 689,
+ 690, 689, 691, 171, 691, 691, 692, 693,
+ 775, 172, 775, 691, 21, 21, 691, 691,
+ 691, 691, 169, 689, 690, 689, 691, 171,
+ 691, 691, 692, 693, 776, 172, 776, 691,
+ 21, 21, 691, 691, 691, 691, 169, 689,
+ 690, 689, 691, 171, 691, 691, 692, 693,
+ 777, 172, 777, 691, 21, 21, 691, 691,
+ 691, 691, 169, 778, 779, 778, 691, 171,
+ 691, 691, 692, 780, 172, 691, 21, 21,
+ 691, 691, 691, 691, 169, 781, 782, 781,
+ 171, 675, 780, 172, 21, 21, 169, 783,
+ 26, 21, 784, 170, 784, 171, 675, 780,
+ 172, 21, 21, 169, 780, 785, 780, 699,
+ 786, 699, 699, 701, 172, 699, 21, 21,
+ 699, 699, 699, 699, 699, 169, 787, 26,
+ 21, 788, 789, 788, 699, 786, 699, 699,
+ 701, 172, 699, 21, 21, 699, 699, 699,
+ 699, 699, 169, 790, 26, 21, 791, 170,
+ 791, 786, 172, 21, 21, 169, 792, 793,
+ 792, 390, 794, 392, 387, 387, 386, 795,
+ 26, 21, 689, 690, 689, 691, 171, 691,
+ 691, 692, 693, 796, 172, 796, 691, 21,
+ 21, 691, 691, 691, 691, 169, 689, 690,
+ 689, 691, 171, 691, 691, 692, 693, 797,
+ 172, 797, 691, 21, 21, 691, 691, 691,
+ 691, 169, 689, 690, 689, 691, 171, 691,
+ 691, 692, 693, 798, 172, 798, 691, 21,
+ 21, 691, 691, 691, 691, 169, 689, 690,
+ 689, 691, 171, 691, 691, 692, 693, 799,
+ 172, 799, 691, 21, 21, 691, 691, 691,
+ 691, 169, 800, 801, 800, 691, 171, 691,
+ 691, 692, 802, 172, 691, 21, 21, 691,
+ 691, 691, 691, 169, 803, 804, 803, 171,
+ 675, 802, 172, 21, 21, 169, 805, 26,
+ 21, 806, 170, 806, 171, 675, 802, 172,
+ 21, 21, 169, 807, 808, 807, 699, 809,
+ 699, 699, 701, 172, 699, 21, 21, 699,
+ 699, 699, 699, 699, 169, 810, 26, 21,
+ 811, 812, 811, 699, 809, 699, 699, 701,
+ 172, 699, 21, 21, 699, 699, 699, 699,
+ 699, 169, 813, 26, 21, 814, 170, 814,
+ 815, 172, 21, 21, 169, 816, 817, 816,
+ 108, 818, 109, 21, 21, 106, 819, 26,
+ 21, 689, 690, 689, 691, 171, 691, 691,
+ 692, 693, 820, 172, 820, 691, 21, 21,
+ 691, 691, 691, 691, 169, 689, 690, 689,
+ 691, 171, 691, 691, 692, 693, 821, 172,
+ 821, 691, 21, 21, 691, 691, 691, 691,
+ 169, 689, 690, 689, 691, 171, 691, 691,
+ 692, 693, 822, 172, 822, 691, 21, 21,
+ 691, 691, 691, 691, 169, 689, 690, 689,
+ 691, 171, 691, 691, 692, 693, 823, 172,
+ 823, 691, 21, 21, 691, 691, 691, 691,
+ 169, 689, 690, 689, 691, 171, 691, 691,
+ 692, 693, 824, 172, 824, 691, 21, 21,
+ 691, 691, 691, 691, 169, 825, 826, 825,
+ 691, 171, 691, 691, 692, 827, 172, 691,
+ 21, 21, 691, 691, 691, 691, 169, 828,
+ 829, 828, 171, 675, 827, 172, 21, 21,
+ 169, 830, 26, 21, 831, 170, 831, 171,
+ 675, 827, 172, 21, 21, 169, 832, 833,
+ 832, 699, 834, 699, 699, 701, 172, 699,
+ 21, 21, 699, 699, 699, 699, 699, 169,
+ 835, 26, 21, 836, 837, 836, 699, 834,
+ 699, 699, 701, 172, 699, 21, 21, 699,
+ 699, 699, 699, 699, 169, 838, 26, 21,
+ 839, 170, 839, 840, 172, 21, 21, 169,
+ 841, 842, 841, 171, 843, 172, 21, 21,
+ 169, 844, 26, 21, 689, 690, 689, 691,
+ 171, 691, 691, 692, 693, 845, 172, 845,
+ 691, 21, 21, 691, 691, 691, 691, 169,
+ 689, 690, 689, 691, 171, 691, 691, 692,
+ 693, 846, 172, 846, 691, 21, 21, 691,
+ 691, 691, 691, 169, 847, 848, 847, 691,
+ 171, 691, 691, 692, 849, 172, 691, 21,
+ 21, 691, 691, 691, 691, 169, 850, 851,
+ 850, 171, 675, 849, 172, 21, 21, 169,
+ 852, 26, 21, 853, 170, 853, 171, 675,
+ 849, 172, 21, 21, 169, 849, 854, 849,
+ 699, 855, 699, 699, 701, 172, 699, 21,
+ 21, 699, 699, 699, 699, 699, 169, 856,
+ 26, 21, 857, 858, 857, 699, 855, 699,
+ 699, 701, 172, 699, 21, 21, 699, 699,
+ 699, 699, 699, 169, 859, 26, 21, 860,
+ 170, 860, 855, 172, 21, 21, 169, 861,
+ 862, 861, 197, 863, 198, 195, 195, 194,
+ 864, 865, 864, 202, 866, 203, 200, 200,
+ 199, 867, 204, 202, 200, 868, 201, 868,
+ 202, 866, 203, 200, 200, 199, 866, 869,
+ 866, 870, 202, 870, 870, 871, 872, 873,
+ 874, 875, 876, 877, 203, 871, 872, 873,
+ 874, 875, 876, 877, 870, 200, 200, 870,
+ 870, 870, 870, 870, 199, 878, 204, 202,
+ 200, 879, 201, 879, 870, 202, 870, 870,
+ 871, 872, 873, 874, 875, 876, 877, 203,
+ 871, 872, 873, 874, 875, 876, 877, 870,
+ 200, 200, 870, 870, 870, 870, 870, 199,
+ 880, 881, 880, 882, 202, 882, 882, 883,
+ 884, 203, 882, 200, 200, 882, 882, 882,
+ 882, 199, 885, 886, 885, 202, 866, 884,
+ 203, 200, 200, 199, 887, 204, 202, 200,
+ 888, 201, 888, 202, 866, 884, 203, 200,
+ 200, 199, 884, 889, 884, 890, 265, 890,
+ 890, 891, 203, 890, 200, 200, 890, 890,
+ 890, 890, 890, 199, 892, 204, 202, 200,
+ 893, 894, 893, 890, 265, 890, 890, 891,
+ 203, 890, 200, 200, 890, 890, 890, 890,
+ 890, 199, 895, 204, 202, 200, 896, 201,
+ 896, 265, 203, 200, 200, 199, 897, 898,
+ 897, 890, 202, 890, 890, 883, 203, 890,
+ 200, 200, 890, 890, 890, 890, 199, 899,
+ 204, 202, 200, 900, 901, 900, 902, 202,
+ 902, 902, 903, 904, 902, 902, 902, 902,
+ 902, 200, 905, 906, 905, 202, 907, 904,
+ 200, 908, 204, 202, 200, 909, 204, 909,
+ 202, 907, 904, 200, 907, 910, 907, 911,
+ 202, 911, 911, 912, 913, 914, 915, 916,
+ 917, 918, 912, 913, 914, 915, 916, 917,
+ 918, 911, 911, 911, 911, 911, 911, 200,
+ 919, 204, 202, 200, 920, 204, 920, 911,
+ 202, 911, 911, 912, 913, 914, 915, 916,
+ 917, 918, 912, 913, 914, 915, 916, 917,
+ 918, 911, 911, 911, 911, 911, 911, 200,
+ 900, 901, 900, 902, 202, 902, 902, 903,
+ 904, 921, 921, 902, 902, 902, 902, 902,
+ 200, 922, 204, 202, 200, 900, 901, 900,
+ 902, 202, 902, 902, 903, 904, 923, 923,
+ 902, 902, 902, 902, 902, 200, 904, 924,
+ 904, 925, 265, 925, 925, 926, 925, 925,
+ 925, 925, 925, 925, 200, 927, 204, 202,
+ 200, 928, 929, 928, 925, 265, 925, 925,
+ 926, 925, 925, 925, 925, 925, 925, 200,
+ 930, 204, 202, 200, 931, 204, 931, 265,
+ 200, 932, 933, 932, 925, 202, 925, 925,
+ 903, 925, 925, 925, 925, 925, 200, 934,
+ 935, 934, 202, 907, 200, 936, 204, 202,
+ 200, 937, 204, 937, 202, 907, 200, 938,
+ 204, 202, 200, 900, 901, 900, 902, 202,
+ 902, 902, 903, 904, 939, 939, 902, 902,
+ 902, 902, 902, 200, 900, 901, 900, 902,
+ 202, 902, 902, 903, 904, 940, 940, 902,
+ 902, 902, 902, 902, 200, 900, 901, 900,
+ 902, 202, 902, 902, 903, 904, 941, 941,
+ 902, 902, 902, 902, 902, 200, 900, 901,
+ 900, 902, 202, 902, 902, 903, 904, 942,
+ 942, 902, 902, 902, 902, 902, 200, 943,
+ 944, 943, 902, 202, 902, 902, 903, 945,
+ 902, 902, 902, 902, 902, 200, 946, 947,
+ 946, 202, 907, 945, 200, 948, 204, 202,
+ 200, 949, 204, 949, 202, 907, 945, 200,
+ 950, 951, 950, 925, 952, 925, 925, 926,
+ 925, 925, 925, 925, 925, 925, 200, 953,
+ 204, 202, 200, 954, 955, 954, 925, 952,
+ 925, 925, 926, 925, 925, 925, 925, 925,
+ 925, 200, 956, 204, 202, 200, 957, 204,
+ 957, 958, 200, 204, 202, 960, 959, 959,
+ 959, 200, 204, 202, 962, 963, 961, 961,
+ 961, 200, 204, 202, 962, 963, 964, 964,
+ 964, 200, 204, 202, 962, 963, 965, 965,
+ 965, 200, 204, 202, 962, 963, 200, 204,
+ 202, 967, 966, 959, 959, 200, 204, 202,
+ 968, 962, 963, 969, 961, 961, 200, 204,
+ 202, 970, 200, 204, 202, 971, 972, 200,
+ 204, 202, 973, 200, 204, 202, 974, 975,
+ 200, 204, 202, 976, 200, 204, 202, 963,
+ 977, 200, 204, 202, 963, 978, 200, 204,
+ 202, 963, 200, 932, 933, 932, 202, 903,
+ 200, 204, 202, 974, 979, 200, 204, 202,
+ 974, 200, 204, 202, 971, 980, 200, 204,
+ 202, 971, 200, 204, 202, 968, 962, 963,
+ 981, 964, 964, 200, 204, 202, 968, 962,
+ 963, 965, 965, 965, 200, 204, 202, 983,
+ 963, 982, 982, 982, 200, 204, 202, 985,
+ 963, 984, 984, 984, 200, 204, 202, 985,
+ 963, 986, 986, 986, 200, 204, 202, 985,
+ 963, 987, 987, 987, 200, 204, 202, 985,
+ 963, 200, 204, 202, 988, 982, 982, 200,
+ 204, 202, 968, 985, 963, 989, 984, 984,
+ 200, 204, 202, 968, 985, 963, 990, 986,
+ 986, 200, 204, 202, 968, 985, 963, 987,
+ 987, 987, 200, 204, 202, 991, 200, 204,
+ 202, 968, 992, 200, 204, 202, 968, 993,
+ 200, 204, 202, 968, 200, 204, 202, 967,
+ 200, 994, 204, 202, 200, 900, 901, 900,
+ 902, 202, 902, 902, 903, 904, 995, 995,
+ 902, 902, 902, 902, 902, 200, 900, 901,
+ 900, 902, 202, 902, 902, 903, 904, 996,
+ 996, 902, 902, 902, 902, 902, 200, 900,
+ 901, 900, 902, 202, 902, 902, 903, 904,
+ 997, 997, 902, 902, 902, 902, 902, 200,
+ 900, 901, 900, 902, 202, 902, 902, 903,
+ 904, 998, 998, 902, 902, 902, 902, 902,
+ 200, 900, 901, 900, 902, 202, 902, 902,
+ 903, 904, 999, 999, 902, 902, 902, 902,
+ 902, 200, 1000, 1001, 1000, 902, 202, 902,
+ 902, 903, 1002, 902, 902, 902, 902, 902,
+ 200, 1003, 1004, 1003, 202, 907, 1002, 200,
+ 1005, 204, 202, 200, 1006, 204, 1006, 202,
+ 907, 1002, 200, 1007, 1008, 1007, 925, 1009,
+ 925, 925, 926, 925, 925, 925, 925, 925,
+ 925, 200, 1010, 204, 202, 200, 1011, 1012,
+ 1011, 925, 1009, 925, 925, 926, 925, 925,
+ 925, 925, 925, 925, 200, 1013, 204, 202,
+ 200, 1014, 204, 1014, 1015, 200, 1016, 1017,
+ 1016, 171, 675, 172, 21, 21, 169, 1018,
+ 26, 21, 1019, 1020, 1019, 171, 675, 172,
+ 21, 21, 169, 1021, 204, 202, 200, 900,
+ 901, 900, 902, 202, 902, 902, 903, 904,
+ 1022, 1022, 902, 902, 902, 902, 902, 200,
+ 900, 901, 900, 902, 202, 902, 902, 903,
+ 904, 1023, 1023, 902, 902, 902, 902, 902,
+ 200, 1024, 1025, 1024, 902, 202, 902, 902,
+ 903, 1026, 902, 902, 902, 902, 902, 200,
+ 1027, 1028, 1027, 202, 907, 1026, 200, 1029,
+ 204, 202, 200, 1030, 204, 1030, 202, 907,
+ 1026, 200, 1026, 1031, 1026, 925, 202, 925,
+ 925, 926, 925, 925, 925, 925, 925, 925,
+ 200, 1032, 204, 202, 200, 1033, 204, 1033,
+ 925, 202, 925, 925, 926, 925, 925, 925,
+ 925, 925, 925, 200, 1034, 204, 202, 200,
+ 900, 901, 900, 902, 202, 902, 902, 903,
+ 904, 1035, 1035, 902, 902, 902, 902, 902,
+ 200, 900, 901, 900, 902, 202, 902, 902,
+ 903, 904, 1036, 1036, 902, 902, 902, 902,
+ 902, 200, 900, 901, 900, 902, 202, 902,
+ 902, 903, 904, 1037, 1037, 902, 902, 902,
+ 902, 902, 200, 900, 901, 900, 902, 202,
+ 902, 902, 903, 904, 1038, 1038, 902, 902,
+ 902, 902, 902, 200, 1039, 1040, 1039, 902,
+ 202, 902, 902, 903, 1041, 902, 902, 902,
+ 902, 902, 200, 1042, 1043, 1042, 202, 907,
+ 1041, 200, 1044, 204, 202, 200, 1045, 204,
+ 1045, 202, 907, 1041, 200, 1046, 1047, 1046,
+ 925, 1048, 925, 925, 926, 925, 925, 925,
+ 925, 925, 925, 200, 1049, 204, 202, 200,
+ 1050, 1051, 1050, 925, 1048, 925, 925, 926,
+ 925, 925, 925, 925, 925, 925, 200, 1052,
+ 204, 202, 200, 1053, 204, 1053, 1054, 200,
+ 1055, 1056, 1055, 232, 1057, 233, 21, 21,
+ 230, 1058, 26, 21, 1059, 1060, 1059, 232,
+ 1057, 233, 21, 21, 230, 1061, 26, 21,
+ 1062, 231, 1062, 232, 1057, 233, 21, 21,
+ 230, 1057, 1063, 1057, 1064, 232, 1064, 1064,
+ 1065, 1066, 1067, 1068, 1069, 1070, 1071, 233,
+ 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1064,
+ 21, 21, 1064, 1064, 1064, 1064, 1064, 230,
+ 1072, 26, 21, 1073, 231, 1073, 1064, 232,
+ 1064, 1064, 1065, 1066, 1067, 1068, 1069, 1070,
+ 1071, 233, 1065, 1066, 1067, 1068, 1069, 1070,
+ 1071, 1064, 21, 21, 1064, 1064, 1064, 1064,
+ 1064, 230, 1074, 1075, 1074, 1076, 232, 1076,
+ 1076, 1077, 1078, 233, 1076, 21, 21, 1076,
+ 1076, 1076, 1076, 230, 1079, 1080, 1079, 232,
+ 1057, 1078, 233, 21, 21, 230, 1081, 26,
+ 21, 1082, 231, 1082, 232, 1057, 1078, 233,
+ 21, 21, 230, 1078, 1083, 1078, 1084, 1085,
+ 1084, 1084, 1086, 233, 1084, 21, 21, 1084,
+ 1084, 1084, 1084, 1084, 230, 1087, 26, 21,
+ 1088, 1089, 1088, 1084, 1085, 1084, 1084, 1086,
+ 233, 1084, 21, 21, 1084, 1084, 1084, 1084,
+ 1084, 230, 1090, 26, 21, 1091, 231, 1091,
+ 1085, 233, 21, 21, 230, 1092, 1093, 1092,
+ 77, 1094, 78, 21, 21, 69, 1095, 1096,
+ 1095, 1084, 232, 1084, 1084, 1077, 233, 1084,
+ 21, 21, 1084, 1084, 1084, 1084, 230, 1097,
+ 1098, 1097, 232, 1057, 233, 21, 21, 230,
+ 1099, 26, 21, 231, 232, 1101, 233, 21,
+ 21, 21, 1100, 1100, 1100, 230, 231, 232,
+ 1103, 233, 1104, 21, 21, 21, 1102, 1102,
+ 1102, 230, 231, 232, 1103, 233, 1104, 21,
+ 21, 21, 1105, 1105, 1105, 230, 231, 232,
+ 1103, 233, 1104, 21, 21, 21, 1106, 1106,
+ 1106, 230, 231, 232, 1103, 233, 1104, 21,
+ 21, 21, 230, 231, 232, 1108, 233, 21,
+ 21, 21, 1107, 1100, 1100, 230, 231, 232,
+ 1109, 1103, 233, 1104, 21, 21, 21, 1110,
+ 1102, 1102, 230, 231, 232, 233, 21, 21,
+ 21, 1111, 230, 231, 232, 1112, 233, 21,
+ 21, 21, 1113, 230, 231, 232, 233, 21,
+ 21, 21, 1114, 230, 231, 232, 1115, 233,
+ 21, 21, 21, 1116, 230, 231, 232, 233,
+ 21, 21, 21, 1117, 230, 231, 232, 233,
+ 1104, 21, 21, 21, 1118, 230, 231, 232,
+ 233, 1104, 21, 21, 21, 1119, 230, 231,
+ 232, 233, 1104, 21, 21, 21, 230, 1095,
+ 1096, 1095, 232, 1077, 233, 21, 21, 230,
+ 231, 232, 1115, 233, 21, 21, 21, 1120,
+ 230, 231, 232, 1115, 233, 21, 21, 21,
+ 230, 231, 232, 1112, 233, 21, 21, 21,
+ 1121, 230, 231, 232, 1112, 233, 21, 21,
+ 21, 230, 231, 232, 1109, 1103, 233, 1104,
+ 21, 21, 21, 1122, 1105, 1105, 230, 231,
+ 232, 1109, 1103, 233, 1104, 21, 21, 21,
+ 1106, 1106, 1106, 230, 231, 232, 1124, 233,
+ 1104, 21, 21, 21, 1123, 1123, 1123, 230,
+ 231, 232, 1126, 233, 1104, 21, 21, 21,
+ 1125, 1125, 1125, 230, 231, 232, 1126, 233,
+ 1104, 21, 21, 21, 1127, 1127, 1127, 230,
+ 231, 232, 1126, 233, 1104, 21, 21, 21,
+ 1128, 1128, 1128, 230, 231, 232, 1126, 233,
+ 1104, 21, 21, 21, 230, 231, 232, 233,
+ 21, 21, 21, 1129, 1123, 1123, 230, 231,
+ 232, 1109, 1126, 233, 1104, 21, 21, 21,
+ 1130, 1125, 1125, 230, 231, 232, 1109, 1126,
+ 233, 1104, 21, 21, 21, 1131, 1127, 1127,
+ 230, 231, 232, 1109, 1126, 233, 1104, 21,
+ 21, 21, 1128, 1128, 1128, 230, 231, 232,
+ 233, 21, 21, 21, 1132, 230, 231, 232,
+ 1109, 233, 21, 21, 21, 1133, 230, 231,
+ 232, 1109, 233, 21, 21, 21, 1134, 230,
+ 231, 232, 1109, 233, 21, 21, 21, 230,
+ 231, 232, 1108, 233, 21, 21, 21, 230,
+ 1135, 26, 21, 1074, 1075, 1074, 1076, 232,
+ 1076, 1076, 1077, 1078, 1136, 233, 1136, 1076,
+ 21, 21, 1076, 1076, 1076, 1076, 230, 1074,
+ 1075, 1074, 1076, 232, 1076, 1076, 1077, 1078,
+ 1137, 233, 1137, 1076, 21, 21, 1076, 1076,
+ 1076, 1076, 230, 1074, 1075, 1074, 1076, 232,
+ 1076, 1076, 1077, 1078, 1138, 233, 1138, 1076,
+ 21, 21, 1076, 1076, 1076, 1076, 230, 1074,
+ 1075, 1074, 1076, 232, 1076, 1076, 1077, 1078,
+ 1139, 233, 1139, 1076, 21, 21, 1076, 1076,
+ 1076, 1076, 230, 1074, 1075, 1074, 1076, 232,
+ 1076, 1076, 1077, 1078, 1140, 233, 1140, 1076,
+ 21, 21, 1076, 1076, 1076, 1076, 230, 1074,
+ 1075, 1074, 1076, 232, 1076, 1076, 1077, 1078,
+ 1141, 233, 1141, 1076, 21, 21, 1076, 1076,
+ 1076, 1076, 230, 1074, 1075, 1074, 1076, 232,
+ 1076, 1076, 1077, 1078, 1142, 233, 1142, 1076,
+ 21, 21, 1076, 1076, 1076, 1076, 230, 1074,
+ 1075, 1074, 1076, 232, 1076, 1076, 1077, 1078,
+ 1143, 233, 1143, 1076, 21, 21, 1076, 1076,
+ 1076, 1076, 230, 1144, 1145, 1144, 1076, 232,
+ 1076, 1076, 1077, 1146, 233, 1076, 21, 21,
+ 1076, 1076, 1076, 1076, 230, 1147, 1148, 1147,
+ 232, 1057, 1146, 233, 21, 21, 230, 1149,
+ 26, 21, 1150, 231, 1150, 232, 1057, 1146,
+ 233, 21, 21, 230, 1146, 1151, 1146, 1152,
+ 1085, 1152, 1152, 1086, 233, 1152, 21, 21,
+ 1152, 1152, 1152, 1152, 1152, 230, 1153, 26,
+ 21, 1154, 1089, 1154, 1152, 1085, 1152, 1152,
+ 1086, 233, 1152, 21, 21, 1152, 1152, 1152,
+ 1152, 1152, 230, 1155, 1156, 1155, 1157, 232,
+ 1157, 1157, 1158, 233, 1157, 21, 21, 1157,
+ 1157, 1157, 1157, 230, 1159, 26, 21, 1074,
+ 1075, 1074, 1076, 232, 1076, 1076, 1077, 1078,
+ 1160, 233, 1160, 1076, 21, 21, 1076, 1076,
+ 1076, 1076, 230, 1074, 1075, 1074, 1076, 232,
+ 1076, 1076, 1077, 1078, 1161, 233, 1161, 1076,
+ 21, 21, 1076, 1076, 1076, 1076, 230, 1074,
+ 1075, 1074, 1076, 232, 1076, 1076, 1077, 1078,
+ 1162, 233, 1162, 1076, 21, 21, 1076, 1076,
+ 1076, 1076, 230, 1074, 1075, 1074, 1076, 232,
+ 1076, 1076, 1077, 1078, 1163, 233, 1163, 1076,
+ 21, 21, 1076, 1076, 1076, 1076, 230, 1074,
+ 1075, 1074, 1076, 232, 1076, 1076, 1077, 1078,
+ 1164, 233, 1164, 1076, 21, 21, 1076, 1076,
+ 1076, 1076, 230, 1165, 1166, 1165, 1076, 232,
+ 1076, 1076, 1077, 1167, 233, 1076, 21, 21,
+ 1076, 1076, 1076, 1076, 230, 1168, 1169, 1168,
+ 232, 1057, 1167, 233, 21, 21, 230, 1170,
+ 26, 21, 1171, 231, 1171, 232, 1057, 1167,
+ 233, 21, 21, 230, 1167, 1172, 1167, 1084,
+ 1173, 1084, 1084, 1086, 233, 1084, 21, 21,
+ 1084, 1084, 1084, 1084, 1084, 230, 1174, 26,
+ 21, 1175, 1176, 1175, 1084, 1173, 1084, 1084,
+ 1086, 233, 1084, 21, 21, 1084, 1084, 1084,
+ 1084, 1084, 230, 1177, 26, 21, 1178, 231,
+ 1178, 1173, 233, 21, 21, 230, 1179, 1180,
+ 1179, 390, 1181, 392, 387, 387, 386, 1182,
+ 26, 21, 1074, 1075, 1074, 1076, 232, 1076,
+ 1076, 1077, 1078, 1183, 233, 1183, 1076, 21,
+ 21, 1076, 1076, 1076, 1076, 230, 1074, 1075,
+ 1074, 1076, 232, 1076, 1076, 1077, 1078, 1184,
+ 233, 1184, 1076, 21, 21, 1076, 1076, 1076,
+ 1076, 230, 1074, 1075, 1074, 1076, 232, 1076,
+ 1076, 1077, 1078, 1185, 233, 1185, 1076, 21,
+ 21, 1076, 1076, 1076, 1076, 230, 1074, 1075,
+ 1074, 1076, 232, 1076, 1076, 1077, 1078, 1186,
+ 233, 1186, 1076, 21, 21, 1076, 1076, 1076,
+ 1076, 230, 1187, 1188, 1187, 1076, 232, 1076,
+ 1076, 1077, 1189, 233, 1076, 21, 21, 1076,
+ 1076, 1076, 1076, 230, 1190, 1191, 1190, 232,
+ 1057, 1189, 233, 21, 21, 230, 1192, 26,
+ 21, 1193, 231, 1193, 232, 1057, 1189, 233,
+ 21, 21, 230, 1194, 1195, 1194, 1084, 1196,
+ 1084, 1084, 1086, 233, 1084, 21, 21, 1084,
+ 1084, 1084, 1084, 1084, 230, 1197, 26, 21,
+ 1198, 1199, 1198, 1084, 1196, 1084, 1084, 1086,
+ 233, 1084, 21, 21, 1084, 1084, 1084, 1084,
+ 1084, 230, 1200, 26, 21, 1201, 231, 1201,
+ 1202, 233, 21, 21, 230, 1203, 1204, 1203,
+ 108, 1205, 109, 21, 21, 106, 1206, 26,
+ 21, 1074, 1075, 1074, 1076, 232, 1076, 1076,
+ 1077, 1078, 1207, 233, 1207, 1076, 21, 21,
+ 1076, 1076, 1076, 1076, 230, 1074, 1075, 1074,
+ 1076, 232, 1076, 1076, 1077, 1078, 1208, 233,
+ 1208, 1076, 21, 21, 1076, 1076, 1076, 1076,
+ 230, 1074, 1075, 1074, 1076, 232, 1076, 1076,
+ 1077, 1078, 1209, 233, 1209, 1076, 21, 21,
+ 1076, 1076, 1076, 1076, 230, 1074, 1075, 1074,
+ 1076, 232, 1076, 1076, 1077, 1078, 1210, 233,
+ 1210, 1076, 21, 21, 1076, 1076, 1076, 1076,
+ 230, 1074, 1075, 1074, 1076, 232, 1076, 1076,
+ 1077, 1078, 1211, 233, 1211, 1076, 21, 21,
+ 1076, 1076, 1076, 1076, 230, 1212, 1213, 1212,
+ 1076, 232, 1076, 1076, 1077, 1214, 233, 1076,
+ 21, 21, 1076, 1076, 1076, 1076, 230, 1215,
+ 1216, 1215, 232, 1057, 1214, 233, 21, 21,
+ 230, 1217, 26, 21, 1218, 231, 1218, 232,
+ 1057, 1214, 233, 21, 21, 230, 1219, 1220,
+ 1219, 1084, 1221, 1084, 1084, 1086, 233, 1084,
+ 21, 21, 1084, 1084, 1084, 1084, 1084, 230,
+ 1222, 26, 21, 1223, 1224, 1223, 1084, 1221,
+ 1084, 1084, 1086, 233, 1084, 21, 21, 1084,
+ 1084, 1084, 1084, 1084, 230, 1225, 26, 21,
+ 1226, 231, 1226, 1227, 233, 21, 21, 230,
+ 1228, 1229, 1228, 171, 1230, 172, 21, 21,
+ 169, 1231, 26, 21, 1074, 1075, 1074, 1076,
+ 232, 1076, 1076, 1077, 1078, 1232, 233, 1232,
+ 1076, 21, 21, 1076, 1076, 1076, 1076, 230,
+ 1074, 1075, 1074, 1076, 232, 1076, 1076, 1077,
+ 1078, 1233, 233, 1233, 1076, 21, 21, 1076,
+ 1076, 1076, 1076, 230, 1234, 1235, 1234, 1076,
+ 232, 1076, 1076, 1077, 1236, 233, 1076, 21,
+ 21, 1076, 1076, 1076, 1076, 230, 1237, 1238,
+ 1237, 232, 1057, 1236, 233, 21, 21, 230,
+ 1239, 26, 21, 1240, 231, 1240, 232, 1057,
+ 1236, 233, 21, 21, 230, 1236, 1241, 1236,
+ 1084, 1242, 1084, 1084, 1086, 233, 1084, 21,
+ 21, 1084, 1084, 1084, 1084, 1084, 230, 1243,
+ 26, 21, 1244, 1245, 1244, 1084, 1242, 1084,
+ 1084, 1086, 233, 1084, 21, 21, 1084, 1084,
+ 1084, 1084, 1084, 230, 1246, 26, 21, 1247,
+ 231, 1247, 1242, 233, 21, 21, 230, 1248,
+ 1249, 1248, 197, 1250, 198, 195, 195, 194,
+ 1251, 26, 21, 1074, 1075, 1074, 1076, 232,
+ 1076, 1076, 1077, 1078, 1252, 233, 1252, 1076,
+ 21, 21, 1076, 1076, 1076, 1076, 230, 1074,
+ 1075, 1074, 1076, 232, 1076, 1076, 1077, 1078,
+ 1253, 233, 1253, 1076, 21, 21, 1076, 1076,
+ 1076, 1076, 230, 1074, 1075, 1074, 1076, 232,
+ 1076, 1076, 1077, 1078, 1254, 233, 1254, 1076,
+ 21, 21, 1076, 1076, 1076, 1076, 230, 1074,
+ 1075, 1074, 1076, 232, 1076, 1076, 1077, 1078,
+ 1255, 233, 1255, 1076, 21, 21, 1076, 1076,
+ 1076, 1076, 230, 1256, 1257, 1256, 1076, 232,
+ 1076, 1076, 1077, 1258, 233, 1076, 21, 21,
+ 1076, 1076, 1076, 1076, 230, 1259, 1260, 1259,
+ 232, 1057, 1258, 233, 21, 21, 230, 1261,
+ 26, 21, 1262, 231, 1262, 232, 1057, 1258,
+ 233, 21, 21, 230, 1263, 1264, 1263, 1084,
+ 1265, 1084, 1084, 1086, 233, 1084, 21, 21,
+ 1084, 1084, 1084, 1084, 1084, 230, 1266, 26,
+ 21, 1267, 1268, 1267, 1084, 1265, 1084, 1084,
+ 1086, 233, 1084, 21, 21, 1084, 1084, 1084,
+ 1084, 1084, 230, 1269, 26, 21, 1270, 231,
+ 1270, 1271, 233, 21, 21, 230, 1272, 1273,
+ 1272, 232, 1274, 233, 21, 21, 230, 1275,
+ 26, 21, 1074, 1075, 1074, 1076, 232, 1076,
+ 1076, 1077, 1078, 1276, 233, 1276, 1076, 21,
+ 21, 1076, 1076, 1076, 1076, 230, 1074, 1075,
+ 1074, 1076, 232, 1076, 1076, 1077, 1078, 1277,
+ 233, 1277, 1076, 21, 21, 1076, 1076, 1076,
+ 1076, 230, 1074, 1075, 1074, 1076, 232, 1076,
+ 1076, 1077, 1078, 1278, 233, 1278, 1076, 21,
+ 21, 1076, 1076, 1076, 1076, 230, 1074, 1075,
+ 1074, 1076, 232, 1076, 1076, 1077, 1078, 1279,
+ 233, 1279, 1076, 21, 21, 1076, 1076, 1076,
+ 1076, 230, 1280, 1281, 1280, 1076, 232, 1076,
+ 1076, 1077, 1282, 233, 1076, 21, 21, 1076,
+ 1076, 1076, 1076, 230, 1283, 1284, 1283, 232,
+ 1057, 1282, 233, 21, 21, 230, 1285, 26,
+ 21, 1286, 231, 1286, 232, 1057, 1282, 233,
+ 21, 21, 230, 1282, 1287, 1282, 1084, 1085,
+ 1084, 1084, 1288, 1289, 1086, 233, 1288, 1289,
+ 1084, 21, 21, 1084, 1084, 1084, 1084, 1084,
+ 230, 1290, 26, 21, 1291, 1089, 1291, 1084,
+ 1085, 1084, 1084, 1288, 1289, 1086, 233, 1288,
+ 1289, 1084, 21, 21, 1084, 1084, 1084, 1084,
+ 1084, 230, 1095, 1096, 1095, 1084, 232, 1084,
+ 1084, 1077, 1292, 233, 1292, 1084, 21, 21,
+ 1084, 1084, 1084, 1084, 230, 1095, 1096, 1095,
+ 1084, 232, 1084, 1084, 1077, 1293, 233, 1293,
+ 1084, 21, 21, 1084, 1084, 1084, 1084, 230,
+ 1095, 1096, 1095, 1084, 232, 1084, 1084, 1077,
+ 1294, 233, 1294, 1084, 21, 21, 1084, 1084,
+ 1084, 1084, 230, 1095, 1096, 1095, 1084, 232,
+ 1084, 1084, 1077, 1295, 233, 1295, 1084, 21,
+ 21, 1084, 1084, 1084, 1084, 230, 1296, 1297,
+ 1296, 232, 1298, 233, 21, 21, 230, 1095,
+ 1096, 1095, 1084, 232, 1084, 1084, 1077, 1299,
+ 233, 1299, 1084, 21, 21, 1084, 1084, 1084,
+ 1084, 230, 1095, 1096, 1095, 1084, 232, 1084,
+ 1084, 1077, 1294, 233, 1294, 1084, 21, 21,
+ 1084, 1084, 1084, 1084, 230, 1300, 26, 21,
+ 1301, 204, 202, 200, 900, 901, 900, 902,
+ 202, 902, 902, 903, 904, 1302, 1302, 902,
+ 902, 902, 902, 902, 200, 900, 901, 900,
+ 902, 202, 902, 902, 903, 904, 1303, 1303,
+ 902, 902, 902, 902, 902, 200, 900, 901,
+ 900, 902, 202, 902, 902, 903, 904, 1304,
+ 1304, 902, 902, 902, 902, 902, 200, 900,
+ 901, 900, 902, 202, 902, 902, 903, 904,
+ 1305, 1305, 902, 902, 902, 902, 902, 200,
+ 1306, 1307, 1306, 902, 202, 902, 902, 903,
+ 1308, 902, 902, 902, 902, 902, 200, 1309,
+ 1310, 1309, 202, 907, 1308, 200, 1311, 204,
+ 202, 200, 1312, 204, 1312, 202, 907, 1308,
+ 200, 1308, 1313, 1308, 925, 265, 925, 925,
+ 1314, 1315, 926, 1314, 1315, 925, 925, 925,
+ 925, 925, 925, 200, 1316, 204, 202, 200,
+ 1317, 929, 1317, 925, 265, 925, 925, 1314,
+ 1315, 926, 1314, 1315, 925, 925, 925, 925,
+ 925, 925, 200, 932, 933, 932, 925, 202,
+ 925, 925, 903, 1318, 1318, 925, 925, 925,
+ 925, 925, 200, 932, 933, 932, 925, 202,
+ 925, 925, 903, 1319, 1319, 925, 925, 925,
+ 925, 925, 200, 932, 933, 932, 925, 202,
+ 925, 925, 903, 1320, 1320, 925, 925, 925,
+ 925, 925, 200, 932, 933, 932, 925, 202,
+ 925, 925, 903, 1321, 1321, 925, 925, 925,
+ 925, 925, 200, 1322, 1323, 1322, 202, 1324,
+ 200, 932, 933, 932, 925, 202, 925, 925,
+ 903, 1325, 1325, 925, 925, 925, 925, 925,
+ 200, 932, 933, 932, 925, 202, 925, 925,
+ 903, 1320, 1320, 925, 925, 925, 925, 925,
+ 200, 1326, 204, 202, 200, 900, 901, 900,
+ 902, 202, 902, 902, 903, 904, 1327, 1327,
+ 902, 902, 902, 902, 902, 200, 900, 901,
+ 900, 902, 202, 902, 902, 903, 904, 1328,
+ 1328, 902, 902, 902, 902, 902, 200, 900,
+ 901, 900, 902, 202, 902, 902, 903, 904,
+ 1329, 1329, 902, 902, 902, 902, 902, 200,
+ 900, 901, 900, 902, 202, 902, 902, 903,
+ 904, 1330, 1330, 902, 902, 902, 902, 902,
+ 200, 1331, 1332, 1331, 902, 202, 902, 902,
+ 903, 1333, 902, 902, 902, 902, 902, 200,
+ 1334, 1335, 1334, 202, 907, 1333, 200, 1336,
+ 204, 202, 200, 1337, 204, 1337, 202, 907,
+ 1333, 200, 1333, 1338, 1333, 925, 1339, 925,
+ 925, 926, 925, 925, 925, 925, 925, 925,
+ 200, 1340, 204, 202, 200, 1341, 1342, 1341,
+ 925, 1339, 925, 925, 926, 925, 925, 925,
+ 925, 925, 925, 200, 1343, 204, 202, 200,
+ 1344, 204, 1344, 1339, 200, 1345, 1346, 1345,
+ 390, 1347, 392, 387, 387, 386, 1348, 1349,
+ 1348, 396, 404, 397, 394, 394, 393, 1350,
+ 398, 396, 394, 1351, 1352, 1351, 396, 404,
+ 397, 394, 394, 393, 438, 439, 438, 440,
+ 396, 440, 440, 441, 442, 1353, 1353, 440,
+ 440, 440, 440, 440, 394, 438, 439, 438,
+ 440, 396, 440, 440, 441, 442, 1354, 1354,
+ 440, 440, 440, 440, 440, 394, 438, 439,
+ 438, 440, 396, 440, 440, 441, 442, 1355,
+ 1355, 440, 440, 440, 440, 440, 394, 438,
+ 439, 438, 440, 396, 440, 440, 441, 442,
+ 1356, 1356, 440, 440, 440, 440, 440, 394,
+ 438, 439, 438, 440, 396, 440, 440, 441,
+ 442, 1357, 1357, 440, 440, 440, 440, 440,
+ 394, 1358, 1359, 1358, 440, 396, 440, 440,
+ 441, 1360, 440, 440, 440, 440, 440, 394,
+ 1361, 1362, 1361, 396, 445, 1360, 394, 1363,
+ 398, 396, 394, 1364, 398, 1364, 396, 445,
+ 1360, 394, 1365, 1366, 1365, 463, 1367, 463,
+ 463, 464, 463, 463, 463, 463, 463, 463,
+ 394, 1368, 398, 396, 394, 1369, 1370, 1369,
+ 463, 1367, 463, 463, 464, 463, 463, 463,
+ 463, 463, 463, 394, 1371, 398, 396, 394,
+ 1372, 398, 1372, 1373, 394, 398, 396, 1375,
+ 1374, 1374, 1374, 394, 398, 396, 1377, 1378,
+ 1376, 1376, 1376, 394, 398, 396, 1377, 1378,
+ 1379, 1379, 1379, 394, 398, 396, 1377, 1378,
+ 1380, 1380, 1380, 394, 398, 396, 1377, 1378,
+ 394, 398, 396, 1382, 1381, 1374, 1374, 394,
+ 398, 396, 1383, 1377, 1378, 1384, 1376, 1376,
+ 394, 398, 396, 1385, 394, 398, 396, 1386,
+ 1387, 394, 398, 396, 1388, 394, 398, 396,
+ 1389, 1390, 394, 398, 396, 1391, 394, 398,
+ 396, 1378, 1392, 394, 398, 396, 1378, 1393,
+ 394, 398, 396, 1378, 394, 470, 471, 470,
+ 396, 441, 394, 398, 396, 1389, 1394, 394,
+ 398, 396, 1389, 394, 398, 396, 1386, 1395,
+ 394, 398, 396, 1386, 394, 398, 396, 1383,
+ 1377, 1378, 1396, 1379, 1379, 394, 398, 396,
+ 1383, 1377, 1378, 1380, 1380, 1380, 394, 398,
+ 396, 1398, 1378, 1397, 1397, 1397, 394, 398,
+ 396, 1400, 1378, 1399, 1399, 1399, 394, 398,
+ 396, 1400, 1378, 1401, 1401, 1401, 394, 398,
+ 396, 1400, 1378, 1402, 1402, 1402, 394, 398,
+ 396, 1400, 1378, 394, 398, 396, 1403, 1397,
+ 1397, 394, 398, 396, 1383, 1400, 1378, 1404,
+ 1399, 1399, 394, 398, 396, 1383, 1400, 1378,
+ 1405, 1401, 1401, 394, 398, 396, 1383, 1400,
+ 1378, 1402, 1402, 1402, 394, 398, 396, 1406,
+ 394, 398, 396, 1383, 1407, 394, 398, 396,
+ 1383, 1408, 394, 398, 396, 1383, 394, 398,
+ 396, 1382, 394, 1409, 398, 396, 394, 438,
+ 439, 438, 440, 396, 440, 440, 441, 442,
+ 1410, 1410, 440, 440, 440, 440, 440, 394,
+ 438, 439, 438, 440, 396, 440, 440, 441,
+ 442, 1411, 1411, 440, 440, 440, 440, 440,
+ 394, 1412, 1413, 1412, 440, 396, 440, 440,
+ 441, 1414, 440, 440, 440, 440, 440, 394,
+ 1415, 1416, 1415, 396, 445, 1414, 394, 1417,
+ 398, 396, 394, 1418, 398, 1418, 396, 445,
+ 1414, 394, 1414, 1419, 1414, 463, 1420, 463,
+ 463, 464, 463, 463, 463, 463, 463, 463,
+ 394, 1421, 398, 396, 394, 1422, 1423, 1422,
+ 463, 1420, 463, 463, 464, 463, 463, 463,
+ 463, 463, 463, 394, 1424, 398, 396, 394,
+ 1425, 398, 1425, 1420, 394, 1426, 1427, 1426,
+ 197, 1428, 198, 195, 195, 194, 1429, 1430,
+ 1429, 202, 866, 203, 200, 200, 199, 1431,
+ 204, 202, 200, 1432, 1433, 1432, 202, 866,
+ 203, 200, 200, 199, 1434, 398, 396, 394,
+ 438, 439, 438, 440, 396, 440, 440, 441,
+ 442, 1435, 1435, 440, 440, 440, 440, 440,
+ 394, 438, 439, 438, 440, 396, 440, 440,
+ 441, 442, 1436, 1436, 440, 440, 440, 440,
+ 440, 394, 438, 439, 438, 440, 396, 440,
+ 440, 441, 442, 1437, 1437, 440, 440, 440,
+ 440, 440, 394, 438, 439, 438, 440, 396,
+ 440, 440, 441, 442, 1438, 1438, 440, 440,
+ 440, 440, 440, 394, 1439, 1440, 1439, 440,
+ 396, 440, 440, 441, 1441, 440, 440, 440,
+ 440, 440, 394, 1442, 1443, 1442, 396, 445,
+ 1441, 394, 1444, 398, 396, 394, 1445, 398,
+ 1445, 396, 445, 1441, 394, 1446, 1447, 1446,
+ 463, 1448, 463, 463, 464, 463, 463, 463,
+ 463, 463, 463, 394, 1449, 398, 396, 394,
+ 1450, 1451, 1450, 463, 1448, 463, 463, 464,
+ 463, 463, 463, 463, 463, 463, 394, 1452,
+ 398, 396, 394, 1453, 398, 1453, 1454, 394,
+ 1455, 398, 396, 394, 438, 439, 438, 440,
+ 396, 440, 440, 441, 442, 1456, 1456, 440,
+ 440, 440, 440, 440, 394, 438, 439, 438,
+ 440, 396, 440, 440, 441, 442, 1457, 1457,
+ 440, 440, 440, 440, 440, 394, 438, 439,
+ 438, 440, 396, 440, 440, 441, 442, 1458,
+ 1458, 440, 440, 440, 440, 440, 394, 438,
+ 439, 438, 440, 396, 440, 440, 441, 442,
+ 1459, 1459, 440, 440, 440, 440, 440, 394,
+ 1460, 1461, 1460, 440, 396, 440, 440, 441,
+ 1462, 440, 440, 440, 440, 440, 394, 1463,
+ 1464, 1463, 396, 445, 1462, 394, 1465, 398,
+ 396, 394, 1466, 398, 1466, 396, 445, 1462,
+ 394, 1462, 1467, 1462, 463, 401, 463, 463,
+ 1468, 1469, 464, 1468, 1469, 463, 463, 463,
+ 463, 463, 463, 394, 1470, 398, 396, 394,
+ 1471, 467, 1471, 463, 401, 463, 463, 1468,
+ 1469, 464, 1468, 1469, 463, 463, 463, 463,
+ 463, 463, 394, 470, 471, 470, 463, 396,
+ 463, 463, 441, 1472, 1472, 463, 463, 463,
+ 463, 463, 394, 470, 471, 470, 463, 396,
+ 463, 463, 441, 1473, 1473, 463, 463, 463,
+ 463, 463, 394, 470, 471, 470, 463, 396,
+ 463, 463, 441, 1474, 1474, 463, 463, 463,
+ 463, 463, 394, 470, 471, 470, 463, 396,
+ 463, 463, 441, 1475, 1475, 463, 463, 463,
+ 463, 463, 394, 1476, 1477, 1476, 396, 1478,
+ 394, 470, 471, 470, 463, 396, 463, 463,
+ 441, 1479, 1479, 463, 463, 463, 463, 463,
+ 394, 470, 471, 470, 463, 396, 463, 463,
+ 441, 1474, 1474, 463, 463, 463, 463, 463,
+ 394, 1480, 398, 396, 394, 1481, 204, 202,
+ 200, 900, 901, 900, 902, 202, 902, 902,
+ 903, 904, 1482, 1482, 902, 902, 902, 902,
+ 902, 200, 900, 901, 900, 902, 202, 902,
+ 902, 903, 904, 1483, 1483, 902, 902, 902,
+ 902, 902, 200, 900, 901, 900, 902, 202,
+ 902, 902, 903, 904, 1484, 1484, 902, 902,
+ 902, 902, 902, 200, 900, 901, 900, 902,
+ 202, 902, 902, 903, 904, 1485, 1485, 902,
+ 902, 902, 902, 902, 200, 900, 901, 900,
+ 902, 202, 902, 902, 903, 904, 1486, 1486,
+ 902, 902, 902, 902, 902, 200, 900, 901,
+ 900, 902, 202, 902, 902, 903, 904, 1487,
+ 1487, 902, 902, 902, 902, 902, 200, 900,
+ 901, 900, 902, 202, 902, 902, 903, 904,
+ 1488, 1488, 902, 902, 902, 902, 902, 200,
+ 1489, 1490, 1489, 902, 202, 902, 902, 903,
+ 1491, 902, 902, 902, 902, 902, 200, 1492,
+ 1493, 1492, 202, 907, 1491, 200, 1494, 204,
+ 202, 200, 1495, 204, 1495, 202, 907, 1491,
+ 200, 1491, 1496, 1491, 1497, 265, 1497, 1497,
+ 926, 1497, 1497, 1497, 1497, 1497, 1497, 200,
+ 1498, 204, 202, 200, 1499, 929, 1499, 1497,
+ 265, 1497, 1497, 926, 1497, 1497, 1497, 1497,
+ 1497, 1497, 200, 1500, 1501, 1500, 1502, 202,
+ 1502, 1502, 1503, 1502, 1502, 1502, 1502, 1502,
+ 200, 1504, 204, 202, 200, 201, 202, 1506,
+ 203, 200, 200, 200, 1505, 1505, 1505, 199,
+ 201, 202, 1508, 203, 1509, 200, 200, 200,
+ 1507, 1507, 1507, 199, 201, 202, 1508, 203,
+ 1509, 200, 200, 200, 1510, 1510, 1510, 199,
+ 201, 202, 1508, 203, 1509, 200, 200, 200,
+ 1511, 1511, 1511, 199, 201, 202, 1508, 203,
+ 1509, 200, 200, 200, 199, 201, 202, 1513,
+ 203, 200, 200, 200, 1512, 1505, 1505, 199,
+ 201, 202, 1514, 1508, 203, 1509, 200, 200,
+ 200, 1515, 1507, 1507, 199, 201, 202, 203,
+ 200, 200, 200, 1516, 199, 201, 202, 1517,
+ 203, 200, 200, 200, 1518, 199, 201, 202,
+ 203, 200, 200, 200, 1519, 199, 201, 202,
+ 1520, 203, 200, 200, 200, 1521, 199, 201,
+ 202, 203, 200, 200, 200, 1522, 199, 201,
+ 202, 203, 1509, 200, 200, 200, 1523, 199,
+ 201, 202, 203, 1509, 200, 200, 200, 1524,
+ 199, 201, 202, 203, 1509, 200, 200, 200,
+ 199, 897, 898, 897, 202, 883, 203, 200,
+ 200, 199, 201, 202, 1520, 203, 200, 200,
+ 200, 1525, 199, 201, 202, 1520, 203, 200,
+ 200, 200, 199, 201, 202, 1517, 203, 200,
+ 200, 200, 1526, 199, 201, 202, 1517, 203,
+ 200, 200, 200, 199, 201, 202, 1514, 1508,
+ 203, 1509, 200, 200, 200, 1527, 1510, 1510,
+ 199, 201, 202, 1514, 1508, 203, 1509, 200,
+ 200, 200, 1511, 1511, 1511, 199, 201, 202,
+ 1529, 203, 1509, 200, 200, 200, 1528, 1528,
+ 1528, 199, 201, 202, 1531, 203, 1509, 200,
+ 200, 200, 1530, 1530, 1530, 199, 201, 202,
+ 1531, 203, 1509, 200, 200, 200, 1532, 1532,
+ 1532, 199, 201, 202, 1531, 203, 1509, 200,
+ 200, 200, 1533, 1533, 1533, 199, 201, 202,
+ 1531, 203, 1509, 200, 200, 200, 199, 201,
+ 202, 203, 200, 200, 200, 1534, 1528, 1528,
+ 199, 201, 202, 1514, 1531, 203, 1509, 200,
+ 200, 200, 1535, 1530, 1530, 199, 201, 202,
+ 1514, 1531, 203, 1509, 200, 200, 200, 1536,
+ 1532, 1532, 199, 201, 202, 1514, 1531, 203,
+ 1509, 200, 200, 200, 1533, 1533, 1533, 199,
+ 201, 202, 203, 200, 200, 200, 1537, 199,
+ 201, 202, 1514, 203, 200, 200, 200, 1538,
+ 199, 201, 202, 1514, 203, 200, 200, 200,
+ 1539, 199, 201, 202, 1514, 203, 200, 200,
+ 200, 199, 201, 202, 1513, 203, 200, 200,
+ 200, 199, 1540, 204, 202, 200, 880, 881,
+ 880, 882, 202, 882, 882, 883, 884, 1541,
+ 203, 1541, 882, 200, 200, 882, 882, 882,
+ 882, 199, 880, 881, 880, 882, 202, 882,
+ 882, 883, 884, 1542, 203, 1542, 882, 200,
+ 200, 882, 882, 882, 882, 199, 880, 881,
+ 880, 882, 202, 882, 882, 883, 884, 1543,
+ 203, 1543, 882, 200, 200, 882, 882, 882,
+ 882, 199, 880, 881, 880, 882, 202, 882,
+ 882, 883, 884, 1544, 203, 1544, 882, 200,
+ 200, 882, 882, 882, 882, 199, 880, 881,
+ 880, 882, 202, 882, 882, 883, 884, 1545,
+ 203, 1545, 882, 200, 200, 882, 882, 882,
+ 882, 199, 880, 881, 880, 882, 202, 882,
+ 882, 883, 884, 1546, 203, 1546, 882, 200,
+ 200, 882, 882, 882, 882, 199, 880, 881,
+ 880, 882, 202, 882, 882, 883, 884, 1547,
+ 203, 1547, 882, 200, 200, 882, 882, 882,
+ 882, 199, 880, 881, 880, 882, 202, 882,
+ 882, 883, 884, 1548, 203, 1548, 882, 200,
+ 200, 882, 882, 882, 882, 199, 1549, 1550,
+ 1549, 882, 202, 882, 882, 883, 1551, 203,
+ 882, 200, 200, 882, 882, 882, 882, 199,
+ 1552, 1553, 1552, 202, 866, 1551, 203, 200,
+ 200, 199, 1554, 204, 202, 200, 1555, 201,
+ 1555, 202, 866, 1551, 203, 200, 200, 199,
+ 1551, 1556, 1551, 1557, 265, 1557, 1557, 891,
+ 203, 1557, 200, 200, 1557, 1557, 1557, 1557,
+ 1557, 199, 1558, 204, 202, 200, 1559, 894,
+ 1559, 1557, 265, 1557, 1557, 891, 203, 1557,
+ 200, 200, 1557, 1557, 1557, 1557, 1557, 199,
+ 1560, 1561, 1560, 1562, 202, 1562, 1562, 1563,
+ 203, 1562, 200, 200, 1562, 1562, 1562, 1562,
+ 199, 1564, 204, 202, 200, 880, 881, 880,
+ 882, 202, 882, 882, 883, 884, 1565, 203,
+ 1565, 882, 200, 200, 882, 882, 882, 882,
+ 199, 880, 881, 880, 882, 202, 882, 882,
+ 883, 884, 1566, 203, 1566, 882, 200, 200,
+ 882, 882, 882, 882, 199, 880, 881, 880,
+ 882, 202, 882, 882, 883, 884, 1567, 203,
+ 1567, 882, 200, 200, 882, 882, 882, 882,
+ 199, 880, 881, 880, 882, 202, 882, 882,
+ 883, 884, 1568, 203, 1568, 882, 200, 200,
+ 882, 882, 882, 882, 199, 880, 881, 880,
+ 882, 202, 882, 882, 883, 884, 1569, 203,
+ 1569, 882, 200, 200, 882, 882, 882, 882,
+ 199, 1570, 1571, 1570, 882, 202, 882, 882,
+ 883, 1572, 203, 882, 200, 200, 882, 882,
+ 882, 882, 199, 1573, 1574, 1573, 202, 866,
+ 1572, 203, 200, 200, 199, 1575, 204, 202,
+ 200, 1576, 201, 1576, 202, 866, 1572, 203,
+ 200, 200, 199, 1572, 1577, 1572, 890, 1339,
+ 890, 890, 891, 203, 890, 200, 200, 890,
+ 890, 890, 890, 890, 199, 1578, 204, 202,
+ 200, 1579, 1580, 1579, 890, 1339, 890, 890,
+ 891, 203, 890, 200, 200, 890, 890, 890,
+ 890, 890, 199, 1581, 204, 202, 200, 1582,
+ 201, 1582, 1339, 203, 200, 200, 199, 1583,
+ 204, 202, 200, 880, 881, 880, 882, 202,
+ 882, 882, 883, 884, 1584, 203, 1584, 882,
+ 200, 200, 882, 882, 882, 882, 199, 880,
+ 881, 880, 882, 202, 882, 882, 883, 884,
+ 1585, 203, 1585, 882, 200, 200, 882, 882,
+ 882, 882, 199, 880, 881, 880, 882, 202,
+ 882, 882, 883, 884, 1586, 203, 1586, 882,
+ 200, 200, 882, 882, 882, 882, 199, 880,
+ 881, 880, 882, 202, 882, 882, 883, 884,
+ 1587, 203, 1587, 882, 200, 200, 882, 882,
+ 882, 882, 199, 1588, 1589, 1588, 882, 202,
+ 882, 882, 883, 1590, 203, 882, 200, 200,
+ 882, 882, 882, 882, 199, 1591, 1592, 1591,
+ 202, 866, 1590, 203, 200, 200, 199, 1593,
+ 204, 202, 200, 1594, 201, 1594, 202, 866,
+ 1590, 203, 200, 200, 199, 1595, 1596, 1595,
+ 890, 952, 890, 890, 891, 203, 890, 200,
+ 200, 890, 890, 890, 890, 890, 199, 1597,
+ 204, 202, 200, 1598, 1599, 1598, 890, 952,
+ 890, 890, 891, 203, 890, 200, 200, 890,
+ 890, 890, 890, 890, 199, 1600, 204, 202,
+ 200, 1601, 201, 1601, 958, 203, 200, 200,
+ 199, 1602, 204, 202, 200, 880, 881, 880,
+ 882, 202, 882, 882, 883, 884, 1603, 203,
+ 1603, 882, 200, 200, 882, 882, 882, 882,
+ 199, 880, 881, 880, 882, 202, 882, 882,
+ 883, 884, 1604, 203, 1604, 882, 200, 200,
+ 882, 882, 882, 882, 199, 880, 881, 880,
+ 882, 202, 882, 882, 883, 884, 1605, 203,
+ 1605, 882, 200, 200, 882, 882, 882, 882,
+ 199, 880, 881, 880, 882, 202, 882, 882,
+ 883, 884, 1606, 203, 1606, 882, 200, 200,
+ 882, 882, 882, 882, 199, 880, 881, 880,
+ 882, 202, 882, 882, 883, 884, 1607, 203,
+ 1607, 882, 200, 200, 882, 882, 882, 882,
+ 199, 1608, 1609, 1608, 882, 202, 882, 882,
+ 883, 1610, 203, 882, 200, 200, 882, 882,
+ 882, 882, 199, 1611, 1612, 1611, 202, 866,
+ 1610, 203, 200, 200, 199, 1613, 204, 202,
+ 200, 1614, 201, 1614, 202, 866, 1610, 203,
+ 200, 200, 199, 1615, 1616, 1615, 890, 1009,
+ 890, 890, 891, 203, 890, 200, 200, 890,
+ 890, 890, 890, 890, 199, 1617, 204, 202,
+ 200, 1618, 1619, 1618, 890, 1009, 890, 890,
+ 891, 203, 890, 200, 200, 890, 890, 890,
+ 890, 890, 199, 1620, 204, 202, 200, 1621,
+ 201, 1621, 1015, 203, 200, 200, 199, 1622,
+ 204, 202, 200, 880, 881, 880, 882, 202,
+ 882, 882, 883, 884, 1623, 203, 1623, 882,
+ 200, 200, 882, 882, 882, 882, 199, 880,
+ 881, 880, 882, 202, 882, 882, 883, 884,
+ 1624, 203, 1624, 882, 200, 200, 882, 882,
+ 882, 882, 199, 1625, 1626, 1625, 882, 202,
+ 882, 882, 883, 1627, 203, 882, 200, 200,
+ 882, 882, 882, 882, 199, 1628, 1629, 1628,
+ 202, 866, 1627, 203, 200, 200, 199, 1630,
+ 204, 202, 200, 1631, 201, 1631, 202, 866,
+ 1627, 203, 200, 200, 199, 1627, 1632, 1627,
+ 890, 202, 890, 890, 891, 203, 890, 200,
+ 200, 890, 890, 890, 890, 890, 199, 1633,
+ 204, 202, 200, 1634, 201, 1634, 890, 202,
+ 890, 890, 891, 203, 890, 200, 200, 890,
+ 890, 890, 890, 890, 199, 1635, 204, 202,
+ 200, 880, 881, 880, 882, 202, 882, 882,
+ 883, 884, 1636, 203, 1636, 882, 200, 200,
+ 882, 882, 882, 882, 199, 880, 881, 880,
+ 882, 202, 882, 882, 883, 884, 1637, 203,
+ 1637, 882, 200, 200, 882, 882, 882, 882,
+ 199, 880, 881, 880, 882, 202, 882, 882,
+ 883, 884, 1638, 203, 1638, 882, 200, 200,
+ 882, 882, 882, 882, 199, 880, 881, 880,
+ 882, 202, 882, 882, 883, 884, 1639, 203,
+ 1639, 882, 200, 200, 882, 882, 882, 882,
+ 199, 1640, 1641, 1640, 882, 202, 882, 882,
+ 883, 1642, 203, 882, 200, 200, 882, 882,
+ 882, 882, 199, 1643, 1644, 1643, 202, 866,
+ 1642, 203, 200, 200, 199, 1645, 204, 202,
+ 200, 1646, 201, 1646, 202, 866, 1642, 203,
+ 200, 200, 199, 1647, 1648, 1647, 890, 1048,
+ 890, 890, 891, 203, 890, 200, 200, 890,
+ 890, 890, 890, 890, 199, 1649, 204, 202,
+ 200, 1650, 1651, 1650, 890, 1048, 890, 890,
+ 891, 203, 890, 200, 200, 890, 890, 890,
+ 890, 890, 199, 1652, 204, 202, 200, 1653,
+ 201, 1653, 1054, 203, 200, 200, 199, 1654,
+ 204, 202, 200, 880, 881, 880, 882, 202,
+ 882, 882, 883, 884, 1655, 203, 1655, 882,
+ 200, 200, 882, 882, 882, 882, 199, 880,
+ 881, 880, 882, 202, 882, 882, 883, 884,
+ 1656, 203, 1656, 882, 200, 200, 882, 882,
+ 882, 882, 199, 880, 881, 880, 882, 202,
+ 882, 882, 883, 884, 1657, 203, 1657, 882,
+ 200, 200, 882, 882, 882, 882, 199, 880,
+ 881, 880, 882, 202, 882, 882, 883, 884,
+ 1658, 203, 1658, 882, 200, 200, 882, 882,
+ 882, 882, 199, 1659, 1660, 1659, 882, 202,
+ 882, 882, 883, 1661, 203, 882, 200, 200,
+ 882, 882, 882, 882, 199, 1662, 1663, 1662,
+ 202, 866, 1661, 203, 200, 200, 199, 1664,
+ 204, 202, 200, 1665, 201, 1665, 202, 866,
+ 1661, 203, 200, 200, 199, 1661, 1666, 1661,
+ 890, 265, 890, 890, 1667, 1668, 891, 203,
+ 1667, 1668, 890, 200, 200, 890, 890, 890,
+ 890, 890, 199, 1669, 204, 202, 200, 1670,
+ 894, 1670, 890, 265, 890, 890, 1667, 1668,
+ 891, 203, 1667, 1668, 890, 200, 200, 890,
+ 890, 890, 890, 890, 199, 897, 898, 897,
+ 890, 202, 890, 890, 883, 1671, 203, 1671,
+ 890, 200, 200, 890, 890, 890, 890, 199,
+ 897, 898, 897, 890, 202, 890, 890, 883,
+ 1672, 203, 1672, 890, 200, 200, 890, 890,
+ 890, 890, 199, 897, 898, 897, 890, 202,
+ 890, 890, 883, 1673, 203, 1673, 890, 200,
+ 200, 890, 890, 890, 890, 199, 897, 898,
+ 897, 890, 202, 890, 890, 883, 1674, 203,
+ 1674, 890, 200, 200, 890, 890, 890, 890,
+ 199, 1675, 1676, 1675, 202, 1677, 203, 200,
+ 200, 199, 897, 898, 897, 890, 202, 890,
+ 890, 883, 1678, 203, 1678, 890, 200, 200,
+ 890, 890, 890, 890, 199, 897, 898, 897,
+ 890, 202, 890, 890, 883, 1673, 203, 1673,
+ 890, 200, 200, 890, 890, 890, 890, 199,
+ 1679, 204, 202, 200, 1680, 26, 21, 689,
+ 690, 689, 691, 171, 691, 691, 692, 693,
+ 1681, 172, 1681, 691, 21, 21, 691, 691,
+ 691, 691, 169, 689, 690, 689, 691, 171,
+ 691, 691, 692, 693, 1682, 172, 1682, 691,
+ 21, 21, 691, 691, 691, 691, 169, 689,
+ 690, 689, 691, 171, 691, 691, 692, 693,
+ 1683, 172, 1683, 691, 21, 21, 691, 691,
+ 691, 691, 169, 689, 690, 689, 691, 171,
+ 691, 691, 692, 693, 1684, 172, 1684, 691,
+ 21, 21, 691, 691, 691, 691, 169, 1685,
+ 1686, 1685, 691, 171, 691, 691, 692, 1687,
+ 172, 691, 21, 21, 691, 691, 691, 691,
+ 169, 1688, 1689, 1688, 171, 675, 1687, 172,
+ 21, 21, 169, 1690, 26, 21, 1691, 170,
+ 1691, 171, 675, 1687, 172, 21, 21, 169,
+ 1692, 1693, 1692, 699, 1694, 699, 699, 701,
+ 172, 699, 21, 21, 699, 699, 699, 699,
+ 699, 169, 1695, 26, 21, 1696, 1697, 1696,
+ 699, 1694, 699, 699, 701, 172, 699, 21,
+ 21, 699, 699, 699, 699, 699, 169, 1698,
+ 26, 21, 1699, 170, 1699, 1700, 172, 21,
+ 21, 169, 1701, 1702, 1701, 232, 1703, 233,
+ 21, 21, 230, 1704, 26, 21, 689, 690,
+ 689, 691, 171, 691, 691, 692, 693, 1705,
+ 172, 1705, 691, 21, 21, 691, 691, 691,
+ 691, 169, 689, 690, 689, 691, 171, 691,
+ 691, 692, 693, 1706, 172, 1706, 691, 21,
+ 21, 691, 691, 691, 691, 169, 689, 690,
+ 689, 691, 171, 691, 691, 692, 693, 1707,
+ 172, 1707, 691, 21, 21, 691, 691, 691,
+ 691, 169, 689, 690, 689, 691, 171, 691,
+ 691, 692, 693, 1708, 172, 1708, 691, 21,
+ 21, 691, 691, 691, 691, 169, 1709, 1710,
+ 1709, 691, 171, 691, 691, 692, 1711, 172,
+ 691, 21, 21, 691, 691, 691, 691, 169,
+ 1712, 1713, 1712, 171, 675, 1711, 172, 21,
+ 21, 169, 1714, 26, 21, 1715, 170, 1715,
+ 171, 675, 1711, 172, 21, 21, 169, 1711,
+ 1716, 1711, 699, 700, 699, 699, 1717, 1718,
+ 701, 172, 1717, 1718, 699, 21, 21, 699,
+ 699, 699, 699, 699, 169, 1719, 26, 21,
+ 1720, 704, 1720, 699, 700, 699, 699, 1717,
+ 1718, 701, 172, 1717, 1718, 699, 21, 21,
+ 699, 699, 699, 699, 699, 169, 710, 711,
+ 710, 699, 171, 699, 699, 692, 1721, 172,
+ 1721, 699, 21, 21, 699, 699, 699, 699,
+ 169, 710, 711, 710, 699, 171, 699, 699,
+ 692, 1722, 172, 1722, 699, 21, 21, 699,
+ 699, 699, 699, 169, 710, 711, 710, 699,
+ 171, 699, 699, 692, 1723, 172, 1723, 699,
+ 21, 21, 699, 699, 699, 699, 169, 710,
+ 711, 710, 699, 171, 699, 699, 692, 1724,
+ 172, 1724, 699, 21, 21, 699, 699, 699,
+ 699, 169, 1725, 1726, 1725, 171, 1727, 172,
+ 21, 21, 169, 710, 711, 710, 699, 171,
+ 699, 699, 692, 1728, 172, 1728, 699, 21,
+ 21, 699, 699, 699, 699, 169, 710, 711,
+ 710, 699, 171, 699, 699, 692, 1723, 172,
+ 1723, 699, 21, 21, 699, 699, 699, 699,
+ 169, 1729, 26, 21, 1730, 26, 21, 516,
+ 517, 516, 518, 108, 518, 518, 519, 520,
+ 1731, 109, 1731, 518, 21, 21, 518, 518,
+ 518, 518, 106, 516, 517, 516, 518, 108,
+ 518, 518, 519, 520, 1732, 109, 1732, 518,
+ 21, 21, 518, 518, 518, 518, 106, 1733,
+ 1734, 1733, 518, 108, 518, 518, 519, 1735,
+ 109, 518, 21, 21, 518, 518, 518, 518,
+ 106, 1736, 1737, 1736, 108, 499, 1735, 109,
+ 21, 21, 106, 1738, 26, 21, 1739, 107,
+ 1739, 108, 499, 1735, 109, 21, 21, 106,
+ 1735, 1740, 1735, 526, 1741, 526, 526, 528,
+ 109, 526, 21, 21, 526, 526, 526, 526,
+ 526, 106, 1742, 26, 21, 1743, 1744, 1743,
+ 526, 1741, 526, 526, 528, 109, 526, 21,
+ 21, 526, 526, 526, 526, 526, 106, 1745,
+ 26, 21, 1746, 107, 1746, 1741, 109, 21,
+ 21, 106, 1747, 1748, 1747, 197, 1749, 198,
+ 195, 195, 194, 1750, 26, 21, 516, 517,
+ 516, 518, 108, 518, 518, 519, 520, 1751,
+ 109, 1751, 518, 21, 21, 518, 518, 518,
+ 518, 106, 516, 517, 516, 518, 108, 518,
+ 518, 519, 520, 1752, 109, 1752, 518, 21,
+ 21, 518, 518, 518, 518, 106, 516, 517,
+ 516, 518, 108, 518, 518, 519, 520, 1753,
+ 109, 1753, 518, 21, 21, 518, 518, 518,
+ 518, 106, 516, 517, 516, 518, 108, 518,
+ 518, 519, 520, 1754, 109, 1754, 518, 21,
+ 21, 518, 518, 518, 518, 106, 1755, 1756,
+ 1755, 518, 108, 518, 518, 519, 1757, 109,
+ 518, 21, 21, 518, 518, 518, 518, 106,
+ 1758, 1759, 1758, 108, 499, 1757, 109, 21,
+ 21, 106, 1760, 26, 21, 1761, 107, 1761,
+ 108, 499, 1757, 109, 21, 21, 106, 1762,
+ 1763, 1762, 526, 1764, 526, 526, 528, 109,
+ 526, 21, 21, 526, 526, 526, 526, 526,
+ 106, 1765, 26, 21, 1766, 1767, 1766, 526,
+ 1764, 526, 526, 528, 109, 526, 21, 21,
+ 526, 526, 526, 526, 526, 106, 1768, 26,
+ 21, 1769, 107, 1769, 1770, 109, 21, 21,
+ 106, 1771, 1772, 1771, 232, 1773, 233, 21,
+ 21, 230, 1774, 26, 21, 516, 517, 516,
+ 518, 108, 518, 518, 519, 520, 1775, 109,
+ 1775, 518, 21, 21, 518, 518, 518, 518,
+ 106, 516, 517, 516, 518, 108, 518, 518,
+ 519, 520, 1776, 109, 1776, 518, 21, 21,
+ 518, 518, 518, 518, 106, 516, 517, 516,
+ 518, 108, 518, 518, 519, 520, 1777, 109,
+ 1777, 518, 21, 21, 518, 518, 518, 518,
+ 106, 516, 517, 516, 518, 108, 518, 518,
+ 519, 520, 1778, 109, 1778, 518, 21, 21,
+ 518, 518, 518, 518, 106, 1779, 1780, 1779,
+ 518, 108, 518, 518, 519, 1781, 109, 518,
+ 21, 21, 518, 518, 518, 518, 106, 1782,
+ 1783, 1782, 108, 499, 1781, 109, 21, 21,
+ 106, 1784, 26, 21, 1785, 107, 1785, 108,
+ 499, 1781, 109, 21, 21, 106, 1781, 1786,
+ 1781, 526, 527, 526, 526, 1787, 1788, 528,
+ 109, 1787, 1788, 526, 21, 21, 526, 526,
+ 526, 526, 526, 106, 1789, 26, 21, 1790,
+ 531, 1790, 526, 527, 526, 526, 1787, 1788,
+ 528, 109, 1787, 1788, 526, 21, 21, 526,
+ 526, 526, 526, 526, 106, 537, 538, 537,
+ 526, 108, 526, 526, 519, 1791, 109, 1791,
+ 526, 21, 21, 526, 526, 526, 526, 106,
+ 537, 538, 537, 526, 108, 526, 526, 519,
+ 1792, 109, 1792, 526, 21, 21, 526, 526,
+ 526, 526, 106, 537, 538, 537, 526, 108,
+ 526, 526, 519, 1793, 109, 1793, 526, 21,
+ 21, 526, 526, 526, 526, 106, 537, 538,
+ 537, 526, 108, 526, 526, 519, 1794, 109,
+ 1794, 526, 21, 21, 526, 526, 526, 526,
+ 106, 1795, 1796, 1795, 108, 1797, 109, 21,
+ 21, 106, 537, 538, 537, 526, 108, 526,
+ 526, 519, 1798, 109, 1798, 526, 21, 21,
+ 526, 526, 526, 526, 106, 537, 538, 537,
+ 526, 108, 526, 526, 519, 1793, 109, 1793,
+ 526, 21, 21, 526, 526, 526, 526, 106,
+ 1799, 26, 21, 1800, 398, 396, 394, 438,
+ 439, 438, 440, 396, 440, 440, 441, 442,
+ 1801, 1801, 440, 440, 440, 440, 440, 394,
+ 438, 439, 438, 440, 396, 440, 440, 441,
+ 442, 1802, 1802, 440, 440, 440, 440, 440,
+ 394, 438, 439, 438, 440, 396, 440, 440,
+ 441, 442, 1803, 1803, 440, 440, 440, 440,
+ 440, 394, 438, 439, 438, 440, 396, 440,
+ 440, 441, 442, 1804, 1804, 440, 440, 440,
+ 440, 440, 394, 1805, 1806, 1805, 440, 396,
+ 440, 440, 441, 1807, 440, 440, 440, 440,
+ 440, 394, 1808, 1809, 1808, 396, 445, 1807,
+ 394, 1810, 398, 396, 394, 1811, 398, 1811,
+ 396, 445, 1807, 394, 1807, 1812, 1807, 463,
+ 396, 463, 463, 464, 463, 463, 463, 463,
+ 463, 463, 394, 1813, 398, 396, 394, 1814,
+ 398, 1814, 463, 396, 463, 463, 464, 463,
+ 463, 463, 463, 463, 463, 394, 1815, 398,
+ 396, 394, 438, 439, 438, 440, 396, 440,
+ 440, 441, 442, 1816, 1816, 440, 440, 440,
+ 440, 440, 394, 438, 439, 438, 440, 396,
+ 440, 440, 441, 442, 1817, 1817, 440, 440,
+ 440, 440, 440, 394, 438, 439, 438, 440,
+ 396, 440, 440, 441, 442, 1818, 1818, 440,
+ 440, 440, 440, 440, 394, 438, 439, 438,
+ 440, 396, 440, 440, 441, 442, 1819, 1819,
+ 440, 440, 440, 440, 440, 394, 438, 439,
+ 438, 440, 396, 440, 440, 441, 442, 1820,
+ 1820, 440, 440, 440, 440, 440, 394, 438,
+ 439, 438, 440, 396, 440, 440, 441, 442,
+ 1821, 1821, 440, 440, 440, 440, 440, 394,
+ 438, 439, 438, 440, 396, 440, 440, 441,
+ 442, 1822, 1822, 440, 440, 440, 440, 440,
+ 394, 1823, 1824, 1823, 440, 396, 440, 440,
+ 441, 1825, 440, 440, 440, 440, 440, 394,
+ 1826, 1827, 1826, 396, 445, 1825, 394, 1828,
+ 398, 396, 394, 1829, 398, 1829, 396, 445,
+ 1825, 394, 1825, 1830, 1825, 1831, 401, 1831,
+ 1831, 464, 1831, 1831, 1831, 1831, 1831, 1831,
+ 394, 1832, 398, 396, 394, 1833, 467, 1833,
+ 1831, 401, 1831, 1831, 464, 1831, 1831, 1831,
+ 1831, 1831, 1831, 394, 1834, 1835, 1834, 1836,
+ 396, 1836, 1836, 1837, 1836, 1836, 1836, 1836,
+ 1836, 394, 1838, 398, 396, 394, 395, 396,
+ 1840, 397, 394, 394, 394, 1839, 1839, 1839,
+ 393, 395, 396, 1842, 397, 1843, 394, 394,
+ 394, 1841, 1841, 1841, 393, 395, 396, 1842,
+ 397, 1843, 394, 394, 394, 1844, 1844, 1844,
+ 393, 395, 396, 1842, 397, 1843, 394, 394,
+ 394, 1845, 1845, 1845, 393, 395, 396, 1842,
+ 397, 1843, 394, 394, 394, 393, 395, 396,
+ 1847, 397, 394, 394, 394, 1846, 1839, 1839,
+ 393, 395, 396, 1848, 1842, 397, 1843, 394,
+ 394, 394, 1849, 1841, 1841, 393, 395, 396,
+ 397, 394, 394, 394, 1850, 393, 395, 396,
+ 1851, 397, 394, 394, 394, 1852, 393, 395,
+ 396, 397, 394, 394, 394, 1853, 393, 395,
+ 396, 1854, 397, 394, 394, 394, 1855, 393,
+ 395, 396, 397, 394, 394, 394, 1856, 393,
+ 395, 396, 397, 1843, 394, 394, 394, 1857,
+ 393, 395, 396, 397, 1843, 394, 394, 394,
+ 1858, 393, 395, 396, 397, 1843, 394, 394,
+ 394, 393, 435, 436, 435, 396, 421, 397,
+ 394, 394, 393, 395, 396, 1854, 397, 394,
+ 394, 394, 1859, 393, 395, 396, 1854, 397,
+ 394, 394, 394, 393, 395, 396, 1851, 397,
+ 394, 394, 394, 1860, 393, 395, 396, 1851,
+ 397, 394, 394, 394, 393, 395, 396, 1848,
+ 1842, 397, 1843, 394, 394, 394, 1861, 1844,
+ 1844, 393, 395, 396, 1848, 1842, 397, 1843,
+ 394, 394, 394, 1845, 1845, 1845, 393, 395,
+ 396, 1863, 397, 1843, 394, 394, 394, 1862,
+ 1862, 1862, 393, 395, 396, 1865, 397, 1843,
+ 394, 394, 394, 1864, 1864, 1864, 393, 395,
+ 396, 1865, 397, 1843, 394, 394, 394, 1866,
+ 1866, 1866, 393, 395, 396, 1865, 397, 1843,
+ 394, 394, 394, 1867, 1867, 1867, 393, 395,
+ 396, 1865, 397, 1843, 394, 394, 394, 393,
+ 395, 396, 397, 394, 394, 394, 1868, 1862,
+ 1862, 393, 395, 396, 1848, 1865, 397, 1843,
+ 394, 394, 394, 1869, 1864, 1864, 393, 395,
+ 396, 1848, 1865, 397, 1843, 394, 394, 394,
+ 1870, 1866, 1866, 393, 395, 396, 1848, 1865,
+ 397, 1843, 394, 394, 394, 1867, 1867, 1867,
+ 393, 395, 396, 397, 394, 394, 394, 1871,
+ 393, 395, 396, 1848, 397, 394, 394, 394,
+ 1872, 393, 395, 396, 1848, 397, 394, 394,
+ 394, 1873, 393, 395, 396, 1848, 397, 394,
+ 394, 394, 393, 395, 396, 1847, 397, 394,
+ 394, 394, 393, 1874, 398, 396, 394, 418,
+ 419, 418, 420, 396, 420, 420, 421, 422,
+ 1875, 397, 1875, 420, 394, 394, 420, 420,
+ 420, 420, 393, 418, 419, 418, 420, 396,
+ 420, 420, 421, 422, 1876, 397, 1876, 420,
+ 394, 394, 420, 420, 420, 420, 393, 418,
+ 419, 418, 420, 396, 420, 420, 421, 422,
+ 1877, 397, 1877, 420, 394, 394, 420, 420,
+ 420, 420, 393, 418, 419, 418, 420, 396,
+ 420, 420, 421, 422, 1878, 397, 1878, 420,
+ 394, 394, 420, 420, 420, 420, 393, 418,
+ 419, 418, 420, 396, 420, 420, 421, 422,
+ 1879, 397, 1879, 420, 394, 394, 420, 420,
+ 420, 420, 393, 418, 419, 418, 420, 396,
+ 420, 420, 421, 422, 1880, 397, 1880, 420,
+ 394, 394, 420, 420, 420, 420, 393, 418,
+ 419, 418, 420, 396, 420, 420, 421, 422,
+ 1881, 397, 1881, 420, 394, 394, 420, 420,
+ 420, 420, 393, 418, 419, 418, 420, 396,
+ 420, 420, 421, 422, 1882, 397, 1882, 420,
+ 394, 394, 420, 420, 420, 420, 393, 1883,
+ 1884, 1883, 420, 396, 420, 420, 421, 1885,
+ 397, 420, 394, 394, 420, 420, 420, 420,
+ 393, 1886, 1887, 1886, 396, 404, 1885, 397,
+ 394, 394, 393, 1888, 398, 396, 394, 1889,
+ 395, 1889, 396, 404, 1885, 397, 394, 394,
+ 393, 1885, 1890, 1885, 1891, 401, 1891, 1891,
+ 429, 397, 1891, 394, 394, 1891, 1891, 1891,
+ 1891, 1891, 393, 1892, 398, 396, 394, 1893,
+ 432, 1893, 1891, 401, 1891, 1891, 429, 397,
+ 1891, 394, 394, 1891, 1891, 1891, 1891, 1891,
+ 393, 1894, 1895, 1894, 1896, 396, 1896, 1896,
+ 1897, 397, 1896, 394, 394, 1896, 1896, 1896,
+ 1896, 393, 1898, 398, 396, 394, 418, 419,
+ 418, 420, 396, 420, 420, 421, 422, 1899,
+ 397, 1899, 420, 394, 394, 420, 420, 420,
+ 420, 393, 418, 419, 418, 420, 396, 420,
+ 420, 421, 422, 1900, 397, 1900, 420, 394,
+ 394, 420, 420, 420, 420, 393, 418, 419,
+ 418, 420, 396, 420, 420, 421, 422, 1901,
+ 397, 1901, 420, 394, 394, 420, 420, 420,
+ 420, 393, 418, 419, 418, 420, 396, 420,
+ 420, 421, 422, 1902, 397, 1902, 420, 394,
+ 394, 420, 420, 420, 420, 393, 418, 419,
+ 418, 420, 396, 420, 420, 421, 422, 1903,
+ 397, 1903, 420, 394, 394, 420, 420, 420,
+ 420, 393, 1904, 1905, 1904, 420, 396, 420,
+ 420, 421, 1906, 397, 420, 394, 394, 420,
+ 420, 420, 420, 393, 1907, 1908, 1907, 396,
+ 404, 1906, 397, 394, 394, 393, 1909, 398,
+ 396, 394, 1910, 395, 1910, 396, 404, 1906,
+ 397, 394, 394, 393, 1906, 1911, 1906, 428,
+ 396, 428, 428, 429, 397, 428, 394, 394,
+ 428, 428, 428, 428, 428, 393, 1912, 398,
+ 396, 394, 1913, 395, 1913, 428, 396, 428,
+ 428, 429, 397, 428, 394, 394, 428, 428,
+ 428, 428, 428, 393, 1914, 398, 396, 394,
+ 418, 419, 418, 420, 396, 420, 420, 421,
+ 422, 1915, 397, 1915, 420, 394, 394, 420,
+ 420, 420, 420, 393, 418, 419, 418, 420,
+ 396, 420, 420, 421, 422, 1916, 397, 1916,
+ 420, 394, 394, 420, 420, 420, 420, 393,
+ 418, 419, 418, 420, 396, 420, 420, 421,
+ 422, 1917, 397, 1917, 420, 394, 394, 420,
+ 420, 420, 420, 393, 418, 419, 418, 420,
+ 396, 420, 420, 421, 422, 1918, 397, 1918,
+ 420, 394, 394, 420, 420, 420, 420, 393,
+ 1919, 1920, 1919, 420, 396, 420, 420, 421,
+ 1921, 397, 420, 394, 394, 420, 420, 420,
+ 420, 393, 1922, 1923, 1922, 396, 404, 1921,
+ 397, 394, 394, 393, 1924, 398, 396, 394,
+ 1925, 395, 1925, 396, 404, 1921, 397, 394,
+ 394, 393, 1926, 1927, 1926, 428, 490, 428,
+ 428, 429, 397, 428, 394, 394, 428, 428,
+ 428, 428, 428, 393, 1928, 398, 396, 394,
+ 1929, 1930, 1929, 428, 490, 428, 428, 429,
+ 397, 428, 394, 394, 428, 428, 428, 428,
+ 428, 393, 1931, 398, 396, 394, 1932, 395,
+ 1932, 496, 397, 394, 394, 393, 1933, 398,
+ 396, 394, 418, 419, 418, 420, 396, 420,
+ 420, 421, 422, 1934, 397, 1934, 420, 394,
+ 394, 420, 420, 420, 420, 393, 418, 419,
+ 418, 420, 396, 420, 420, 421, 422, 1935,
+ 397, 1935, 420, 394, 394, 420, 420, 420,
+ 420, 393, 418, 419, 418, 420, 396, 420,
+ 420, 421, 422, 1936, 397, 1936, 420, 394,
+ 394, 420, 420, 420, 420, 393, 418, 419,
+ 418, 420, 396, 420, 420, 421, 422, 1937,
+ 397, 1937, 420, 394, 394, 420, 420, 420,
+ 420, 393, 418, 419, 418, 420, 396, 420,
+ 420, 421, 422, 1938, 397, 1938, 420, 394,
+ 394, 420, 420, 420, 420, 393, 1939, 1940,
+ 1939, 420, 396, 420, 420, 421, 1941, 397,
+ 420, 394, 394, 420, 420, 420, 420, 393,
+ 1942, 1943, 1942, 396, 404, 1941, 397, 394,
+ 394, 393, 1944, 398, 396, 394, 1945, 395,
+ 1945, 396, 404, 1941, 397, 394, 394, 393,
+ 1946, 1947, 1946, 428, 1367, 428, 428, 429,
+ 397, 428, 394, 394, 428, 428, 428, 428,
+ 428, 393, 1948, 398, 396, 394, 1949, 1950,
+ 1949, 428, 1367, 428, 428, 429, 397, 428,
+ 394, 394, 428, 428, 428, 428, 428, 393,
+ 1951, 398, 396, 394, 1952, 395, 1952, 1373,
+ 397, 394, 394, 393, 1953, 398, 396, 394,
+ 418, 419, 418, 420, 396, 420, 420, 421,
+ 422, 1954, 397, 1954, 420, 394, 394, 420,
+ 420, 420, 420, 393, 418, 419, 418, 420,
+ 396, 420, 420, 421, 422, 1955, 397, 1955,
+ 420, 394, 394, 420, 420, 420, 420, 393,
+ 1956, 1957, 1956, 420, 396, 420, 420, 421,
+ 1958, 397, 420, 394, 394, 420, 420, 420,
+ 420, 393, 1959, 1960, 1959, 396, 404, 1958,
+ 397, 394, 394, 393, 1961, 398, 396, 394,
+ 1962, 395, 1962, 396, 404, 1958, 397, 394,
+ 394, 393, 1958, 1963, 1958, 428, 1420, 428,
+ 428, 429, 397, 428, 394, 394, 428, 428,
+ 428, 428, 428, 393, 1964, 398, 396, 394,
+ 1965, 1966, 1965, 428, 1420, 428, 428, 429,
+ 397, 428, 394, 394, 428, 428, 428, 428,
+ 428, 393, 1967, 398, 396, 394, 1968, 395,
+ 1968, 1420, 397, 394, 394, 393, 1969, 398,
+ 396, 394, 418, 419, 418, 420, 396, 420,
+ 420, 421, 422, 1970, 397, 1970, 420, 394,
+ 394, 420, 420, 420, 420, 393, 418, 419,
+ 418, 420, 396, 420, 420, 421, 422, 1971,
+ 397, 1971, 420, 394, 394, 420, 420, 420,
+ 420, 393, 418, 419, 418, 420, 396, 420,
+ 420, 421, 422, 1972, 397, 1972, 420, 394,
+ 394, 420, 420, 420, 420, 393, 418, 419,
+ 418, 420, 396, 420, 420, 421, 422, 1973,
+ 397, 1973, 420, 394, 394, 420, 420, 420,
+ 420, 393, 1974, 1975, 1974, 420, 396, 420,
+ 420, 421, 1976, 397, 420, 394, 394, 420,
+ 420, 420, 420, 393, 1977, 1978, 1977, 396,
+ 404, 1976, 397, 394, 394, 393, 1979, 398,
+ 396, 394, 1980, 395, 1980, 396, 404, 1976,
+ 397, 394, 394, 393, 1981, 1982, 1981, 428,
+ 1448, 428, 428, 429, 397, 428, 394, 394,
+ 428, 428, 428, 428, 428, 393, 1983, 398,
+ 396, 394, 1984, 1985, 1984, 428, 1448, 428,
+ 428, 429, 397, 428, 394, 394, 428, 428,
+ 428, 428, 428, 393, 1986, 398, 396, 394,
+ 1987, 395, 1987, 1454, 397, 394, 394, 393,
+ 1988, 398, 396, 394, 418, 419, 418, 420,
+ 396, 420, 420, 421, 422, 1989, 397, 1989,
+ 420, 394, 394, 420, 420, 420, 420, 393,
+ 418, 419, 418, 420, 396, 420, 420, 421,
+ 422, 1990, 397, 1990, 420, 394, 394, 420,
+ 420, 420, 420, 393, 418, 419, 418, 420,
+ 396, 420, 420, 421, 422, 1991, 397, 1991,
+ 420, 394, 394, 420, 420, 420, 420, 393,
+ 418, 419, 418, 420, 396, 420, 420, 421,
+ 422, 1992, 397, 1992, 420, 394, 394, 420,
+ 420, 420, 420, 393, 1993, 1994, 1993, 420,
+ 396, 420, 420, 421, 1995, 397, 420, 394,
+ 394, 420, 420, 420, 420, 393, 1996, 1997,
+ 1996, 396, 404, 1995, 397, 394, 394, 393,
+ 1998, 398, 396, 394, 1999, 395, 1999, 396,
+ 404, 1995, 397, 394, 394, 393, 1995, 2000,
+ 1995, 428, 401, 428, 428, 2001, 2002, 429,
+ 397, 2001, 2002, 428, 394, 394, 428, 428,
+ 428, 428, 428, 393, 2003, 398, 396, 394,
+ 2004, 432, 2004, 428, 401, 428, 428, 2001,
+ 2002, 429, 397, 2001, 2002, 428, 394, 394,
+ 428, 428, 428, 428, 428, 393, 435, 436,
+ 435, 428, 396, 428, 428, 421, 2005, 397,
+ 2005, 428, 394, 394, 428, 428, 428, 428,
+ 393, 435, 436, 435, 428, 396, 428, 428,
+ 421, 2006, 397, 2006, 428, 394, 394, 428,
+ 428, 428, 428, 393, 435, 436, 435, 428,
+ 396, 428, 428, 421, 2007, 397, 2007, 428,
+ 394, 394, 428, 428, 428, 428, 393, 435,
+ 436, 435, 428, 396, 428, 428, 421, 2008,
+ 397, 2008, 428, 394, 394, 428, 428, 428,
+ 428, 393, 2009, 2010, 2009, 396, 2011, 397,
+ 394, 394, 393, 435, 436, 435, 428, 396,
+ 428, 428, 421, 2012, 397, 2012, 428, 394,
+ 394, 428, 428, 428, 428, 393, 435, 436,
+ 435, 428, 396, 428, 428, 421, 2007, 397,
+ 2007, 428, 394, 394, 428, 428, 428, 428,
+ 393, 2013, 398, 396, 394, 2014, 26, 21,
+ 285, 286, 285, 287, 77, 287, 287, 288,
+ 289, 2015, 78, 2015, 287, 21, 21, 287,
+ 287, 287, 287, 69, 285, 286, 285, 287,
+ 77, 287, 287, 288, 289, 2016, 78, 2016,
+ 287, 21, 21, 287, 287, 287, 287, 69,
+ 285, 286, 285, 287, 77, 287, 287, 288,
+ 289, 2017, 78, 2017, 287, 21, 21, 287,
+ 287, 287, 287, 69, 285, 286, 285, 287,
+ 77, 287, 287, 288, 289, 2018, 78, 2018,
+ 287, 21, 21, 287, 287, 287, 287, 69,
+ 2019, 2020, 2019, 287, 77, 287, 287, 288,
+ 2021, 78, 287, 21, 21, 287, 287, 287,
+ 287, 69, 2022, 2023, 2022, 77, 268, 2021,
+ 78, 21, 21, 69, 2024, 26, 21, 2025,
+ 76, 2025, 77, 268, 2021, 78, 21, 21,
+ 69, 2026, 2027, 2026, 295, 2028, 295, 295,
+ 297, 78, 295, 21, 21, 295, 295, 295,
+ 295, 295, 69, 2029, 26, 21, 2030, 2031,
+ 2030, 295, 2028, 295, 295, 297, 78, 295,
+ 21, 21, 295, 295, 295, 295, 295, 69,
+ 2032, 26, 21, 2033, 76, 2033, 546, 78,
+ 21, 21, 69, 2034, 26, 21, 285, 286,
+ 285, 287, 77, 287, 287, 288, 289, 2035,
+ 78, 2035, 287, 21, 21, 287, 287, 287,
+ 287, 69, 285, 286, 285, 287, 77, 287,
+ 287, 288, 289, 2036, 78, 2036, 287, 21,
+ 21, 287, 287, 287, 287, 69, 285, 286,
+ 285, 287, 77, 287, 287, 288, 289, 2037,
+ 78, 2037, 287, 21, 21, 287, 287, 287,
+ 287, 69, 285, 286, 285, 287, 77, 287,
+ 287, 288, 289, 2038, 78, 2038, 287, 21,
+ 21, 287, 287, 287, 287, 69, 285, 286,
+ 285, 287, 77, 287, 287, 288, 289, 2039,
+ 78, 2039, 287, 21, 21, 287, 287, 287,
+ 287, 69, 2040, 2041, 2040, 287, 77, 287,
+ 287, 288, 2042, 78, 287, 21, 21, 287,
+ 287, 287, 287, 69, 2043, 2044, 2043, 77,
+ 268, 2042, 78, 21, 21, 69, 2045, 26,
+ 21, 2046, 76, 2046, 77, 268, 2042, 78,
+ 21, 21, 69, 2047, 2048, 2047, 295, 2049,
+ 295, 295, 297, 78, 295, 21, 21, 295,
+ 295, 295, 295, 295, 69, 2050, 26, 21,
+ 2051, 2052, 2051, 295, 2049, 295, 295, 297,
+ 78, 295, 21, 21, 295, 295, 295, 295,
+ 295, 69, 2053, 26, 21, 2054, 76, 2054,
+ 717, 78, 21, 21, 69, 2055, 26, 21,
+ 285, 286, 285, 287, 77, 287, 287, 288,
+ 289, 2056, 78, 2056, 287, 21, 21, 287,
+ 287, 287, 287, 69, 285, 286, 285, 287,
+ 77, 287, 287, 288, 289, 2057, 78, 2057,
+ 287, 21, 21, 287, 287, 287, 287, 69,
+ 2058, 2059, 2058, 287, 77, 287, 287, 288,
+ 2060, 78, 287, 21, 21, 287, 287, 287,
+ 287, 69, 2061, 2062, 2061, 77, 268, 2060,
+ 78, 21, 21, 69, 2063, 26, 21, 2064,
+ 76, 2064, 77, 268, 2060, 78, 21, 21,
+ 69, 2060, 2065, 2060, 295, 2066, 295, 295,
+ 297, 78, 295, 21, 21, 295, 295, 295,
+ 295, 295, 69, 2067, 26, 21, 2068, 2069,
+ 2068, 295, 2066, 295, 295, 297, 78, 295,
+ 21, 21, 295, 295, 295, 295, 295, 69,
+ 2070, 26, 21, 2071, 76, 2071, 2066, 78,
+ 21, 21, 69, 2072, 2073, 2072, 197, 2074,
+ 198, 195, 195, 194, 2075, 26, 21, 285,
+ 286, 285, 287, 77, 287, 287, 288, 289,
+ 2076, 78, 2076, 287, 21, 21, 287, 287,
+ 287, 287, 69, 285, 286, 285, 287, 77,
+ 287, 287, 288, 289, 2077, 78, 2077, 287,
+ 21, 21, 287, 287, 287, 287, 69, 285,
+ 286, 285, 287, 77, 287, 287, 288, 289,
+ 2078, 78, 2078, 287, 21, 21, 287, 287,
+ 287, 287, 69, 285, 286, 285, 287, 77,
+ 287, 287, 288, 289, 2079, 78, 2079, 287,
+ 21, 21, 287, 287, 287, 287, 69, 2080,
+ 2081, 2080, 287, 77, 287, 287, 288, 2082,
+ 78, 287, 21, 21, 287, 287, 287, 287,
+ 69, 2083, 2084, 2083, 77, 268, 2082, 78,
+ 21, 21, 69, 2085, 26, 21, 2086, 76,
+ 2086, 77, 268, 2082, 78, 21, 21, 69,
+ 2087, 2088, 2087, 295, 2089, 295, 295, 297,
+ 78, 295, 21, 21, 295, 295, 295, 295,
+ 295, 69, 2090, 26, 21, 2091, 2092, 2091,
+ 295, 2089, 295, 295, 297, 78, 295, 21,
+ 21, 295, 295, 295, 295, 295, 69, 2093,
+ 26, 21, 2094, 76, 2094, 1104, 78, 21,
+ 21, 69, 2095, 26, 21, 285, 286, 285,
+ 287, 77, 287, 287, 288, 289, 2096, 78,
+ 2096, 287, 21, 21, 287, 287, 287, 287,
+ 69, 285, 286, 285, 287, 77, 287, 287,
+ 288, 289, 2097, 78, 2097, 287, 21, 21,
+ 287, 287, 287, 287, 69, 285, 286, 285,
+ 287, 77, 287, 287, 288, 289, 2098, 78,
+ 2098, 287, 21, 21, 287, 287, 287, 287,
+ 69, 285, 286, 285, 287, 77, 287, 287,
+ 288, 289, 2099, 78, 2099, 287, 21, 21,
+ 287, 287, 287, 287, 69, 2100, 2101, 2100,
+ 287, 77, 287, 287, 288, 2102, 78, 287,
+ 21, 21, 287, 287, 287, 287, 69, 2103,
+ 2104, 2103, 77, 268, 2102, 78, 21, 21,
+ 69, 2105, 26, 21, 2106, 76, 2106, 77,
+ 268, 2102, 78, 21, 21, 69, 2102, 2107,
+ 2102, 295, 296, 295, 295, 2108, 2109, 297,
+ 78, 2108, 2109, 295, 21, 21, 295, 295,
+ 295, 295, 295, 69, 2110, 26, 21, 2111,
+ 300, 2111, 295, 296, 295, 295, 2108, 2109,
+ 297, 78, 2108, 2109, 295, 21, 21, 295,
+ 295, 295, 295, 295, 69, 303, 304, 303,
+ 295, 77, 295, 295, 288, 2112, 78, 2112,
+ 295, 21, 21, 295, 295, 295, 295, 69,
+ 303, 304, 303, 295, 77, 295, 295, 288,
+ 2113, 78, 2113, 295, 21, 21, 295, 295,
+ 295, 295, 69, 303, 304, 303, 295, 77,
+ 295, 295, 288, 2114, 78, 2114, 295, 21,
+ 21, 295, 295, 295, 295, 69, 303, 304,
+ 303, 295, 77, 295, 295, 288, 2115, 78,
+ 2115, 295, 21, 21, 295, 295, 295, 295,
+ 69, 2116, 2117, 2116, 77, 2118, 78, 21,
+ 21, 69, 303, 304, 303, 295, 77, 295,
+ 295, 288, 2119, 78, 2119, 295, 21, 21,
+ 295, 295, 295, 295, 69, 303, 304, 303,
+ 295, 77, 295, 295, 288, 2114, 78, 2114,
+ 295, 21, 21, 295, 295, 295, 295, 69,
+ 2120, 26, 21, 2121, 26, 21, 49, 50,
+ 49, 51, 51, 51, 52, 53, 2122, 2122,
+ 51, 51, 51, 51, 51, 21, 49, 50,
+ 49, 51, 51, 51, 52, 53, 2123, 2123,
+ 51, 51, 51, 51, 51, 21, 49, 50,
+ 49, 51, 51, 51, 52, 53, 2124, 2124,
+ 51, 51, 51, 51, 51, 21, 49, 50,
+ 49, 51, 51, 51, 52, 53, 2125, 2125,
+ 51, 51, 51, 51, 51, 21, 2126, 2127,
+ 2126, 51, 51, 51, 52, 2128, 51, 51,
+ 51, 51, 51, 21, 2129, 2130, 2129, 56,
+ 2128, 21, 2131, 26, 21, 2132, 26, 2132,
+ 56, 2128, 21, 2128, 2133, 2128, 68, 2134,
+ 68, 68, 70, 68, 68, 68, 68, 68,
+ 68, 21, 2135, 26, 21, 2136, 2137, 2136,
+ 68, 2134, 68, 68, 70, 68, 68, 68,
+ 68, 68, 68, 21, 2138, 26, 21, 2139,
+ 26, 2139, 2134, 21, 2140, 390, 392, 387,
+ 387, 387, 386, 2141, 26, 21, 49, 50,
+ 49, 51, 51, 51, 52, 53, 2142, 2142,
+ 51, 51, 51, 51, 51, 21, 49, 50,
+ 49, 51, 51, 51, 52, 53, 2143, 2143,
+ 51, 51, 51, 51, 51, 21, 49, 50,
+ 49, 51, 51, 51, 52, 53, 2144, 2144,
+ 51, 51, 51, 51, 51, 21, 49, 50,
+ 49, 51, 51, 51, 52, 53, 2145, 2145,
+ 51, 51, 51, 51, 51, 21, 49, 50,
+ 49, 51, 51, 51, 52, 53, 2146, 2146,
+ 51, 51, 51, 51, 51, 21, 49, 50,
+ 49, 51, 51, 51, 52, 53, 2147, 2147,
+ 51, 51, 51, 51, 51, 21, 49, 50,
+ 49, 51, 51, 51, 52, 53, 2148, 2148,
+ 51, 51, 51, 51, 51, 21, 2149, 2150,
+ 2149, 51, 51, 51, 52, 2151, 51, 51,
+ 51, 51, 51, 21, 2152, 2153, 2152, 56,
+ 2151, 21, 2154, 26, 21, 2155, 26, 2155,
+ 56, 2151, 21, 2151, 2156, 2151, 2157, 69,
+ 2157, 2157, 70, 2157, 2157, 2157, 2157, 2157,
+ 2157, 21, 2158, 26, 21, 2159, 73, 2159,
+ 2157, 69, 2157, 2157, 70, 2157, 2157, 2157,
+ 2157, 2157, 2157, 21, 2160, 2161, 2160, 2162,
+ 2162, 2162, 2163, 2162, 2162, 2162, 2162, 2162,
+ 21, 2164, 26, 21, 49, 50, 49, 51,
+ 51, 51, 52, 53, 2165, 2165, 51, 51,
+ 51, 51, 51, 21, 49, 50, 49, 51,
+ 51, 51, 52, 53, 2166, 2166, 51, 51,
+ 51, 51, 51, 21, 49, 50, 49, 51,
+ 51, 51, 52, 53, 2167, 2167, 51, 51,
+ 51, 51, 51, 21, 49, 50, 49, 51,
+ 51, 51, 52, 53, 2168, 2168, 51, 51,
+ 51, 51, 51, 21, 49, 50, 49, 51,
+ 51, 51, 52, 53, 2169, 2169, 51, 51,
+ 51, 51, 51, 21, 2170, 2171, 2170, 51,
+ 51, 51, 52, 2172, 51, 51, 51, 51,
+ 51, 21, 2173, 2174, 2173, 56, 2172, 21,
+ 2175, 26, 21, 2176, 26, 2176, 56, 2172,
+ 21, 2172, 2177, 2172, 68, 2178, 68, 68,
+ 70, 68, 68, 68, 68, 68, 68, 21,
+ 2179, 26, 21, 2180, 2181, 2180, 68, 2178,
+ 68, 68, 70, 68, 68, 68, 68, 68,
+ 68, 21, 2182, 26, 21, 2183, 26, 2183,
+ 2178, 21, 2185, 390, 2186, 387, 387, 387,
+ 2184, 2188, 396, 2189, 394, 394, 394, 2187,
+ 2190, 398, 396, 394, 398, 2191, 2187, 2187,
+ 394, 2192, 2193, 2192, 77, 2194, 78, 21,
+ 21, 69, 2195, 26, 21, 2196, 2197, 2196,
+ 77, 2194, 78, 21, 21, 69, 2198, 26,
+ 21, 2199, 76, 2199, 77, 2194, 78, 21,
+ 21, 69, 2194, 2200, 2194, 2201, 77, 2201,
+ 2201, 2202, 2203, 2204, 2205, 2206, 2207, 2208,
+ 78, 2202, 2203, 2204, 2205, 2206, 2207, 2208,
+ 2201, 21, 21, 2201, 2201, 2201, 2201, 2201,
+ 69, 2209, 26, 21, 2210, 76, 2210, 2201,
+ 77, 2201, 2201, 2202, 2203, 2204, 2205, 2206,
+ 2207, 2208, 78, 2202, 2203, 2204, 2205, 2206,
+ 2207, 2208, 2201, 21, 21, 2201, 2201, 2201,
+ 2201, 2201, 69, 2211, 2212, 2211, 2213, 77,
+ 2213, 2213, 2214, 2215, 78, 2213, 21, 21,
+ 2213, 2213, 2213, 2213, 69, 2216, 2217, 2216,
+ 77, 2194, 2215, 78, 21, 21, 69, 2218,
+ 26, 21, 2219, 76, 2219, 77, 2194, 2215,
+ 78, 21, 21, 69, 2215, 2220, 2215, 2221,
+ 296, 2221, 2221, 2222, 78, 2221, 21, 21,
+ 2221, 2221, 2221, 2221, 2221, 69, 2223, 26,
+ 21, 2224, 300, 2224, 2221, 296, 2221, 2221,
+ 2222, 78, 2221, 21, 21, 2221, 2221, 2221,
+ 2221, 2221, 69, 2225, 2226, 2225, 2221, 77,
+ 2221, 2221, 2214, 78, 2221, 21, 21, 2221,
+ 2221, 2221, 2221, 69, 2227, 2228, 2227, 77,
+ 2194, 78, 21, 21, 69, 2229, 26, 21,
+ 76, 77, 2231, 78, 21, 21, 21, 2230,
+ 2230, 2230, 69, 76, 77, 2233, 78, 2234,
+ 21, 21, 21, 2232, 2232, 2232, 69, 76,
+ 77, 2233, 78, 2234, 21, 21, 21, 2235,
+ 2235, 2235, 69, 76, 77, 2233, 78, 2234,
+ 21, 21, 21, 2236, 2236, 2236, 69, 76,
+ 77, 2233, 78, 2234, 21, 21, 21, 69,
+ 76, 77, 2238, 78, 21, 21, 21, 2237,
+ 2230, 2230, 69, 76, 77, 2239, 2233, 78,
+ 2234, 21, 21, 21, 2240, 2232, 2232, 69,
+ 76, 77, 78, 21, 21, 21, 2241, 69,
+ 76, 77, 2242, 78, 21, 21, 21, 2243,
+ 69, 76, 77, 78, 21, 21, 21, 2244,
+ 69, 76, 77, 2245, 78, 21, 21, 21,
+ 2246, 69, 76, 77, 78, 21, 21, 21,
+ 2247, 69, 76, 77, 78, 2234, 21, 21,
+ 21, 2248, 69, 76, 77, 78, 2234, 21,
+ 21, 21, 2249, 69, 76, 77, 78, 2234,
+ 21, 21, 21, 69, 2225, 2226, 2225, 77,
+ 2214, 78, 21, 21, 69, 76, 77, 2245,
+ 78, 21, 21, 21, 2250, 69, 76, 77,
+ 2245, 78, 21, 21, 21, 69, 76, 77,
+ 2242, 78, 21, 21, 21, 2251, 69, 76,
+ 77, 2242, 78, 21, 21, 21, 69, 76,
+ 77, 2239, 2233, 78, 2234, 21, 21, 21,
+ 2252, 2235, 2235, 69, 76, 77, 2239, 2233,
+ 78, 2234, 21, 21, 21, 2236, 2236, 2236,
+ 69, 76, 77, 2254, 78, 2234, 21, 21,
+ 21, 2253, 2253, 2253, 69, 76, 77, 2256,
+ 78, 2234, 21, 21, 21, 2255, 2255, 2255,
+ 69, 76, 77, 2256, 78, 2234, 21, 21,
+ 21, 2257, 2257, 2257, 69, 76, 77, 2256,
+ 78, 2234, 21, 21, 21, 2258, 2258, 2258,
+ 69, 76, 77, 2256, 78, 2234, 21, 21,
+ 21, 69, 76, 77, 78, 21, 21, 21,
+ 2259, 2253, 2253, 69, 76, 77, 2239, 2256,
+ 78, 2234, 21, 21, 21, 2260, 2255, 2255,
+ 69, 76, 77, 2239, 2256, 78, 2234, 21,
+ 21, 21, 2261, 2257, 2257, 69, 76, 77,
+ 2239, 2256, 78, 2234, 21, 21, 21, 2258,
+ 2258, 2258, 69, 76, 77, 78, 21, 21,
+ 21, 2262, 69, 76, 77, 2239, 78, 21,
+ 21, 21, 2263, 69, 76, 77, 2239, 78,
+ 21, 21, 21, 2264, 69, 76, 77, 2239,
+ 78, 21, 21, 21, 69, 76, 77, 2238,
+ 78, 21, 21, 21, 69, 2265, 26, 21,
+ 2211, 2212, 2211, 2213, 77, 2213, 2213, 2214,
+ 2215, 2266, 78, 2266, 2213, 21, 21, 2213,
+ 2213, 2213, 2213, 69, 2211, 2212, 2211, 2213,
+ 77, 2213, 2213, 2214, 2215, 2267, 78, 2267,
+ 2213, 21, 21, 2213, 2213, 2213, 2213, 69,
+ 2211, 2212, 2211, 2213, 77, 2213, 2213, 2214,
+ 2215, 2268, 78, 2268, 2213, 21, 21, 2213,
+ 2213, 2213, 2213, 69, 2211, 2212, 2211, 2213,
+ 77, 2213, 2213, 2214, 2215, 2269, 78, 2269,
+ 2213, 21, 21, 2213, 2213, 2213, 2213, 69,
+ 2211, 2212, 2211, 2213, 77, 2213, 2213, 2214,
+ 2215, 2270, 78, 2270, 2213, 21, 21, 2213,
+ 2213, 2213, 2213, 69, 2211, 2212, 2211, 2213,
+ 77, 2213, 2213, 2214, 2215, 2271, 78, 2271,
+ 2213, 21, 21, 2213, 2213, 2213, 2213, 69,
+ 2211, 2212, 2211, 2213, 77, 2213, 2213, 2214,
+ 2215, 2272, 78, 2272, 2213, 21, 21, 2213,
+ 2213, 2213, 2213, 69, 2211, 2212, 2211, 2213,
+ 77, 2213, 2213, 2214, 2215, 2273, 78, 2273,
+ 2213, 21, 21, 2213, 2213, 2213, 2213, 69,
+ 2274, 2275, 2274, 2213, 77, 2213, 2213, 2214,
+ 2276, 78, 2213, 21, 21, 2213, 2213, 2213,
+ 2213, 69, 2277, 2278, 2277, 77, 2194, 2276,
+ 78, 21, 21, 69, 2279, 26, 21, 2280,
+ 76, 2280, 77, 2194, 2276, 78, 21, 21,
+ 69, 2276, 2281, 2276, 2282, 296, 2282, 2282,
+ 2222, 78, 2282, 21, 21, 2282, 2282, 2282,
+ 2282, 2282, 69, 2283, 26, 21, 2284, 300,
+ 2284, 2282, 296, 2282, 2282, 2222, 78, 2282,
+ 21, 21, 2282, 2282, 2282, 2282, 2282, 69,
+ 2285, 2286, 2285, 2287, 77, 2287, 2287, 2288,
+ 78, 2287, 21, 21, 2287, 2287, 2287, 2287,
+ 69, 2289, 26, 21, 2211, 2212, 2211, 2213,
+ 77, 2213, 2213, 2214, 2215, 2290, 78, 2290,
+ 2213, 21, 21, 2213, 2213, 2213, 2213, 69,
+ 2211, 2212, 2211, 2213, 77, 2213, 2213, 2214,
+ 2215, 2291, 78, 2291, 2213, 21, 21, 2213,
+ 2213, 2213, 2213, 69, 2211, 2212, 2211, 2213,
+ 77, 2213, 2213, 2214, 2215, 2292, 78, 2292,
+ 2213, 21, 21, 2213, 2213, 2213, 2213, 69,
+ 2211, 2212, 2211, 2213, 77, 2213, 2213, 2214,
+ 2215, 2293, 78, 2293, 2213, 21, 21, 2213,
+ 2213, 2213, 2213, 69, 2211, 2212, 2211, 2213,
+ 77, 2213, 2213, 2214, 2215, 2294, 78, 2294,
+ 2213, 21, 21, 2213, 2213, 2213, 2213, 69,
+ 2295, 2296, 2295, 2213, 77, 2213, 2213, 2214,
+ 2297, 78, 2213, 21, 21, 2213, 2213, 2213,
+ 2213, 69, 2298, 2299, 2298, 77, 2194, 2297,
+ 78, 21, 21, 69, 2300, 26, 21, 2301,
+ 76, 2301, 77, 2194, 2297, 78, 21, 21,
+ 69, 2297, 2302, 2297, 2221, 2303, 2221, 2221,
+ 2222, 78, 2221, 21, 21, 2221, 2221, 2221,
+ 2221, 2221, 69, 2304, 26, 21, 2305, 2306,
+ 2305, 2221, 2303, 2221, 2221, 2222, 78, 2221,
+ 21, 21, 2221, 2221, 2221, 2221, 2221, 69,
+ 2307, 26, 21, 2308, 76, 2308, 2303, 78,
+ 21, 21, 69, 2309, 2310, 2309, 390, 2311,
+ 392, 387, 387, 386, 2312, 26, 21, 2211,
+ 2212, 2211, 2213, 77, 2213, 2213, 2214, 2215,
+ 2313, 78, 2313, 2213, 21, 21, 2213, 2213,
+ 2213, 2213, 69, 2211, 2212, 2211, 2213, 77,
+ 2213, 2213, 2214, 2215, 2314, 78, 2314, 2213,
+ 21, 21, 2213, 2213, 2213, 2213, 69, 2211,
+ 2212, 2211, 2213, 77, 2213, 2213, 2214, 2215,
+ 2315, 78, 2315, 2213, 21, 21, 2213, 2213,
+ 2213, 2213, 69, 2211, 2212, 2211, 2213, 77,
+ 2213, 2213, 2214, 2215, 2316, 78, 2316, 2213,
+ 21, 21, 2213, 2213, 2213, 2213, 69, 2317,
+ 2318, 2317, 2213, 77, 2213, 2213, 2214, 2319,
+ 78, 2213, 21, 21, 2213, 2213, 2213, 2213,
+ 69, 2320, 2321, 2320, 77, 2194, 2319, 78,
+ 21, 21, 69, 2322, 26, 21, 2323, 76,
+ 2323, 77, 2194, 2319, 78, 21, 21, 69,
+ 2324, 2325, 2324, 2221, 2028, 2221, 2221, 2222,
+ 78, 2221, 21, 21, 2221, 2221, 2221, 2221,
+ 2221, 69, 2326, 26, 21, 2327, 2031, 2327,
+ 2221, 2028, 2221, 2221, 2222, 78, 2221, 21,
+ 21, 2221, 2221, 2221, 2221, 2221, 69, 2328,
+ 26, 21, 2211, 2212, 2211, 2213, 77, 2213,
+ 2213, 2214, 2215, 2329, 78, 2329, 2213, 21,
+ 21, 2213, 2213, 2213, 2213, 69, 2211, 2212,
+ 2211, 2213, 77, 2213, 2213, 2214, 2215, 2330,
+ 78, 2330, 2213, 21, 21, 2213, 2213, 2213,
+ 2213, 69, 2211, 2212, 2211, 2213, 77, 2213,
+ 2213, 2214, 2215, 2331, 78, 2331, 2213, 21,
+ 21, 2213, 2213, 2213, 2213, 69, 2211, 2212,
+ 2211, 2213, 77, 2213, 2213, 2214, 2215, 2332,
+ 78, 2332, 2213, 21, 21, 2213, 2213, 2213,
+ 2213, 69, 2211, 2212, 2211, 2213, 77, 2213,
+ 2213, 2214, 2215, 2333, 78, 2333, 2213, 21,
+ 21, 2213, 2213, 2213, 2213, 69, 2334, 2335,
+ 2334, 2213, 77, 2213, 2213, 2214, 2336, 78,
+ 2213, 21, 21, 2213, 2213, 2213, 2213, 69,
+ 2337, 2338, 2337, 77, 2194, 2336, 78, 21,
+ 21, 69, 2339, 26, 21, 2340, 76, 2340,
+ 77, 2194, 2336, 78, 21, 21, 69, 2341,
+ 2342, 2341, 2221, 2049, 2221, 2221, 2222, 78,
+ 2221, 21, 21, 2221, 2221, 2221, 2221, 2221,
+ 69, 2343, 26, 21, 2344, 2052, 2344, 2221,
+ 2049, 2221, 2221, 2222, 78, 2221, 21, 21,
+ 2221, 2221, 2221, 2221, 2221, 69, 2345, 26,
+ 21, 2211, 2212, 2211, 2213, 77, 2213, 2213,
+ 2214, 2215, 2346, 78, 2346, 2213, 21, 21,
+ 2213, 2213, 2213, 2213, 69, 2211, 2212, 2211,
+ 2213, 77, 2213, 2213, 2214, 2215, 2347, 78,
+ 2347, 2213, 21, 21, 2213, 2213, 2213, 2213,
+ 69, 2348, 2349, 2348, 2213, 77, 2213, 2213,
+ 2214, 2350, 78, 2213, 21, 21, 2213, 2213,
+ 2213, 2213, 69, 2351, 2352, 2351, 77, 2194,
+ 2350, 78, 21, 21, 69, 2353, 26, 21,
+ 2354, 76, 2354, 77, 2194, 2350, 78, 21,
+ 21, 69, 2350, 2355, 2350, 2221, 2356, 2221,
+ 2221, 2222, 78, 2221, 21, 21, 2221, 2221,
+ 2221, 2221, 2221, 69, 2357, 26, 21, 2358,
+ 2359, 2358, 2221, 2356, 2221, 2221, 2222, 78,
+ 2221, 21, 21, 2221, 2221, 2221, 2221, 2221,
+ 69, 2360, 26, 21, 2361, 76, 2361, 2356,
+ 78, 21, 21, 69, 2362, 2363, 2362, 197,
+ 2364, 198, 195, 195, 194, 2365, 26, 21,
+ 2211, 2212, 2211, 2213, 77, 2213, 2213, 2214,
+ 2215, 2366, 78, 2366, 2213, 21, 21, 2213,
+ 2213, 2213, 2213, 69, 2211, 2212, 2211, 2213,
+ 77, 2213, 2213, 2214, 2215, 2367, 78, 2367,
+ 2213, 21, 21, 2213, 2213, 2213, 2213, 69,
+ 2211, 2212, 2211, 2213, 77, 2213, 2213, 2214,
+ 2215, 2368, 78, 2368, 2213, 21, 21, 2213,
+ 2213, 2213, 2213, 69, 2211, 2212, 2211, 2213,
+ 77, 2213, 2213, 2214, 2215, 2369, 78, 2369,
+ 2213, 21, 21, 2213, 2213, 2213, 2213, 69,
+ 2370, 2371, 2370, 2213, 77, 2213, 2213, 2214,
+ 2372, 78, 2213, 21, 21, 2213, 2213, 2213,
+ 2213, 69, 2373, 2374, 2373, 77, 2194, 2372,
+ 78, 21, 21, 69, 2375, 26, 21, 2376,
+ 76, 2376, 77, 2194, 2372, 78, 21, 21,
+ 69, 2377, 2378, 2377, 2221, 2089, 2221, 2221,
+ 2222, 78, 2221, 21, 21, 2221, 2221, 2221,
+ 2221, 2221, 69, 2379, 26, 21, 2380, 2092,
+ 2380, 2221, 2089, 2221, 2221, 2222, 78, 2221,
+ 21, 21, 2221, 2221, 2221, 2221, 2221, 69,
+ 2381, 26, 21, 2211, 2212, 2211, 2213, 77,
+ 2213, 2213, 2214, 2215, 2382, 78, 2382, 2213,
+ 21, 21, 2213, 2213, 2213, 2213, 69, 2211,
+ 2212, 2211, 2213, 77, 2213, 2213, 2214, 2215,
+ 2383, 78, 2383, 2213, 21, 21, 2213, 2213,
+ 2213, 2213, 69, 2211, 2212, 2211, 2213, 77,
+ 2213, 2213, 2214, 2215, 2384, 78, 2384, 2213,
+ 21, 21, 2213, 2213, 2213, 2213, 69, 2211,
+ 2212, 2211, 2213, 77, 2213, 2213, 2214, 2215,
+ 2385, 78, 2385, 2213, 21, 21, 2213, 2213,
+ 2213, 2213, 69, 2386, 2387, 2386, 2213, 77,
+ 2213, 2213, 2214, 2388, 78, 2213, 21, 21,
+ 2213, 2213, 2213, 2213, 69, 2389, 2390, 2389,
+ 77, 2194, 2388, 78, 21, 21, 69, 2391,
+ 26, 21, 2392, 76, 2392, 77, 2194, 2388,
+ 78, 21, 21, 69, 2388, 2393, 2388, 2221,
+ 296, 2221, 2221, 2394, 2395, 2222, 78, 2394,
+ 2395, 2221, 21, 21, 2221, 2221, 2221, 2221,
+ 2221, 69, 2396, 26, 21, 2397, 300, 2397,
+ 2221, 296, 2221, 2221, 2394, 2395, 2222, 78,
+ 2394, 2395, 2221, 21, 21, 2221, 2221, 2221,
+ 2221, 2221, 69, 2225, 2226, 2225, 2221, 77,
+ 2221, 2221, 2214, 2398, 78, 2398, 2221, 21,
+ 21, 2221, 2221, 2221, 2221, 69, 2225, 2226,
+ 2225, 2221, 77, 2221, 2221, 2214, 2399, 78,
+ 2399, 2221, 21, 21, 2221, 2221, 2221, 2221,
+ 69, 2225, 2226, 2225, 2221, 77, 2221, 2221,
+ 2214, 2400, 78, 2400, 2221, 21, 21, 2221,
+ 2221, 2221, 2221, 69, 2225, 2226, 2225, 2221,
+ 77, 2221, 2221, 2214, 2401, 78, 2401, 2221,
+ 21, 21, 2221, 2221, 2221, 2221, 69, 2402,
+ 2403, 2402, 77, 2404, 78, 21, 21, 69,
+ 2225, 2226, 2225, 2221, 77, 2221, 2221, 2214,
+ 2405, 78, 2405, 2221, 21, 21, 2221, 2221,
+ 2221, 2221, 69, 2225, 2226, 2225, 2221, 77,
+ 2221, 2221, 2214, 2400, 78, 2400, 2221, 21,
+ 21, 2221, 2221, 2221, 2221, 69, 2406, 26,
+ 21, 2407, 26, 21, 49, 50, 49, 51,
+ 51, 51, 52, 53, 2408, 2408, 51, 51,
+ 51, 51, 51, 21, 49, 50, 49, 51,
+ 51, 51, 52, 53, 2409, 2409, 51, 51,
+ 51, 51, 51, 21, 2410, 2411, 2410, 51,
+ 51, 51, 52, 2412, 51, 51, 51, 51,
+ 51, 21, 2413, 2414, 2413, 56, 2412, 21,
+ 2415, 26, 21, 2416, 26, 2416, 56, 2412,
+ 21, 2412, 2417, 2412, 68, 2418, 68, 68,
+ 70, 68, 68, 68, 68, 68, 68, 21,
+ 2419, 26, 21, 2420, 2421, 2420, 68, 2418,
+ 68, 68, 70, 68, 68, 68, 68, 68,
+ 68, 21, 2422, 26, 21, 2423, 26, 2423,
+ 2418, 21, 2425, 197, 2426, 195, 195, 195,
+ 2424, 2428, 202, 2429, 200, 200, 200, 2427,
+ 2430, 204, 202, 200, 204, 2431, 2427, 2427,
+ 200, 2432, 26, 21, 26, 2433, 2433, 21,
+ 26, 2434, 2434, 21, 26, 2435, 2435, 21,
+ 26, 2436, 2436, 21, 26, 2437, 2437, 21,
+ 2438, 2439, 2438, 21, 2440, 26, 21, 30,
+ 26, 30, 21, 2441, 2441, 1, 6, 6,
+ 1, 26, 21, 30, 26, 30, 21, 48,
+ 26, 48, 21, 58, 26, 58, 21, 63,
+ 26, 63, 21, 58, 26, 58, 39, 39,
+ 39, 40, 60, 42, 43, 61, 45, 46,
+ 40, 60, 42, 43, 61, 45, 46, 39,
+ 39, 39, 39, 39, 39, 21, 72, 26,
+ 72, 21, 75, 26, 75, 21, 69, 26,
+ 69, 21, 85, 26, 85, 21, 85, 26,
+ 85, 39, 39, 39, 40, 60, 42, 43,
+ 61, 45, 46, 40, 60, 42, 43, 61,
+ 45, 46, 39, 39, 39, 39, 39, 39,
+ 21, 97, 26, 97, 21, 2442, 26, 2442,
+ 21, 105, 26, 105, 21, 106, 26, 106,
+ 21, 97, 26, 97, 39, 39, 39, 40,
+ 60, 42, 43, 61, 45, 46, 40, 60,
+ 42, 43, 61, 45, 46, 39, 39, 39,
+ 39, 39, 39, 21, 160, 26, 160, 21,
+ 2443, 26, 2443, 21, 168, 26, 168, 21,
+ 169, 26, 169, 21, 160, 26, 160, 39,
+ 39, 39, 40, 60, 42, 43, 61, 45,
+ 46, 40, 60, 42, 43, 61, 45, 46,
+ 39, 39, 39, 39, 39, 39, 21, 186,
+ 26, 186, 21, 190, 26, 190, 21, 193,
+ 26, 193, 21, 204, 202, 200, 209, 26,
+ 209, 39, 39, 39, 40, 60, 42, 43,
+ 61, 45, 46, 40, 60, 42, 43, 61,
+ 45, 46, 39, 39, 39, 39, 39, 39,
+ 21, 221, 26, 221, 21, 2444, 26, 2444,
+ 21, 229, 26, 229, 21, 230, 26, 230,
+ 21, 221, 26, 221, 39, 39, 39, 40,
+ 60, 42, 43, 61, 45, 46, 40, 60,
+ 42, 43, 61, 45, 46, 39, 39, 39,
+ 39, 39, 39, 21, 249, 26, 249, 21,
+ 254, 26, 254, 21, 249, 26, 249, 39,
+ 39, 39, 40, 60, 42, 43, 61, 45,
+ 46, 40, 60, 42, 43, 61, 45, 46,
+ 39, 39, 39, 39, 39, 39, 21, 199,
+ 204, 199, 202, 200, 270, 26, 270, 39,
+ 39, 39, 40, 60, 42, 43, 61, 45,
+ 46, 40, 60, 42, 43, 61, 45, 46,
+ 39, 39, 39, 39, 39, 39, 21, 273,
+ 26, 273, 39, 39, 39, 40, 60, 42,
+ 43, 61, 45, 46, 40, 60, 42, 43,
+ 61, 45, 46, 39, 39, 39, 39, 39,
+ 39, 21, 284, 26, 284, 21, 293, 26,
+ 293, 21, 299, 26, 299, 21, 302, 26,
+ 302, 21, 273, 26, 273, 21, 293, 26,
+ 293, 39, 39, 39, 40, 60, 42, 43,
+ 61, 45, 46, 40, 60, 42, 43, 61,
+ 45, 46, 39, 39, 39, 39, 39, 39,
+ 21, 357, 26, 357, 21, 361, 26, 361,
+ 21, 357, 26, 357, 39, 39, 39, 40,
+ 60, 42, 43, 61, 45, 46, 40, 60,
+ 42, 43, 61, 45, 46, 39, 39, 39,
+ 39, 39, 39, 21, 378, 26, 378, 21,
+ 382, 26, 382, 21, 385, 26, 385, 21,
+ 398, 396, 394, 393, 398, 393, 396, 394,
+ 406, 398, 406, 396, 394, 417, 398, 417,
+ 396, 394, 426, 398, 426, 396, 394, 431,
+ 398, 431, 396, 394, 434, 398, 434, 396,
+ 394, 406, 398, 406, 449, 396, 449, 449,
+ 450, 451, 452, 453, 454, 455, 456, 450,
+ 451, 452, 453, 454, 455, 456, 449, 449,
+ 449, 449, 449, 449, 394, 447, 398, 447,
+ 396, 394, 458, 398, 458, 396, 394, 447,
+ 398, 447, 449, 396, 449, 449, 450, 451,
+ 452, 453, 454, 455, 456, 450, 451, 452,
+ 453, 454, 455, 456, 449, 449, 449, 449,
+ 449, 449, 394, 466, 398, 466, 396, 394,
+ 469, 398, 469, 396, 394, 475, 398, 475,
+ 396, 394, 475, 398, 475, 449, 396, 449,
+ 449, 450, 451, 452, 453, 454, 455, 456,
+ 450, 451, 452, 453, 454, 455, 456, 449,
+ 449, 449, 449, 449, 449, 394, 487, 398,
+ 487, 396, 394, 2445, 398, 2445, 396, 394,
+ 495, 398, 495, 396, 394, 501, 26, 501,
+ 39, 39, 39, 40, 60, 42, 43, 61,
+ 45, 46, 40, 60, 42, 43, 61, 45,
+ 46, 39, 39, 39, 39, 39, 39, 21,
+ 504, 26, 504, 39, 39, 39, 40, 60,
+ 42, 43, 61, 45, 46, 40, 60, 42,
+ 43, 61, 45, 46, 39, 39, 39, 39,
+ 39, 39, 21, 515, 26, 515, 21, 524,
+ 26, 524, 21, 530, 26, 530, 21, 533,
+ 26, 533, 21, 504, 26, 504, 21, 524,
+ 26, 524, 39, 39, 39, 40, 60, 42,
+ 43, 61, 45, 46, 40, 60, 42, 43,
+ 61, 45, 46, 39, 39, 39, 39, 39,
+ 39, 21, 592, 26, 592, 21, 596, 26,
+ 596, 21, 592, 26, 592, 39, 39, 39,
+ 40, 60, 42, 43, 61, 45, 46, 40,
+ 60, 42, 43, 61, 45, 46, 39, 39,
+ 39, 39, 39, 39, 21, 613, 26, 613,
+ 21, 617, 26, 617, 21, 620, 26, 620,
+ 21, 613, 26, 613, 39, 39, 39, 40,
+ 60, 42, 43, 61, 45, 46, 40, 60,
+ 42, 43, 61, 45, 46, 39, 39, 39,
+ 39, 39, 39, 21, 635, 26, 635, 21,
+ 2446, 26, 2446, 21, 643, 26, 643, 21,
+ 635, 26, 635, 39, 39, 39, 40, 60,
+ 42, 43, 61, 45, 46, 40, 60, 42,
+ 43, 61, 45, 46, 39, 39, 39, 39,
+ 39, 39, 21, 660, 26, 660, 21, 2447,
+ 26, 2447, 21, 668, 26, 668, 21, 677,
+ 26, 677, 21, 688, 26, 688, 21, 697,
+ 26, 697, 21, 703, 26, 703, 21, 706,
+ 26, 706, 21, 677, 26, 677, 39, 39,
+ 39, 40, 60, 42, 43, 61, 45, 46,
+ 40, 60, 42, 43, 61, 45, 46, 39,
+ 39, 39, 39, 39, 39, 21, 697, 26,
+ 697, 39, 39, 39, 40, 60, 42, 43,
+ 61, 45, 46, 40, 60, 42, 43, 61,
+ 45, 46, 39, 39, 39, 39, 39, 39,
+ 21, 763, 26, 763, 21, 767, 26, 767,
+ 21, 763, 26, 763, 39, 39, 39, 40,
+ 60, 42, 43, 61, 45, 46, 40, 60,
+ 42, 43, 61, 45, 46, 39, 39, 39,
+ 39, 39, 39, 21, 784, 26, 784, 21,
+ 788, 26, 788, 21, 791, 26, 791, 21,
+ 784, 26, 784, 39, 39, 39, 40, 60,
+ 42, 43, 61, 45, 46, 40, 60, 42,
+ 43, 61, 45, 46, 39, 39, 39, 39,
+ 39, 39, 21, 806, 26, 806, 21, 2448,
+ 26, 2448, 21, 814, 26, 814, 21, 806,
+ 26, 806, 39, 39, 39, 40, 60, 42,
+ 43, 61, 45, 46, 40, 60, 42, 43,
+ 61, 45, 46, 39, 39, 39, 39, 39,
+ 39, 21, 831, 26, 831, 21, 2449, 26,
+ 2449, 21, 839, 26, 839, 21, 831, 26,
+ 831, 39, 39, 39, 40, 60, 42, 43,
+ 61, 45, 46, 40, 60, 42, 43, 61,
+ 45, 46, 39, 39, 39, 39, 39, 39,
+ 21, 853, 26, 853, 21, 857, 26, 857,
+ 21, 860, 26, 860, 21, 868, 204, 868,
+ 202, 200, 879, 204, 879, 202, 200, 888,
+ 204, 888, 202, 200, 893, 204, 893, 202,
+ 200, 896, 204, 896, 202, 200, 868, 204,
+ 868, 911, 202, 911, 911, 912, 913, 914,
+ 915, 916, 917, 918, 912, 913, 914, 915,
+ 916, 917, 918, 911, 911, 911, 911, 911,
+ 911, 200, 909, 204, 909, 202, 200, 920,
+ 204, 920, 202, 200, 909, 204, 909, 911,
+ 202, 911, 911, 912, 913, 914, 915, 916,
+ 917, 918, 912, 913, 914, 915, 916, 917,
+ 918, 911, 911, 911, 911, 911, 911, 200,
+ 928, 204, 928, 202, 200, 931, 204, 931,
+ 202, 200, 937, 204, 937, 202, 200, 937,
+ 204, 937, 911, 202, 911, 911, 912, 913,
+ 914, 915, 916, 917, 918, 912, 913, 914,
+ 915, 916, 917, 918, 911, 911, 911, 911,
+ 911, 911, 200, 949, 204, 949, 202, 200,
+ 2450, 204, 2450, 202, 200, 957, 204, 957,
+ 202, 200, 949, 204, 949, 911, 202, 911,
+ 911, 912, 913, 914, 915, 916, 917, 918,
+ 912, 913, 914, 915, 916, 917, 918, 911,
+ 911, 911, 911, 911, 911, 200, 1006, 204,
+ 1006, 202, 200, 2451, 204, 2451, 202, 200,
+ 1014, 204, 1014, 202, 200, 1019, 26, 1019,
+ 39, 39, 39, 40, 60, 42, 43, 61,
+ 45, 46, 40, 60, 42, 43, 61, 45,
+ 46, 39, 39, 39, 39, 39, 39, 21,
+ 1006, 204, 1006, 911, 202, 911, 911, 912,
+ 913, 914, 915, 916, 917, 918, 912, 913,
+ 914, 915, 916, 917, 918, 911, 911, 911,
+ 911, 911, 911, 200, 1030, 204, 1030, 202,
+ 200, 1033, 204, 1033, 202, 200, 1030, 204,
+ 1030, 911, 202, 911, 911, 912, 913, 914,
+ 915, 916, 917, 918, 912, 913, 914, 915,
+ 916, 917, 918, 911, 911, 911, 911, 911,
+ 911, 200, 1045, 204, 1045, 202, 200, 2452,
+ 204, 2452, 202, 200, 1053, 204, 1053, 202,
+ 200, 1059, 26, 1059, 39, 39, 39, 40,
+ 60, 42, 43, 61, 45, 46, 40, 60,
+ 42, 43, 61, 45, 46, 39, 39, 39,
+ 39, 39, 39, 21, 1062, 26, 1062, 39,
+ 39, 39, 40, 60, 42, 43, 61, 45,
+ 46, 40, 60, 42, 43, 61, 45, 46,
+ 39, 39, 39, 39, 39, 39, 21, 1073,
+ 26, 1073, 21, 1082, 26, 1082, 21, 1088,
+ 26, 1088, 21, 1091, 26, 1091, 21, 1062,
+ 26, 1062, 21, 1082, 26, 1082, 39, 39,
+ 39, 40, 60, 42, 43, 61, 45, 46,
+ 40, 60, 42, 43, 61, 45, 46, 39,
+ 39, 39, 39, 39, 39, 21, 1150, 26,
+ 1150, 21, 1154, 26, 1154, 21, 1150, 26,
+ 1150, 39, 39, 39, 40, 60, 42, 43,
+ 61, 45, 46, 40, 60, 42, 43, 61,
+ 45, 46, 39, 39, 39, 39, 39, 39,
+ 21, 1171, 26, 1171, 21, 1175, 26, 1175,
+ 21, 1178, 26, 1178, 21, 1171, 26, 1171,
+ 39, 39, 39, 40, 60, 42, 43, 61,
+ 45, 46, 40, 60, 42, 43, 61, 45,
+ 46, 39, 39, 39, 39, 39, 39, 21,
+ 1193, 26, 1193, 21, 2453, 26, 2453, 21,
+ 1201, 26, 1201, 21, 1193, 26, 1193, 39,
+ 39, 39, 40, 60, 42, 43, 61, 45,
+ 46, 40, 60, 42, 43, 61, 45, 46,
+ 39, 39, 39, 39, 39, 39, 21, 1218,
+ 26, 1218, 21, 2454, 26, 2454, 21, 1226,
+ 26, 1226, 21, 1218, 26, 1218, 39, 39,
+ 39, 40, 60, 42, 43, 61, 45, 46,
+ 40, 60, 42, 43, 61, 45, 46, 39,
+ 39, 39, 39, 39, 39, 21, 1240, 26,
+ 1240, 21, 1244, 26, 1244, 21, 1247, 26,
+ 1247, 21, 1240, 26, 1240, 39, 39, 39,
+ 40, 60, 42, 43, 61, 45, 46, 40,
+ 60, 42, 43, 61, 45, 46, 39, 39,
+ 39, 39, 39, 39, 21, 1262, 26, 1262,
+ 21, 2455, 26, 2455, 21, 1270, 26, 1270,
+ 21, 1262, 26, 1262, 39, 39, 39, 40,
+ 60, 42, 43, 61, 45, 46, 40, 60,
+ 42, 43, 61, 45, 46, 39, 39, 39,
+ 39, 39, 39, 21, 1286, 26, 1286, 21,
+ 1291, 26, 1291, 21, 1286, 26, 1286, 39,
+ 39, 39, 40, 60, 42, 43, 61, 45,
+ 46, 40, 60, 42, 43, 61, 45, 46,
+ 39, 39, 39, 39, 39, 39, 21, 1045,
+ 204, 1045, 911, 202, 911, 911, 912, 913,
+ 914, 915, 916, 917, 918, 912, 913, 914,
+ 915, 916, 917, 918, 911, 911, 911, 911,
+ 911, 911, 200, 1312, 204, 1312, 202, 200,
+ 1317, 204, 1317, 202, 200, 1312, 204, 1312,
+ 911, 202, 911, 911, 912, 913, 914, 915,
+ 916, 917, 918, 912, 913, 914, 915, 916,
+ 917, 918, 911, 911, 911, 911, 911, 911,
+ 200, 1337, 204, 1337, 202, 200, 1341, 204,
+ 1341, 202, 200, 1344, 204, 1344, 202, 200,
+ 1351, 398, 1351, 449, 396, 449, 449, 450,
+ 451, 452, 453, 454, 455, 456, 450, 451,
+ 452, 453, 454, 455, 456, 449, 449, 449,
+ 449, 449, 449, 394, 1364, 398, 1364, 396,
+ 394, 2456, 398, 2456, 396, 394, 1372, 398,
+ 1372, 396, 394, 1364, 398, 1364, 449, 396,
+ 449, 449, 450, 451, 452, 453, 454, 455,
+ 456, 450, 451, 452, 453, 454, 455, 456,
+ 449, 449, 449, 449, 449, 449, 394, 1418,
+ 398, 1418, 396, 394, 1422, 398, 1422, 396,
+ 394, 1425, 398, 1425, 396, 394, 1432, 204,
+ 1432, 911, 202, 911, 911, 912, 913, 914,
+ 915, 916, 917, 918, 912, 913, 914, 915,
+ 916, 917, 918, 911, 911, 911, 911, 911,
+ 911, 200, 1418, 398, 1418, 449, 396, 449,
+ 449, 450, 451, 452, 453, 454, 455, 456,
+ 450, 451, 452, 453, 454, 455, 456, 449,
+ 449, 449, 449, 449, 449, 394, 1445, 398,
+ 1445, 396, 394, 2457, 398, 2457, 396, 394,
+ 1453, 398, 1453, 396, 394, 1445, 398, 1445,
+ 449, 396, 449, 449, 450, 451, 452, 453,
+ 454, 455, 456, 450, 451, 452, 453, 454,
+ 455, 456, 449, 449, 449, 449, 449, 449,
+ 394, 1466, 398, 1466, 396, 394, 1471, 398,
+ 1471, 396, 394, 1466, 398, 1466, 449, 396,
+ 449, 449, 450, 451, 452, 453, 454, 455,
+ 456, 450, 451, 452, 453, 454, 455, 456,
+ 449, 449, 449, 449, 449, 449, 394, 1337,
+ 204, 1337, 911, 202, 911, 911, 912, 913,
+ 914, 915, 916, 917, 918, 912, 913, 914,
+ 915, 916, 917, 918, 911, 911, 911, 911,
+ 911, 911, 200, 1495, 204, 1495, 202, 200,
+ 1499, 204, 1499, 202, 200, 1495, 204, 1495,
+ 911, 202, 911, 911, 912, 913, 914, 915,
+ 916, 917, 918, 912, 913, 914, 915, 916,
+ 917, 918, 911, 911, 911, 911, 911, 911,
+ 200, 888, 204, 888, 911, 202, 911, 911,
+ 912, 913, 914, 915, 916, 917, 918, 912,
+ 913, 914, 915, 916, 917, 918, 911, 911,
+ 911, 911, 911, 911, 200, 1555, 204, 1555,
+ 202, 200, 1559, 204, 1559, 202, 200, 1555,
+ 204, 1555, 911, 202, 911, 911, 912, 913,
+ 914, 915, 916, 917, 918, 912, 913, 914,
+ 915, 916, 917, 918, 911, 911, 911, 911,
+ 911, 911, 200, 1576, 204, 1576, 202, 200,
+ 1579, 204, 1579, 202, 200, 1582, 204, 1582,
+ 202, 200, 1576, 204, 1576, 911, 202, 911,
+ 911, 912, 913, 914, 915, 916, 917, 918,
+ 912, 913, 914, 915, 916, 917, 918, 911,
+ 911, 911, 911, 911, 911, 200, 1594, 204,
+ 1594, 202, 200, 2458, 204, 2458, 202, 200,
+ 1601, 204, 1601, 202, 200, 1594, 204, 1594,
+ 911, 202, 911, 911, 912, 913, 914, 915,
+ 916, 917, 918, 912, 913, 914, 915, 916,
+ 917, 918, 911, 911, 911, 911, 911, 911,
+ 200, 1614, 204, 1614, 202, 200, 2459, 204,
+ 2459, 202, 200, 1621, 204, 1621, 202, 200,
+ 1614, 204, 1614, 911, 202, 911, 911, 912,
+ 913, 914, 915, 916, 917, 918, 912, 913,
+ 914, 915, 916, 917, 918, 911, 911, 911,
+ 911, 911, 911, 200, 1631, 204, 1631, 202,
+ 200, 1634, 204, 1634, 202, 200, 1631, 204,
+ 1631, 911, 202, 911, 911, 912, 913, 914,
+ 915, 916, 917, 918, 912, 913, 914, 915,
+ 916, 917, 918, 911, 911, 911, 911, 911,
+ 911, 200, 1646, 204, 1646, 202, 200, 2460,
+ 204, 2460, 202, 200, 1653, 204, 1653, 202,
+ 200, 1646, 204, 1646, 911, 202, 911, 911,
+ 912, 913, 914, 915, 916, 917, 918, 912,
+ 913, 914, 915, 916, 917, 918, 911, 911,
+ 911, 911, 911, 911, 200, 1665, 204, 1665,
+ 202, 200, 1670, 204, 1670, 202, 200, 1665,
+ 204, 1665, 911, 202, 911, 911, 912, 913,
+ 914, 915, 916, 917, 918, 912, 913, 914,
+ 915, 916, 917, 918, 911, 911, 911, 911,
+ 911, 911, 200, 853, 26, 853, 39, 39,
+ 39, 40, 60, 42, 43, 61, 45, 46,
+ 40, 60, 42, 43, 61, 45, 46, 39,
+ 39, 39, 39, 39, 39, 21, 1691, 26,
+ 1691, 21, 2461, 26, 2461, 21, 1699, 26,
+ 1699, 21, 1691, 26, 1691, 39, 39, 39,
+ 40, 60, 42, 43, 61, 45, 46, 40,
+ 60, 42, 43, 61, 45, 46, 39, 39,
+ 39, 39, 39, 39, 21, 1715, 26, 1715,
+ 21, 1720, 26, 1720, 21, 1715, 26, 1715,
+ 39, 39, 39, 40, 60, 42, 43, 61,
+ 45, 46, 40, 60, 42, 43, 61, 45,
+ 46, 39, 39, 39, 39, 39, 39, 21,
+ 660, 26, 660, 39, 39, 39, 40, 60,
+ 42, 43, 61, 45, 46, 40, 60, 42,
+ 43, 61, 45, 46, 39, 39, 39, 39,
+ 39, 39, 21, 1739, 26, 1739, 21, 1743,
+ 26, 1743, 21, 1746, 26, 1746, 21, 1739,
+ 26, 1739, 39, 39, 39, 40, 60, 42,
+ 43, 61, 45, 46, 40, 60, 42, 43,
+ 61, 45, 46, 39, 39, 39, 39, 39,
+ 39, 21, 1761, 26, 1761, 21, 2462, 26,
+ 2462, 21, 1769, 26, 1769, 21, 1761, 26,
+ 1761, 39, 39, 39, 40, 60, 42, 43,
+ 61, 45, 46, 40, 60, 42, 43, 61,
+ 45, 46, 39, 39, 39, 39, 39, 39,
+ 21, 1785, 26, 1785, 21, 1790, 26, 1790,
+ 21, 1785, 26, 1785, 39, 39, 39, 40,
+ 60, 42, 43, 61, 45, 46, 40, 60,
+ 42, 43, 61, 45, 46, 39, 39, 39,
+ 39, 39, 39, 21, 487, 398, 487, 449,
+ 396, 449, 449, 450, 451, 452, 453, 454,
+ 455, 456, 450, 451, 452, 453, 454, 455,
+ 456, 449, 449, 449, 449, 449, 449, 394,
+ 1811, 398, 1811, 396, 394, 1814, 398, 1814,
+ 396, 394, 1811, 398, 1811, 449, 396, 449,
+ 449, 450, 451, 452, 453, 454, 455, 456,
+ 450, 451, 452, 453, 454, 455, 456, 449,
+ 449, 449, 449, 449, 449, 394, 1829, 398,
+ 1829, 396, 394, 1833, 398, 1833, 396, 394,
+ 1829, 398, 1829, 449, 396, 449, 449, 450,
+ 451, 452, 453, 454, 455, 456, 450, 451,
+ 452, 453, 454, 455, 456, 449, 449, 449,
+ 449, 449, 449, 394, 426, 398, 426, 449,
+ 396, 449, 449, 450, 451, 452, 453, 454,
+ 455, 456, 450, 451, 452, 453, 454, 455,
+ 456, 449, 449, 449, 449, 449, 449, 394,
+ 1889, 398, 1889, 396, 394, 1893, 398, 1893,
+ 396, 394, 1889, 398, 1889, 449, 396, 449,
+ 449, 450, 451, 452, 453, 454, 455, 456,
+ 450, 451, 452, 453, 454, 455, 456, 449,
+ 449, 449, 449, 449, 449, 394, 1910, 398,
+ 1910, 396, 394, 1913, 398, 1913, 396, 394,
+ 1910, 398, 1910, 449, 396, 449, 449, 450,
+ 451, 452, 453, 454, 455, 456, 450, 451,
+ 452, 453, 454, 455, 456, 449, 449, 449,
+ 449, 449, 449, 394, 1925, 398, 1925, 396,
+ 394, 2463, 398, 2463, 396, 394, 1932, 398,
+ 1932, 396, 394, 1925, 398, 1925, 449, 396,
+ 449, 449, 450, 451, 452, 453, 454, 455,
+ 456, 450, 451, 452, 453, 454, 455, 456,
+ 449, 449, 449, 449, 449, 449, 394, 1945,
+ 398, 1945, 396, 394, 2464, 398, 2464, 396,
+ 394, 1952, 398, 1952, 396, 394, 1945, 398,
+ 1945, 449, 396, 449, 449, 450, 451, 452,
+ 453, 454, 455, 456, 450, 451, 452, 453,
+ 454, 455, 456, 449, 449, 449, 449, 449,
+ 449, 394, 1962, 398, 1962, 396, 394, 1965,
+ 398, 1965, 396, 394, 1968, 398, 1968, 396,
+ 394, 1962, 398, 1962, 449, 396, 449, 449,
+ 450, 451, 452, 453, 454, 455, 456, 450,
+ 451, 452, 453, 454, 455, 456, 449, 449,
+ 449, 449, 449, 449, 394, 1980, 398, 1980,
+ 396, 394, 2465, 398, 2465, 396, 394, 1987,
+ 398, 1987, 396, 394, 1980, 398, 1980, 449,
+ 396, 449, 449, 450, 451, 452, 453, 454,
+ 455, 456, 450, 451, 452, 453, 454, 455,
+ 456, 449, 449, 449, 449, 449, 449, 394,
+ 1999, 398, 1999, 396, 394, 2004, 398, 2004,
+ 396, 394, 1999, 398, 1999, 449, 396, 449,
+ 449, 450, 451, 452, 453, 454, 455, 456,
+ 450, 451, 452, 453, 454, 455, 456, 449,
+ 449, 449, 449, 449, 449, 394, 378, 26,
+ 378, 39, 39, 39, 40, 60, 42, 43,
+ 61, 45, 46, 40, 60, 42, 43, 61,
+ 45, 46, 39, 39, 39, 39, 39, 39,
+ 21, 2025, 26, 2025, 21, 2466, 26, 2466,
+ 21, 2033, 26, 2033, 21, 2025, 26, 2025,
+ 39, 39, 39, 40, 60, 42, 43, 61,
+ 45, 46, 40, 60, 42, 43, 61, 45,
+ 46, 39, 39, 39, 39, 39, 39, 21,
+ 2046, 26, 2046, 21, 2467, 26, 2467, 21,
+ 2054, 26, 2054, 21, 2046, 26, 2046, 39,
+ 39, 39, 40, 60, 42, 43, 61, 45,
+ 46, 40, 60, 42, 43, 61, 45, 46,
+ 39, 39, 39, 39, 39, 39, 21, 2064,
+ 26, 2064, 21, 2068, 26, 2068, 21, 2071,
+ 26, 2071, 21, 2064, 26, 2064, 39, 39,
+ 39, 40, 60, 42, 43, 61, 45, 46,
+ 40, 60, 42, 43, 61, 45, 46, 39,
+ 39, 39, 39, 39, 39, 21, 2086, 26,
+ 2086, 21, 2468, 26, 2468, 21, 2094, 26,
+ 2094, 21, 2086, 26, 2086, 39, 39, 39,
+ 40, 60, 42, 43, 61, 45, 46, 40,
+ 60, 42, 43, 61, 45, 46, 39, 39,
+ 39, 39, 39, 39, 21, 2106, 26, 2106,
+ 21, 2111, 26, 2111, 21, 2106, 26, 2106,
+ 39, 39, 39, 40, 60, 42, 43, 61,
+ 45, 46, 40, 60, 42, 43, 61, 45,
+ 46, 39, 39, 39, 39, 39, 39, 21,
+ 186, 26, 186, 39, 39, 39, 40, 60,
+ 42, 43, 61, 45, 46, 40, 60, 42,
+ 43, 61, 45, 46, 39, 39, 39, 39,
+ 39, 39, 21, 2132, 26, 2132, 21, 2136,
+ 26, 2136, 21, 2139, 26, 2139, 21, 2132,
+ 26, 2132, 39, 39, 39, 40, 60, 42,
+ 43, 61, 45, 46, 40, 60, 42, 43,
+ 61, 45, 46, 39, 39, 39, 39, 39,
+ 39, 21, 2155, 26, 2155, 21, 2159, 26,
+ 2159, 21, 2155, 26, 2155, 39, 39, 39,
+ 40, 60, 42, 43, 61, 45, 46, 40,
+ 60, 42, 43, 61, 45, 46, 39, 39,
+ 39, 39, 39, 39, 21, 2176, 26, 2176,
+ 21, 2180, 26, 2180, 21, 2183, 26, 2183,
+ 21, 2187, 398, 2187, 396, 394, 2196, 26,
+ 2196, 39, 39, 39, 40, 60, 42, 43,
+ 61, 45, 46, 40, 60, 42, 43, 61,
+ 45, 46, 39, 39, 39, 39, 39, 39,
+ 21, 2199, 26, 2199, 39, 39, 39, 40,
+ 60, 42, 43, 61, 45, 46, 40, 60,
+ 42, 43, 61, 45, 46, 39, 39, 39,
+ 39, 39, 39, 21, 2210, 26, 2210, 21,
+ 2219, 26, 2219, 21, 2224, 26, 2224, 21,
+ 2199, 26, 2199, 21, 2219, 26, 2219, 39,
+ 39, 39, 40, 60, 42, 43, 61, 45,
+ 46, 40, 60, 42, 43, 61, 45, 46,
+ 39, 39, 39, 39, 39, 39, 21, 2280,
+ 26, 2280, 21, 2284, 26, 2284, 21, 2280,
+ 26, 2280, 39, 39, 39, 40, 60, 42,
+ 43, 61, 45, 46, 40, 60, 42, 43,
+ 61, 45, 46, 39, 39, 39, 39, 39,
+ 39, 21, 2301, 26, 2301, 21, 2305, 26,
+ 2305, 21, 2308, 26, 2308, 21, 2301, 26,
+ 2301, 39, 39, 39, 40, 60, 42, 43,
+ 61, 45, 46, 40, 60, 42, 43, 61,
+ 45, 46, 39, 39, 39, 39, 39, 39,
+ 21, 2323, 26, 2323, 21, 2469, 26, 2469,
+ 21, 2323, 26, 2323, 39, 39, 39, 40,
+ 60, 42, 43, 61, 45, 46, 40, 60,
+ 42, 43, 61, 45, 46, 39, 39, 39,
+ 39, 39, 39, 21, 2340, 26, 2340, 21,
+ 2470, 26, 2470, 21, 2340, 26, 2340, 39,
+ 39, 39, 40, 60, 42, 43, 61, 45,
+ 46, 40, 60, 42, 43, 61, 45, 46,
+ 39, 39, 39, 39, 39, 39, 21, 2354,
+ 26, 2354, 21, 2358, 26, 2358, 21, 2361,
+ 26, 2361, 21, 2354, 26, 2354, 39, 39,
+ 39, 40, 60, 42, 43, 61, 45, 46,
+ 40, 60, 42, 43, 61, 45, 46, 39,
+ 39, 39, 39, 39, 39, 21, 2376, 26,
+ 2376, 21, 2471, 26, 2471, 21, 2376, 26,
+ 2376, 39, 39, 39, 40, 60, 42, 43,
+ 61, 45, 46, 40, 60, 42, 43, 61,
+ 45, 46, 39, 39, 39, 39, 39, 39,
+ 21, 2392, 26, 2392, 21, 2397, 26, 2397,
+ 21, 2392, 26, 2392, 39, 39, 39, 40,
+ 60, 42, 43, 61, 45, 46, 40, 60,
+ 42, 43, 61, 45, 46, 39, 39, 39,
+ 39, 39, 39, 21, 2176, 26, 2176, 39,
+ 39, 39, 40, 60, 42, 43, 61, 45,
+ 46, 40, 60, 42, 43, 61, 45, 46,
+ 39, 39, 39, 39, 39, 39, 21, 2416,
+ 26, 2416, 21, 2420, 26, 2420, 21, 2423,
+ 26, 2423, 21, 2427, 204, 2427, 202, 200,
+ 2416, 26, 2416, 39, 39, 39, 40, 60,
+ 42, 43, 61, 45, 46, 40, 60, 42,
+ 43, 61, 45, 46, 39, 39, 39, 39,
+ 39, 39, 21, 0
+};
+
+static const short _thttp_machine_parser_header_WWW_Authenticate_trans_targs[] = {
+ 2, 0, 1736, 3, 4, 5, 6, 7,
+ 8, 9, 10, 11, 12, 13, 14, 15,
+ 16, 17, 18, 19, 20, 21, 23, 1734,
+ 26, 1728, 22, 1738, 24, 1739, 25, 27,
+ 28, 29, 30, 31, 32, 31, 32, 34,
+ 41, 1536, 56, 110, 1712, 147, 165, 1740,
+ 33, 35, 42, 34, 38, 44, 35, 36,
+ 38, 1741, 37, 39, 43, 129, 1742, 40,
+ 1520, 1743, 1505, 45, 73, 49, 74, 1744,
+ 46, 47, 1745, 48, 50, 51, 206, 1746,
+ 52, 55, 52, 53, 1747, 54, 1748, 57,
+ 58, 59, 60, 61, 109, 64, 61, 62,
+ 1749, 63, 64, 65, 69, 1750, 66, 67,
+ 1751, 68, 69, 70, 71, 72, 1752, 52,
+ 55, 38, 75, 108, 76, 79, 77, 78,
+ 80, 95, 81, 93, 82, 83, 91, 84,
+ 85, 89, 86, 87, 88, 90, 92, 94,
+ 96, 104, 97, 100, 98, 99, 101, 102,
+ 103, 105, 106, 107, 1753, 111, 112, 113,
+ 114, 115, 116, 128, 119, 116, 117, 1754,
+ 118, 119, 120, 124, 1755, 121, 122, 1756,
+ 123, 124, 125, 126, 127, 1757, 52, 55,
+ 38, 1758, 130, 131, 132, 1504, 135, 132,
+ 133, 1759, 134, 136, 140, 1760, 137, 138,
+ 1761, 139, 141, 142, 184, 144, 185, 141,
+ 142, 184, 144, 185, 143, 1762, 144, 145,
+ 1763, 146, 55, 148, 149, 150, 151, 152,
+ 164, 155, 152, 153, 1764, 154, 155, 156,
+ 160, 1765, 157, 158, 1766, 159, 160, 161,
+ 162, 163, 1767, 52, 55, 38, 1768, 166,
+ 167, 168, 169, 170, 183, 173, 170, 171,
+ 1769, 172, 174, 176, 181, 1770, 175, 177,
+ 178, 179, 180, 52, 55, 38, 182, 1771,
+ 1772, 186, 186, 187, 191, 1773, 188, 189,
+ 1774, 190, 192, 194, 244, 261, 1429, 1443,
+ 1458, 1471, 1485, 1775, 193, 195, 243, 194,
+ 191, 198, 195, 196, 1776, 197, 199, 207,
+ 203, 208, 1777, 200, 201, 1778, 202, 204,
+ 189, 204, 205, 1779, 209, 242, 210, 213,
+ 211, 212, 214, 229, 215, 227, 216, 217,
+ 225, 218, 219, 223, 220, 221, 222, 224,
+ 226, 228, 230, 238, 231, 234, 232, 233,
+ 235, 236, 237, 239, 240, 241, 1780, 245,
+ 246, 247, 248, 249, 250, 251, 252, 253,
+ 260, 256, 253, 254, 1781, 255, 257, 259,
+ 1782, 258, 204, 189, 259, 191, 1783, 262,
+ 263, 264, 265, 266, 267, 1428, 270, 267,
+ 268, 1784, 269, 271, 275, 1785, 272, 273,
+ 1786, 274, 276, 277, 281, 297, 144, 284,
+ 280, 276, 277, 279, 144, 280, 278, 1787,
+ 1788, 186, 281, 282, 284, 1789, 283, 285,
+ 287, 1324, 1341, 1354, 1368, 1383, 1395, 1409,
+ 1790, 286, 288, 1323, 287, 284, 291, 288,
+ 289, 1791, 290, 292, 296, 1287, 1792, 293,
+ 294, 1793, 295, 281, 297, 1794, 299, 306,
+ 298, 302, 308, 299, 300, 302, 1795, 301,
+ 303, 298, 305, 307, 318, 917, 968, 984,
+ 998, 1796, 304, 1271, 1797, 1259, 309, 313,
+ 931, 1798, 310, 311, 1799, 312, 314, 317,
+ 314, 315, 1800, 316, 1801, 319, 320, 321,
+ 322, 323, 1258, 326, 323, 324, 1802, 325,
+ 326, 327, 331, 1803, 328, 329, 1804, 330,
+ 331, 331, 332, 336, 1805, 333, 334, 1806,
+ 335, 337, 339, 389, 406, 422, 437, 1211,
+ 1224, 1239, 1807, 338, 340, 388, 339, 336,
+ 343, 340, 341, 1808, 342, 344, 349, 348,
+ 352, 1809, 345, 346, 1810, 347, 204, 189,
+ 191, 350, 334, 350, 351, 1811, 353, 387,
+ 354, 357, 367, 355, 356, 358, 374, 359,
+ 372, 360, 361, 370, 362, 363, 368, 364,
+ 365, 366, 369, 371, 373, 375, 383, 376,
+ 379, 377, 378, 380, 381, 382, 384, 385,
+ 386, 1812, 390, 391, 392, 393, 394, 395,
+ 396, 397, 398, 405, 401, 398, 399, 1813,
+ 400, 402, 404, 1814, 403, 350, 334, 404,
+ 336, 1815, 407, 408, 409, 410, 411, 412,
+ 421, 415, 412, 413, 1816, 414, 416, 420,
+ 1817, 417, 418, 1818, 419, 281, 297, 284,
+ 1819, 423, 424, 425, 426, 427, 436, 430,
+ 427, 428, 1820, 429, 430, 431, 435, 1821,
+ 432, 433, 1822, 434, 435, 350, 334, 336,
+ 1823, 438, 439, 440, 441, 442, 443, 1210,
+ 446, 443, 444, 1824, 445, 446, 447, 451,
+ 1825, 448, 449, 1826, 450, 451, 452, 469,
+ 455, 452, 453, 455, 1827, 454, 456, 458,
+ 507, 524, 540, 555, 571, 1176, 1191, 1828,
+ 457, 459, 506, 458, 455, 462, 459, 460,
+ 1829, 461, 463, 468, 467, 470, 1830, 464,
+ 465, 1831, 466, 204, 189, 191, 452, 469,
+ 1832, 471, 505, 472, 475, 485, 473, 474,
+ 476, 492, 477, 490, 478, 479, 488, 480,
+ 481, 486, 482, 483, 484, 487, 489, 491,
+ 493, 501, 494, 497, 495, 496, 498, 499,
+ 500, 502, 503, 504, 1833, 508, 509, 510,
+ 511, 512, 513, 514, 515, 516, 523, 519,
+ 516, 517, 1834, 518, 520, 522, 1835, 521,
+ 452, 469, 522, 455, 1836, 525, 526, 527,
+ 528, 529, 530, 539, 533, 530, 531, 1837,
+ 532, 534, 538, 1838, 535, 536, 1839, 537,
+ 281, 297, 284, 1840, 541, 542, 543, 544,
+ 545, 554, 548, 545, 546, 1841, 547, 548,
+ 549, 553, 1842, 550, 551, 1843, 552, 553,
+ 350, 334, 336, 1844, 556, 557, 558, 559,
+ 560, 561, 570, 564, 561, 562, 1845, 563,
+ 564, 565, 569, 1846, 566, 567, 1847, 568,
+ 569, 452, 469, 455, 1848, 572, 573, 574,
+ 1175, 577, 574, 575, 1849, 576, 578, 582,
+ 1850, 579, 580, 1851, 581, 583, 599, 586,
+ 583, 584, 586, 1852, 585, 587, 589, 1071,
+ 1088, 1103, 1117, 1132, 1142, 1156, 1853, 588,
+ 590, 1070, 589, 586, 593, 590, 591, 1854,
+ 592, 594, 598, 1034, 1855, 595, 596, 1856,
+ 597, 583, 599, 1857, 601, 608, 600, 604,
+ 610, 601, 602, 604, 1858, 603, 605, 600,
+ 607, 609, 620, 670, 688, 698, 881, 1859,
+ 606, 1018, 1860, 900, 611, 615, 633, 1861,
+ 612, 613, 1862, 614, 616, 619, 616, 617,
+ 1863, 618, 1864, 621, 622, 623, 624, 625,
+ 669, 628, 625, 626, 1865, 627, 628, 629,
+ 331, 1866, 630, 631, 1867, 632, 331, 634,
+ 668, 635, 638, 648, 636, 637, 639, 655,
+ 640, 653, 641, 642, 651, 643, 644, 649,
+ 645, 646, 647, 650, 652, 654, 656, 664,
+ 657, 660, 658, 659, 661, 662, 663, 665,
+ 666, 667, 1868, 671, 672, 673, 674, 675,
+ 676, 687, 679, 676, 677, 1869, 678, 679,
+ 680, 684, 1870, 681, 682, 1871, 683, 684,
+ 684, 685, 1872, 686, 469, 1873, 689, 690,
+ 691, 697, 694, 691, 692, 1874, 693, 695,
+ 1875, 696, 1876, 699, 700, 701, 702, 703,
+ 880, 706, 703, 704, 1877, 705, 706, 707,
+ 711, 1878, 708, 709, 1879, 710, 711, 711,
+ 712, 716, 1880, 713, 714, 1881, 715, 717,
+ 719, 769, 786, 802, 817, 833, 846, 861,
+ 1882, 718, 720, 768, 719, 716, 723, 720,
+ 721, 1883, 722, 724, 729, 728, 732, 1884,
+ 725, 726, 1885, 727, 204, 189, 191, 730,
+ 714, 730, 731, 1886, 733, 767, 734, 737,
+ 747, 735, 736, 738, 754, 739, 752, 740,
+ 741, 750, 742, 743, 748, 744, 745, 746,
+ 749, 751, 753, 755, 763, 756, 759, 757,
+ 758, 760, 761, 762, 764, 765, 766, 1887,
+ 770, 771, 772, 773, 774, 775, 776, 777,
+ 778, 785, 781, 778, 779, 1888, 780, 782,
+ 784, 1889, 783, 730, 714, 784, 716, 1890,
+ 787, 788, 789, 790, 791, 792, 801, 795,
+ 792, 793, 1891, 794, 796, 800, 1892, 797,
+ 798, 1893, 799, 281, 297, 284, 1894, 803,
+ 804, 805, 806, 807, 816, 810, 807, 808,
+ 1895, 809, 810, 811, 815, 1896, 812, 813,
+ 1897, 814, 815, 350, 334, 336, 1898, 818,
+ 819, 820, 821, 822, 823, 832, 826, 823,
+ 824, 1899, 825, 826, 827, 831, 1900, 828,
+ 829, 1901, 830, 831, 452, 469, 455, 1902,
+ 834, 835, 836, 845, 839, 836, 837, 1903,
+ 838, 840, 844, 1904, 841, 842, 1905, 843,
+ 583, 599, 586, 1906, 847, 848, 849, 850,
+ 851, 860, 854, 851, 852, 1907, 853, 854,
+ 855, 859, 1908, 856, 857, 1909, 858, 859,
+ 730, 714, 716, 1910, 862, 863, 864, 865,
+ 866, 879, 869, 866, 867, 1911, 868, 870,
+ 872, 877, 1912, 871, 873, 874, 875, 876,
+ 730, 714, 716, 878, 1913, 1914, 882, 883,
+ 884, 885, 886, 899, 889, 886, 887, 1915,
+ 888, 890, 892, 897, 1916, 891, 893, 894,
+ 895, 896, 616, 619, 604, 898, 1917, 901,
+ 902, 903, 904, 905, 1017, 908, 905, 906,
+ 1918, 907, 909, 913, 1919, 910, 911, 1920,
+ 912, 914, 915, 284, 914, 915, 1921, 916,
+ 297, 918, 919, 920, 921, 922, 923, 967,
+ 926, 923, 924, 1922, 925, 926, 927, 684,
+ 1923, 928, 929, 1924, 930, 684, 932, 966,
+ 933, 936, 946, 934, 935, 937, 953, 938,
+ 951, 939, 940, 949, 941, 942, 947, 943,
+ 944, 945, 948, 950, 952, 954, 962, 955,
+ 958, 956, 957, 959, 960, 961, 963, 964,
+ 965, 1925, 969, 970, 971, 983, 974, 971,
+ 972, 1926, 973, 975, 979, 1927, 976, 977,
+ 1928, 978, 980, 981, 586, 980, 981, 1929,
+ 982, 599, 1930, 985, 986, 987, 988, 989,
+ 997, 992, 989, 990, 1931, 991, 992, 993,
+ 711, 1932, 994, 995, 1933, 996, 711, 1934,
+ 999, 1000, 1001, 1002, 1003, 1016, 1006, 1003,
+ 1004, 1935, 1005, 1007, 1009, 1014, 1936, 1008,
+ 1010, 1011, 1012, 1013, 314, 317, 302, 1015,
+ 1937, 1938, 1019, 1020, 1021, 1022, 1023, 1024,
+ 1025, 1026, 1033, 1029, 1026, 1027, 1939, 1028,
+ 1030, 1032, 1940, 1031, 616, 619, 1032, 604,
+ 1941, 1035, 1069, 1036, 1039, 1049, 1037, 1038,
+ 1040, 1056, 1041, 1054, 1042, 1043, 1052, 1044,
+ 1045, 1050, 1046, 1047, 1048, 1051, 1053, 1055,
+ 1057, 1065, 1058, 1061, 1059, 1060, 1062, 1063,
+ 1064, 1066, 1067, 1068, 1942, 1072, 1073, 1074,
+ 1075, 1076, 1077, 1078, 1079, 1080, 1087, 1083,
+ 1080, 1081, 1943, 1082, 1084, 1086, 1944, 1085,
+ 583, 599, 1086, 586, 1945, 1089, 1090, 1091,
+ 1092, 1093, 1094, 1102, 1097, 1094, 1095, 1946,
+ 1096, 1098, 1947, 1099, 1100, 1948, 1101, 1949,
+ 1104, 1105, 1106, 1107, 1108, 1116, 1111, 1108,
+ 1109, 1950, 1110, 1111, 1112, 1951, 1113, 1114,
+ 1952, 1115, 1953, 1118, 1119, 1120, 1121, 1122,
+ 1123, 1131, 1126, 1123, 1124, 1954, 1125, 1126,
+ 1127, 1955, 1128, 1129, 1956, 1130, 1957, 1133,
+ 1134, 1135, 1141, 1138, 1135, 1136, 1958, 1137,
+ 1139, 1959, 1140, 1960, 1143, 1144, 1145, 1146,
+ 1147, 1155, 1150, 1147, 1148, 1961, 1149, 1150,
+ 1151, 1962, 1152, 1153, 1963, 1154, 1964, 1157,
+ 1158, 1159, 1160, 1161, 1174, 1164, 1161, 1162,
+ 1965, 1163, 1165, 1167, 1172, 1966, 1166, 1168,
+ 1169, 1170, 1171, 583, 599, 586, 1173, 1967,
+ 1968, 1177, 1178, 1179, 1180, 1181, 1190, 1184,
+ 1181, 1182, 1969, 1183, 1184, 1185, 1189, 1970,
+ 1186, 1187, 1971, 1188, 1189, 730, 714, 716,
+ 1972, 1192, 1193, 1194, 1195, 1196, 1209, 1199,
+ 1196, 1197, 1973, 1198, 1200, 1202, 1207, 1974,
+ 1201, 1203, 1204, 1205, 1206, 452, 469, 455,
+ 1208, 1975, 1976, 1212, 1213, 1214, 1223, 1217,
+ 1214, 1215, 1977, 1216, 1218, 1222, 1978, 1219,
+ 1220, 1979, 1221, 583, 599, 586, 1980, 1225,
+ 1226, 1227, 1228, 1229, 1238, 1232, 1229, 1230,
+ 1981, 1231, 1232, 1233, 1237, 1982, 1234, 1235,
+ 1983, 1236, 1237, 730, 714, 716, 1984, 1240,
+ 1241, 1242, 1243, 1244, 1257, 1247, 1244, 1245,
+ 1985, 1246, 1248, 1250, 1255, 1986, 1249, 1251,
+ 1252, 1253, 1254, 350, 334, 336, 1256, 1987,
+ 1988, 1260, 1261, 1262, 1263, 1264, 1270, 1267,
+ 1264, 1265, 1989, 1266, 1268, 1990, 1269, 1991,
+ 1272, 1273, 1274, 1275, 1276, 1277, 1278, 1279,
+ 1286, 1282, 1279, 1280, 1992, 1281, 1283, 1285,
+ 1993, 1284, 314, 317, 1285, 302, 1994, 1288,
+ 1322, 1289, 1292, 1302, 1290, 1291, 1293, 1309,
+ 1294, 1307, 1295, 1296, 1305, 1297, 1298, 1303,
+ 1299, 1300, 1301, 1304, 1306, 1308, 1310, 1318,
+ 1311, 1314, 1312, 1313, 1315, 1316, 1317, 1319,
+ 1320, 1321, 1995, 1325, 1326, 1327, 1328, 1329,
+ 1330, 1331, 1332, 1333, 1340, 1336, 1333, 1334,
+ 1996, 1335, 1337, 1339, 1997, 1338, 281, 297,
+ 1339, 284, 1998, 1342, 1343, 1344, 1345, 1346,
+ 1347, 1353, 1350, 1347, 1348, 1999, 1349, 1351,
+ 2000, 1352, 2001, 1355, 1356, 1357, 1358, 1359,
+ 1367, 1362, 1359, 1360, 2002, 1361, 1362, 1363,
+ 2003, 1364, 1365, 2004, 1366, 2005, 1369, 1370,
+ 1371, 1372, 1373, 1374, 1382, 1377, 1374, 1375,
+ 2006, 1376, 1377, 1378, 2007, 1379, 1380, 2008,
+ 1381, 2009, 1384, 1385, 1386, 1394, 1389, 1386,
+ 1387, 2010, 1388, 1390, 2011, 1391, 1392, 2012,
+ 1393, 2013, 1396, 1397, 1398, 1399, 1400, 1408,
+ 1403, 1400, 1401, 2014, 1402, 1403, 1404, 2015,
+ 1405, 1406, 2016, 1407, 2017, 1410, 1411, 1412,
+ 1413, 1414, 1427, 1417, 1414, 1415, 2018, 1416,
+ 1418, 1420, 1425, 2019, 1419, 1421, 1422, 1423,
+ 1424, 281, 297, 284, 1426, 2020, 2021, 1430,
+ 1431, 1432, 1433, 1434, 1442, 1437, 1434, 1435,
+ 2022, 1436, 1437, 1438, 367, 2023, 1439, 1440,
+ 2024, 1441, 2025, 1444, 1445, 1446, 1447, 1448,
+ 1449, 1457, 1452, 1449, 1450, 2026, 1451, 1452,
+ 1453, 485, 2027, 1454, 1455, 2028, 1456, 2029,
+ 1459, 1460, 1461, 1470, 1464, 1461, 1462, 2030,
+ 1463, 1465, 1469, 2031, 1466, 1467, 2032, 1468,
+ 583, 599, 586, 2033, 1472, 1473, 1474, 1475,
+ 1476, 1484, 1479, 1476, 1477, 2034, 1478, 1479,
+ 1480, 747, 2035, 1481, 1482, 2036, 1483, 2037,
+ 1486, 1487, 1488, 1489, 1490, 1503, 1493, 1490,
+ 1491, 2038, 1492, 1494, 1496, 1501, 2039, 1495,
+ 1497, 1498, 1499, 1500, 204, 189, 191, 1502,
+ 2040, 2041, 1506, 1507, 1508, 1509, 1510, 1519,
+ 1513, 1510, 1511, 2042, 1512, 1514, 1518, 2043,
+ 1515, 1516, 2044, 1517, 279, 2045, 1521, 1522,
+ 1523, 1524, 1525, 1526, 1527, 1528, 1535, 1531,
+ 1528, 1529, 2046, 1530, 1532, 1534, 2047, 1533,
+ 52, 55, 1534, 38, 2048, 1537, 1538, 1539,
+ 1540, 1541, 1542, 1711, 1545, 1542, 1543, 2049,
+ 1544, 1546, 1550, 2050, 1547, 1548, 2051, 1549,
+ 1551, 1552, 1553, 1551, 1552, 1553, 2052, 1554,
+ 1554, 1555, 1559, 2053, 1556, 1557, 2054, 1558,
+ 1560, 1562, 1609, 1626, 1642, 1654, 1667, 1680,
+ 1692, 2055, 1561, 1563, 1608, 1562, 1559, 1566,
+ 1563, 1564, 2056, 1565, 1567, 1569, 1572, 2057,
+ 1568, 1570, 1557, 1570, 1571, 2058, 1573, 1607,
+ 1574, 1577, 1587, 1575, 1576, 1578, 1594, 1579,
+ 1592, 1580, 1581, 1590, 1582, 1583, 1588, 1584,
+ 1585, 1586, 1589, 1591, 1593, 1595, 1603, 1596,
+ 1599, 1597, 1598, 1600, 1601, 1602, 1604, 1605,
+ 1606, 2059, 1610, 1611, 1612, 1613, 1614, 1615,
+ 1616, 1617, 1618, 1625, 1621, 1618, 1619, 2060,
+ 1620, 1622, 1624, 2061, 1623, 1570, 1557, 1624,
+ 1559, 2062, 1627, 1628, 1629, 1630, 1631, 1632,
+ 1641, 1635, 1632, 1633, 2063, 1634, 1636, 1640,
+ 2064, 1637, 1638, 2065, 1639, 281, 297, 284,
+ 2066, 1643, 1644, 1645, 1646, 1647, 1653, 1650,
+ 1647, 1648, 2067, 1649, 1650, 1651, 2068, 1652,
+ 2069, 1655, 1656, 1657, 1658, 1659, 1660, 1666,
+ 1663, 1660, 1661, 2070, 1662, 1663, 1664, 2071,
+ 1665, 2072, 1668, 1669, 1670, 1679, 1673, 1670,
+ 1671, 2073, 1672, 1674, 1678, 2074, 1675, 1676,
+ 2075, 1677, 583, 599, 586, 2076, 1681, 1682,
+ 1683, 1684, 1685, 1691, 1688, 1685, 1686, 2077,
+ 1687, 1688, 1689, 2078, 1690, 2079, 1693, 1694,
+ 1695, 1696, 1697, 1710, 1700, 1697, 1698, 2080,
+ 1699, 1701, 1703, 1708, 2081, 1702, 1704, 1705,
+ 1706, 1707, 1570, 1557, 1559, 1709, 2082, 2083,
+ 1713, 1714, 1715, 1727, 1718, 1715, 1716, 2084,
+ 1717, 1719, 1723, 2085, 1720, 1721, 2086, 1722,
+ 1724, 1725, 1726, 1724, 1725, 1726, 2087, 1554,
+ 2088, 1729, 1730, 1731, 1732, 1733, 31, 32,
+ 1735, 1737, 66, 121, 157, 328, 432, 448,
+ 550, 566, 630, 681, 708, 812, 828, 856,
+ 928, 994, 1113, 1128, 1152, 1186, 1234, 1364,
+ 1379, 1405, 1439, 1454, 1481, 1652, 1665, 1690
+};
+
+static const char _thttp_machine_parser_header_WWW_Authenticate_trans_actions[] = {
+ 9, 0, 7, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 27, 0, 27, 0, 0,
+ 0, 0, 0, 5, 5, 0, 0, 1,
+ 1, 1, 1, 1, 1, 1, 1, 27,
+ 0, 25, 25, 0, 25, 0, 0, 0,
+ 0, 27, 0, 0, 1, 1, 27, 0,
+ 0, 27, 0, 0, 0, 0, 0, 27,
+ 0, 0, 27, 0, 0, 0, 0, 27,
+ 25, 25, 0, 0, 27, 0, 27, 0,
+ 0, 0, 0, 25, 25, 0, 0, 0,
+ 27, 0, 1, 1, 1, 27, 1, 1,
+ 27, 0, 0, 0, 0, 0, 27, 15,
+ 15, 15, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 27, 0, 0, 0,
+ 0, 0, 25, 25, 0, 0, 0, 27,
+ 0, 1, 1, 1, 27, 1, 1, 27,
+ 0, 0, 0, 0, 0, 27, 17, 17,
+ 17, 27, 0, 0, 25, 25, 0, 0,
+ 0, 27, 0, 0, 0, 27, 0, 0,
+ 27, 0, 1, 1, 1, 38, 1, 0,
+ 0, 0, 23, 0, 0, 27, 0, 0,
+ 27, 0, 0, 0, 0, 0, 0, 25,
+ 25, 0, 0, 0, 27, 0, 1, 1,
+ 1, 27, 1, 1, 27, 0, 0, 0,
+ 0, 0, 27, 11, 11, 11, 27, 0,
+ 0, 0, 0, 25, 25, 0, 0, 0,
+ 27, 0, 0, 1, 1, 27, 0, 0,
+ 0, 0, 0, 19, 19, 19, 0, 27,
+ 27, 23, 0, 0, 0, 27, 0, 0,
+ 27, 0, 0, 1, 1, 1, 1, 1,
+ 1, 1, 1, 27, 0, 25, 25, 0,
+ 25, 0, 0, 0, 27, 0, 0, 0,
+ 0, 0, 27, 0, 0, 27, 0, 25,
+ 25, 0, 0, 27, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 27, 0,
+ 0, 0, 0, 0, 0, 0, 0, 25,
+ 25, 0, 0, 0, 27, 0, 0, 1,
+ 27, 0, 21, 21, 0, 21, 27, 0,
+ 0, 0, 0, 0, 25, 25, 0, 0,
+ 0, 27, 0, 0, 0, 27, 0, 0,
+ 27, 0, 1, 1, 41, 41, 29, 41,
+ 1, 0, 0, 0, 13, 0, 0, 27,
+ 27, 13, 0, 0, 0, 27, 0, 0,
+ 1, 1, 1, 1, 1, 1, 1, 1,
+ 27, 0, 25, 25, 0, 25, 0, 0,
+ 0, 27, 0, 0, 0, 0, 27, 0,
+ 0, 27, 0, 25, 25, 27, 25, 25,
+ 0, 25, 0, 0, 0, 0, 27, 0,
+ 0, 1, 1, 1, 1, 1, 1, 1,
+ 1, 27, 0, 0, 27, 0, 0, 0,
+ 0, 27, 0, 0, 27, 0, 25, 25,
+ 0, 0, 27, 0, 27, 0, 0, 0,
+ 0, 25, 25, 0, 0, 0, 27, 0,
+ 1, 1, 47, 27, 1, 1, 27, 0,
+ 13, 0, 0, 0, 27, 0, 0, 27,
+ 0, 0, 1, 1, 1, 1, 1, 1,
+ 1, 1, 27, 0, 25, 25, 0, 25,
+ 0, 0, 0, 27, 0, 0, 0, 0,
+ 0, 27, 0, 0, 27, 0, 15, 15,
+ 15, 25, 25, 0, 0, 27, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 27, 0, 0, 0, 0, 0, 0,
+ 0, 0, 25, 25, 0, 0, 0, 27,
+ 0, 0, 1, 27, 0, 21, 21, 0,
+ 21, 27, 0, 0, 0, 0, 0, 25,
+ 25, 0, 0, 0, 27, 0, 0, 0,
+ 27, 0, 0, 27, 0, 32, 32, 32,
+ 27, 0, 0, 0, 0, 25, 25, 0,
+ 0, 0, 27, 0, 1, 1, 1, 27,
+ 1, 1, 27, 0, 0, 15, 15, 15,
+ 27, 0, 0, 0, 0, 0, 25, 25,
+ 0, 0, 0, 27, 0, 1, 1, 1,
+ 27, 1, 1, 27, 0, 0, 15, 15,
+ 15, 0, 0, 0, 27, 0, 0, 1,
+ 1, 1, 1, 1, 1, 1, 1, 27,
+ 0, 25, 25, 0, 25, 0, 0, 0,
+ 27, 0, 0, 0, 0, 0, 27, 0,
+ 0, 27, 0, 17, 17, 17, 25, 25,
+ 27, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 27, 0, 0, 0,
+ 0, 0, 0, 0, 0, 25, 25, 0,
+ 0, 0, 27, 0, 0, 1, 27, 0,
+ 21, 21, 0, 21, 27, 0, 0, 0,
+ 0, 0, 25, 25, 0, 0, 0, 27,
+ 0, 0, 0, 27, 0, 0, 27, 0,
+ 35, 35, 35, 27, 0, 0, 0, 0,
+ 25, 25, 0, 0, 0, 27, 0, 1,
+ 1, 1, 27, 1, 1, 27, 0, 0,
+ 17, 17, 17, 27, 0, 0, 0, 0,
+ 0, 25, 25, 0, 0, 0, 27, 0,
+ 1, 1, 1, 27, 1, 1, 27, 0,
+ 0, 17, 17, 17, 27, 0, 0, 25,
+ 25, 0, 0, 0, 27, 0, 0, 0,
+ 27, 0, 0, 27, 0, 53, 53, 53,
+ 0, 0, 0, 27, 0, 0, 1, 1,
+ 1, 1, 1, 1, 1, 1, 27, 0,
+ 25, 25, 0, 25, 0, 0, 0, 27,
+ 0, 0, 0, 0, 27, 0, 0, 27,
+ 0, 25, 25, 27, 25, 25, 0, 25,
+ 0, 0, 0, 0, 27, 0, 0, 1,
+ 1, 1, 1, 1, 1, 1, 1, 27,
+ 0, 0, 27, 0, 0, 0, 0, 27,
+ 0, 0, 27, 0, 25, 25, 0, 0,
+ 27, 0, 27, 0, 0, 0, 0, 25,
+ 25, 0, 0, 0, 27, 0, 1, 1,
+ 38, 27, 1, 1, 27, 0, 23, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 27, 0, 0, 0, 0, 0,
+ 25, 25, 0, 0, 0, 27, 0, 1,
+ 1, 38, 27, 1, 1, 27, 0, 23,
+ 0, 0, 27, 0, 0, 27, 0, 0,
+ 25, 25, 0, 0, 0, 27, 0, 0,
+ 27, 0, 27, 0, 0, 0, 0, 25,
+ 25, 0, 0, 0, 27, 0, 1, 1,
+ 38, 27, 1, 1, 27, 0, 23, 0,
+ 0, 0, 27, 0, 0, 27, 0, 0,
+ 1, 1, 1, 1, 1, 1, 1, 1,
+ 27, 0, 25, 25, 0, 25, 0, 0,
+ 0, 27, 0, 0, 0, 0, 0, 27,
+ 0, 0, 27, 0, 11, 11, 11, 25,
+ 25, 0, 0, 27, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 27,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 25, 25, 0, 0, 0, 27, 0, 0,
+ 1, 27, 0, 21, 21, 0, 21, 27,
+ 0, 0, 0, 0, 0, 25, 25, 0,
+ 0, 0, 27, 0, 0, 0, 27, 0,
+ 0, 27, 0, 44, 44, 44, 27, 0,
+ 0, 0, 0, 25, 25, 0, 0, 0,
+ 27, 0, 1, 1, 1, 27, 1, 1,
+ 27, 0, 0, 11, 11, 11, 27, 0,
+ 0, 0, 0, 0, 25, 25, 0, 0,
+ 0, 27, 0, 1, 1, 1, 27, 1,
+ 1, 27, 0, 0, 11, 11, 11, 27,
+ 0, 0, 25, 25, 0, 0, 0, 27,
+ 0, 0, 0, 27, 0, 0, 27, 0,
+ 44, 44, 44, 27, 0, 0, 0, 0,
+ 25, 25, 0, 0, 0, 27, 0, 1,
+ 1, 1, 27, 1, 1, 27, 0, 0,
+ 11, 11, 11, 27, 0, 0, 0, 0,
+ 25, 25, 0, 0, 0, 27, 0, 0,
+ 1, 1, 27, 0, 0, 0, 0, 0,
+ 19, 19, 19, 0, 27, 27, 0, 0,
+ 0, 0, 25, 25, 0, 0, 0, 27,
+ 0, 0, 1, 1, 27, 0, 0, 0,
+ 0, 0, 19, 19, 19, 0, 27, 0,
+ 0, 0, 0, 25, 25, 0, 0, 0,
+ 27, 0, 0, 23, 27, 0, 0, 27,
+ 0, 1, 1, 1, 0, 0, 27, 0,
+ 0, 0, 0, 0, 0, 0, 25, 25,
+ 0, 0, 0, 27, 0, 1, 1, 47,
+ 27, 1, 1, 27, 0, 13, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 27, 0, 0, 25, 25, 0, 0,
+ 0, 27, 0, 0, 13, 27, 0, 0,
+ 27, 0, 1, 1, 1, 0, 0, 27,
+ 0, 0, 27, 0, 0, 0, 0, 25,
+ 25, 0, 0, 0, 27, 0, 1, 1,
+ 29, 27, 1, 1, 27, 0, 13, 27,
+ 0, 0, 0, 0, 25, 25, 0, 0,
+ 0, 27, 0, 0, 1, 1, 27, 0,
+ 0, 0, 0, 0, 19, 19, 19, 0,
+ 27, 27, 0, 0, 0, 0, 0, 0,
+ 0, 25, 25, 0, 0, 0, 27, 0,
+ 0, 1, 27, 0, 21, 21, 0, 21,
+ 27, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 27, 0, 0, 0,
+ 0, 0, 0, 0, 0, 25, 25, 0,
+ 0, 0, 27, 0, 0, 1, 27, 0,
+ 21, 21, 0, 21, 27, 0, 0, 0,
+ 0, 0, 25, 25, 0, 0, 0, 27,
+ 0, 0, 27, 0, 0, 27, 0, 27,
+ 0, 0, 0, 0, 25, 25, 0, 0,
+ 0, 27, 0, 1, 1, 27, 1, 1,
+ 27, 0, 27, 0, 0, 0, 0, 0,
+ 25, 25, 0, 0, 0, 27, 0, 1,
+ 1, 27, 1, 1, 27, 0, 27, 0,
+ 0, 25, 25, 0, 0, 0, 27, 0,
+ 0, 27, 0, 27, 0, 0, 0, 0,
+ 25, 25, 0, 0, 0, 27, 0, 1,
+ 1, 27, 1, 1, 27, 0, 27, 0,
+ 0, 0, 0, 25, 25, 0, 0, 0,
+ 27, 0, 0, 1, 1, 27, 0, 0,
+ 0, 0, 0, 19, 19, 19, 0, 27,
+ 27, 0, 0, 0, 0, 25, 25, 0,
+ 0, 0, 27, 0, 1, 1, 1, 27,
+ 1, 1, 27, 0, 0, 17, 17, 17,
+ 27, 0, 0, 0, 0, 25, 25, 0,
+ 0, 0, 27, 0, 0, 1, 1, 27,
+ 0, 0, 0, 0, 0, 19, 19, 19,
+ 0, 27, 27, 0, 0, 25, 25, 0,
+ 0, 0, 27, 0, 0, 0, 27, 0,
+ 0, 27, 0, 50, 50, 50, 27, 0,
+ 0, 0, 0, 25, 25, 0, 0, 0,
+ 27, 0, 1, 1, 1, 27, 1, 1,
+ 27, 0, 0, 15, 15, 15, 27, 0,
+ 0, 0, 0, 25, 25, 0, 0, 0,
+ 27, 0, 0, 1, 1, 27, 0, 0,
+ 0, 0, 0, 19, 19, 19, 0, 27,
+ 27, 0, 0, 0, 0, 25, 25, 0,
+ 0, 0, 27, 0, 0, 27, 0, 27,
+ 0, 0, 0, 0, 0, 0, 0, 25,
+ 25, 0, 0, 0, 27, 0, 0, 1,
+ 27, 0, 21, 21, 0, 21, 27, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 27, 0, 0, 0, 0, 0,
+ 0, 0, 0, 25, 25, 0, 0, 0,
+ 27, 0, 0, 1, 27, 0, 21, 21,
+ 0, 21, 27, 0, 0, 0, 0, 0,
+ 25, 25, 0, 0, 0, 27, 0, 0,
+ 27, 0, 27, 0, 0, 0, 0, 25,
+ 25, 0, 0, 0, 27, 0, 1, 1,
+ 27, 1, 1, 27, 0, 27, 0, 0,
+ 0, 0, 0, 25, 25, 0, 0, 0,
+ 27, 0, 1, 1, 27, 1, 1, 27,
+ 0, 27, 0, 0, 25, 25, 0, 0,
+ 0, 27, 0, 0, 27, 0, 0, 27,
+ 0, 27, 0, 0, 0, 0, 25, 25,
+ 0, 0, 0, 27, 0, 1, 1, 27,
+ 1, 1, 27, 0, 27, 0, 0, 0,
+ 0, 25, 25, 0, 0, 0, 27, 0,
+ 0, 1, 1, 27, 0, 0, 0, 0,
+ 0, 19, 19, 19, 0, 27, 27, 0,
+ 0, 0, 0, 25, 25, 0, 0, 0,
+ 27, 0, 1, 1, 1, 27, 1, 1,
+ 27, 0, 27, 0, 0, 0, 0, 0,
+ 25, 25, 0, 0, 0, 27, 0, 1,
+ 1, 1, 27, 1, 1, 27, 0, 27,
+ 0, 0, 25, 25, 0, 0, 0, 27,
+ 0, 0, 0, 27, 0, 0, 27, 0,
+ 41, 41, 41, 27, 0, 0, 0, 0,
+ 25, 25, 0, 0, 0, 27, 0, 1,
+ 1, 1, 27, 1, 1, 27, 0, 27,
+ 0, 0, 0, 0, 25, 25, 0, 0,
+ 0, 27, 0, 0, 1, 1, 27, 0,
+ 0, 0, 0, 0, 19, 19, 19, 0,
+ 27, 27, 0, 0, 0, 0, 25, 25,
+ 0, 0, 0, 27, 0, 0, 0, 27,
+ 0, 0, 27, 0, 1, 27, 0, 0,
+ 0, 0, 0, 0, 0, 25, 25, 0,
+ 0, 0, 27, 0, 0, 1, 27, 0,
+ 21, 21, 0, 21, 27, 0, 0, 0,
+ 0, 0, 25, 25, 0, 0, 0, 27,
+ 0, 0, 0, 27, 0, 0, 27, 0,
+ 1, 1, 1, 0, 0, 0, 27, 13,
+ 0, 0, 0, 27, 0, 0, 27, 0,
+ 0, 1, 1, 1, 1, 1, 1, 1,
+ 1, 27, 0, 25, 25, 0, 25, 0,
+ 0, 0, 27, 0, 0, 0, 0, 27,
+ 0, 25, 25, 0, 0, 27, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 27, 0, 0, 0, 0, 0, 0,
+ 0, 0, 25, 25, 0, 0, 0, 27,
+ 0, 0, 1, 27, 0, 21, 21, 0,
+ 21, 27, 0, 0, 0, 0, 0, 25,
+ 25, 0, 0, 0, 27, 0, 0, 0,
+ 27, 0, 0, 27, 0, 56, 56, 56,
+ 27, 0, 0, 0, 0, 25, 25, 0,
+ 0, 0, 27, 0, 1, 1, 27, 1,
+ 27, 0, 0, 0, 0, 0, 25, 25,
+ 0, 0, 0, 27, 0, 1, 1, 27,
+ 1, 27, 0, 0, 25, 25, 0, 0,
+ 0, 27, 0, 0, 0, 27, 0, 0,
+ 27, 0, 56, 56, 56, 27, 0, 0,
+ 0, 0, 25, 25, 0, 0, 0, 27,
+ 0, 1, 1, 27, 1, 27, 0, 0,
+ 0, 0, 25, 25, 0, 0, 0, 27,
+ 0, 0, 1, 1, 27, 0, 0, 0,
+ 0, 0, 19, 19, 19, 0, 27, 27,
+ 0, 0, 25, 25, 0, 0, 0, 27,
+ 0, 0, 0, 27, 0, 0, 27, 0,
+ 1, 1, 1, 0, 0, 0, 27, 23,
+ 27, 0, 0, 0, 0, 0, 3, 3,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0
+};
+
+static const int thttp_machine_parser_header_WWW_Authenticate_start = 1;
+static const int thttp_machine_parser_header_WWW_Authenticate_first_final = 1738;
+static const int thttp_machine_parser_header_WWW_Authenticate_error = 0;
+
+static const int thttp_machine_parser_header_WWW_Authenticate_en_main = 1;
+
+
+/* #line 194 "./ragel/thttp_parser_header_WWW_Authenticate.rl" */
+
+/* #line 8069 "./src/headers/thttp_header_WWW_Authenticate.c" */
+ {
+ cs = thttp_machine_parser_header_WWW_Authenticate_start;
+ }
+
+/* #line 195 "./ragel/thttp_parser_header_WWW_Authenticate.rl" */
+
+/* #line 8076 "./src/headers/thttp_header_WWW_Authenticate.c" */
+ {
+ int _klen;
+ unsigned int _trans;
+ const char *_acts;
+ unsigned int _nacts;
+ const char *_keys;
+
+ if ( p == pe )
+ goto _test_eof;
+ if ( cs == 0 )
+ goto _out;
+_resume:
+ _keys = _thttp_machine_parser_header_WWW_Authenticate_trans_keys + _thttp_machine_parser_header_WWW_Authenticate_key_offsets[cs];
+ _trans = _thttp_machine_parser_header_WWW_Authenticate_index_offsets[cs];
+
+ _klen = _thttp_machine_parser_header_WWW_Authenticate_single_lengths[cs];
+ if ( _klen > 0 ) {
+ const char *_lower = _keys;
+ const char *_mid;
+ const char *_upper = _keys + _klen - 1;
+ while (1) {
+ if ( _upper < _lower )
+ break;
+
+ _mid = _lower + ((_upper-_lower) >> 1);
+ if ( (*p) < *_mid )
+ _upper = _mid - 1;
+ else if ( (*p) > *_mid )
+ _lower = _mid + 1;
+ else {
+ _trans += (_mid - _keys);
+ goto _match;
+ }
+ }
+ _keys += _klen;
+ _trans += _klen;
+ }
+
+ _klen = _thttp_machine_parser_header_WWW_Authenticate_range_lengths[cs];
+ if ( _klen > 0 ) {
+ const char *_lower = _keys;
+ const char *_mid;
+ const char *_upper = _keys + (_klen<<1) - 2;
+ while (1) {
+ if ( _upper < _lower )
+ break;
+
+ _mid = _lower + (((_upper-_lower) >> 1) & ~1);
+ if ( (*p) < _mid[0] )
+ _upper = _mid - 2;
+ else if ( (*p) > _mid[1] )
+ _lower = _mid + 2;
+ else {
+ _trans += ((_mid - _keys)>>1);
+ goto _match;
+ }
+ }
+ _trans += _klen;
+ }
+
+_match:
+ _trans = _thttp_machine_parser_header_WWW_Authenticate_indicies[_trans];
+ cs = _thttp_machine_parser_header_WWW_Authenticate_trans_targs[_trans];
+
+ if ( _thttp_machine_parser_header_WWW_Authenticate_trans_actions[_trans] == 0 )
+ goto _again;
+
+ _acts = _thttp_machine_parser_header_WWW_Authenticate_actions + _thttp_machine_parser_header_WWW_Authenticate_trans_actions[_trans];
+ _nacts = (unsigned int) *_acts++;
+ while ( _nacts-- > 0 )
+ {
+ switch ( *_acts++ )
+ {
+ case 0:
+/* #line 54 "./ragel/thttp_parser_header_WWW_Authenticate.rl" */
+ {
+ tag_start = p;
+ }
+ break;
+ case 1:
+/* #line 58 "./ragel/thttp_parser_header_WWW_Authenticate.rl" */
+ {
+ hdr_WWW_Authenticate->scheme = tsk_strdup("Digest");
+ }
+ break;
+ case 2:
+/* #line 62 "./ragel/thttp_parser_header_WWW_Authenticate.rl" */
+ {
+ hdr_WWW_Authenticate->scheme = tsk_strdup("Basic");
+ }
+ break;
+ case 3:
+/* #line 66 "./ragel/thttp_parser_header_WWW_Authenticate.rl" */
+ {
+ THTTP_HEADER(hdr_WWW_Authenticate)->type = thttp_htype_WWW_Authenticate;
+ }
+ break;
+ case 4:
+/* #line 70 "./ragel/thttp_parser_header_WWW_Authenticate.rl" */
+ {
+ THTTP_HEADER(hdr_WWW_Authenticate)->type = thttp_htype_Proxy_Authenticate;
+ }
+ break;
+ case 5:
+/* #line 74 "./ragel/thttp_parser_header_WWW_Authenticate.rl" */
+ {
+ TSK_PARSER_SET_STRING(hdr_WWW_Authenticate->realm);
+ tsk_strunquote(&hdr_WWW_Authenticate->realm);
+ }
+ break;
+ case 6:
+/* #line 79 "./ragel/thttp_parser_header_WWW_Authenticate.rl" */
+ {
+ TSK_PARSER_SET_STRING(hdr_WWW_Authenticate->domain);
+ //tsk_strunquote(&hdr_WWW_Authenticate->domain);
+ }
+ break;
+ case 7:
+/* #line 84 "./ragel/thttp_parser_header_WWW_Authenticate.rl" */
+ {
+ TSK_PARSER_SET_STRING(hdr_WWW_Authenticate->nonce);
+ tsk_strunquote(&hdr_WWW_Authenticate->nonce);
+ }
+ break;
+ case 8:
+/* #line 89 "./ragel/thttp_parser_header_WWW_Authenticate.rl" */
+ {
+ TSK_PARSER_SET_STRING(hdr_WWW_Authenticate->opaque);
+ tsk_strunquote(&hdr_WWW_Authenticate->opaque);
+ }
+ break;
+ case 9:
+/* #line 94 "./ragel/thttp_parser_header_WWW_Authenticate.rl" */
+ {
+ hdr_WWW_Authenticate->stale = tsk_strniequals(tag_start, "true", 4);
+ }
+ break;
+ case 10:
+/* #line 98 "./ragel/thttp_parser_header_WWW_Authenticate.rl" */
+ {
+ TSK_PARSER_SET_STRING(hdr_WWW_Authenticate->algorithm);
+ }
+ break;
+ case 11:
+/* #line 102 "./ragel/thttp_parser_header_WWW_Authenticate.rl" */
+ {
+ TSK_PARSER_SET_STRING(hdr_WWW_Authenticate->qop);
+ //tsk_strunquote(&hdr_WWW_Authenticate->qop);
+ }
+ break;
+ case 12:
+/* #line 107 "./ragel/thttp_parser_header_WWW_Authenticate.rl" */
+ {
+ TSK_PARSER_ADD_PARAM(THTTP_HEADER_PARAMS(hdr_WWW_Authenticate));
+ }
+ break;
+ case 13:
+/* #line 115 "./ragel/thttp_parser_header_WWW_Authenticate.rl" */
+ {
+ }
+ break;
+/* #line 8238 "./src/headers/thttp_header_WWW_Authenticate.c" */
+ }
+ }
+
+_again:
+ if ( cs == 0 )
+ goto _out;
+ if ( ++p != pe )
+ goto _resume;
+ _test_eof: {}
+ _out: {}
+ }
+
+/* #line 196 "./ragel/thttp_parser_header_WWW_Authenticate.rl" */
+
+ if( cs <
+/* #line 8254 "./src/headers/thttp_header_WWW_Authenticate.c" */
+1738
+/* #line 197 "./ragel/thttp_parser_header_WWW_Authenticate.rl" */
+ ){
+ TSK_DEBUG_ERROR("Failed to parse WWW-Authenticate header.");
+ TSK_OBJECT_SAFE_FREE(hdr_WWW_Authenticate);
+ }
+
+ return hdr_WWW_Authenticate;
+}
+
+thttp_header_Proxy_Authenticate_t *thttp_header_Proxy_Authenticate_parse(const char *data, tsk_size_t size)
+{
+ return thttp_header_WWW_Authenticate_parse(data, size);
+}
+
+
+
+
+
+//========================================================
+// WWW_Authenticate header object definition
+//
+
+static tsk_object_t* thttp_header_WWW_Authenticate_ctor(tsk_object_t *self, va_list * app)
+{
+ thttp_header_WWW_Authenticate_t *WWW_Authenticate = self;
+ if(WWW_Authenticate){
+ THTTP_HEADER(WWW_Authenticate)->type = thttp_htype_WWW_Authenticate;
+ THTTP_HEADER(WWW_Authenticate)->tostring = thttp_header_WWW_Authenticate_tostring;
+ }
+ else{
+ TSK_DEBUG_ERROR("Failed to create new WWW_Authenticate header.");
+ }
+ return self;
+}
+
+static tsk_object_t* thttp_header_WWW_Authenticate_dtor(tsk_object_t *self)
+{
+ thttp_header_WWW_Authenticate_t *WWW_Authenticate = self;
+ if(WWW_Authenticate){
+ TSK_FREE(WWW_Authenticate->scheme);
+ TSK_FREE(WWW_Authenticate->realm);
+ TSK_FREE(WWW_Authenticate->domain);
+ TSK_FREE(WWW_Authenticate->nonce);
+ TSK_FREE(WWW_Authenticate->opaque);
+ TSK_FREE(WWW_Authenticate->algorithm);
+ TSK_FREE(WWW_Authenticate->qop);
+
+ TSK_OBJECT_SAFE_FREE(THTTP_HEADER_PARAMS(WWW_Authenticate));
+ }
+ else{
+ TSK_DEBUG_ERROR("Null WWW_Authenticate header.");
+ }
+
+ return self;
+}
+
+static const tsk_object_def_t thttp_header_WWW_Authenticate_def_s =
+{
+ sizeof(thttp_header_WWW_Authenticate_t),
+ thttp_header_WWW_Authenticate_ctor,
+ thttp_header_WWW_Authenticate_dtor,
+ tsk_null
+};
+const tsk_object_def_t *thttp_header_WWW_Authenticate_def_t = &thttp_header_WWW_Authenticate_def_s;
diff --git a/tinyHTTP/src/makefile b/tinyHTTP/src/makefile
new file mode 100644
index 0000000..056978f
--- /dev/null
+++ b/tinyHTTP/src/makefile
@@ -0,0 +1,49 @@
+APP := lib$(PROJECT).so
+
+INSTALL_DIR = /system/lib
+
+CFLAGS := $(CFLAGS) -I$(DOUBANGO_HOME)/tinySAK/src -I$(DOUBANGO_HOME)/tinyNET/src -I$(DOUBANGO_HOME)/$(PROJECT)/include
+LDFLAGS := $(LDFLAGS) -Wl,-soname,lib$(PROJECT).so,-Bsymbolic,-shared,--whole-archive -ltinySAK -ltinyNET
+
+all: $(APP)
+
+OBJS = \
+ thttp.o\
+ thttp_message.o\
+ thttp_operation.o\
+ thttp_transport.o\
+ thttp_url.o
+ ###################
+ ## auth
+ ###################
+OBJS += auth/thttp_auth.o
+ ###################
+ ## headers
+ ###################
+OBJS += headers/thttp_header.o\
+ headers/thttp_header_Authorization.o\
+ headers/thttp_header_Content_Length.o\
+ headers/thttp_header_Content_Type.o\
+ headers/thttp_header_Dummy.o\
+ headers/thttp_header_Proxy_Authenticate.o\
+ headers/thttp_header_WWW_Authenticate.o
+ ###################
+ ## parsers
+ ###################
+OBJS += parsers/thttp_parser_header.o\
+ parsers/thttp_parser_message.o\
+ parsers/thttp_parser_url.o
+
+$(APP): $(OBJS)
+ $(CPP) $(LDFLAGS) -o $@ $^
+
+%.o: %.c
+ $(CC) -c $(INCLUDE) $(CFLAGS) $< -o $@
+
+install: $(APP)
+ $(ANDROID_SDK_ROOT)/tools/adb remount
+ $(ANDROID_SDK_ROOT)/tools/adb push $(APP) $(INSTALL_DIR)/$(APP)
+ $(ANDROID_SDK_ROOT)/tools/adb shell chmod 777 $(INSTALL_DIR)/$(APP)
+
+clean:
+ @rm -f $(OBJS) $(APP) \ No newline at end of file
diff --git a/tinyHTTP/src/parsers/thttp_parser_header.c b/tinyHTTP/src/parsers/thttp_parser_header.c
new file mode 100644
index 0000000..ec95725
--- /dev/null
+++ b/tinyHTTP/src/parsers/thttp_parser_header.c
@@ -0,0 +1,2594 @@
+
+/* #line 1 "./ragel/thttp_parser_header.rl" */
+/*
+* Copyright (C) 2009-2010 Mamadou Diop.
+*
+* Contact: Mamadou Diop <diopmamadou(at)doubango.org>
+*
+* This file is part of Open Source Doubango Framework.
+*
+* DOUBANGO is free software: you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published by
+* the Free Software Foundation, either version 3 of the License, or
+* (at your option) any later version.
+*
+* DOUBANGO is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with DOUBANGO.
+*
+*/
+
+/**@file thttp_parser_header.c
+ * @brief HTTP headers parser.
+ *
+ * @author Mamadou Diop <diopmamadou(at)doubango.org>
+ *
+ * @date Created: Sat Nov 8 16:54:58 2009 mdiop
+ */
+#include "tinyhttp/parsers/thttp_parser_header.h"
+
+//#include "tinyhttp/headers/thttp_header_Allow.h"
+//#include "tinyhttp/headers/thttp_header_Allow_Events.h"
+#include "tinyhttp/headers/thttp_header_Authorization.h"
+//#include "tinyhttp/headers/thttp_header_Call_ID.h"
+//#include "tinyhttp/headers/thttp_header_Contact.h"
+//#include "tinyhttp/headers/thttp_header_CSeq.h"
+#include "tinyhttp/headers/thttp_header_Dummy.h"
+#include "tinyhttp/headers/thttp_header_ETag.h"
+//#include "tinyhttp/headers/thttp_header_Expires.h"
+//#include "tinyhttp/headers/thttp_header_From.h"
+//#include "tinyhttp/headers/thttp_header_Max_Forwards.h"
+//#include "tinyhttp/headers/thttp_header_Min_Expires.h"
+//#include "tinyhttp/headers/thttp_header_Path.h"
+//#include "tinyhttp/headers/thttp_header_P_Access_Network_Info.h"
+//#include "tinyhttp/headers/thttp_header_P_Preferred_Identity.h"
+//#include "tinyhttp/headers/thttp_header_Privacy.h"
+//#include "tinyhttp/headers/thttp_header_Proxy_Authenticate.h"
+//#include "tinyhttp/headers/thttp_header_Proxy_Authorization.h"
+//#include "tinyhttp/headers/thttp_header_Record_Route.h"
+//#include "tinyhttp/headers/thttp_header_Require.h"
+//#include "tinyhttp/headers/thttp_header_Route.h"
+//#include "tinyhttp/headers/thttp_header_Service_Route.h"
+//#include "tinyhttp/headers/thttp_header_Supported.h"
+#include "tinyhttp/headers/thttp_header_Transfer_Encoding.h"
+//#include "tinyhttp/headers/thttp_header_User_Agent.h"
+//#include "tinyhttp/headers/thttp_header_Via.h"
+#include "tinyhttp/headers/thttp_header_WWW_Authenticate.h"
+
+#include "tsk_debug.h"
+
+#undef ADD_HEADERS
+#undef ADD_HEADER
+
+#define ADD_HEADERS(headers)\
+ if(headers)\
+ {\
+ tsk_list_item_t *item;\
+ tsk_list_foreach(item, headers)\
+ {\
+ thttp_header_t *hdr = tsk_object_ref(item->data);\
+ tsk_list_push_back_data(message->headers, ((void**) &hdr));\
+ }\
+ \
+ TSK_OBJECT_SAFE_FREE(headers);\
+ }
+#define ADD_HEADER(header)\
+ if(header)\
+ {\
+ tsk_list_push_back_data(message->headers, ((void**) &header));\
+ }
+
+/***********************************
+* Ragel state machine.
+*/
+
+/* #line 475 "./ragel/thttp_parser_header.rl" */
+
+
+int thttp_header_parse(tsk_ragel_state_t *state, thttp_message_t *message)
+{
+ int cs = 0;
+ const char *p = state->tag_start;
+ const char *pe = state->tag_end;
+ const char *eof = pe;
+
+
+/* #line 101 "./src/parsers/thttp_parser_header.c" */
+static const char _thttp_machine_parser_headers_actions[] = {
+ 0, 1, 0, 1, 1, 1, 2, 1,
+ 3, 1, 4, 1, 5, 1, 6, 1,
+ 7, 1, 8, 1, 9, 1, 10, 1,
+ 11, 1, 12, 1, 13, 1, 14, 1,
+ 15, 1, 16, 1, 17, 1, 18, 1,
+ 19, 1, 20, 1, 21, 1, 22, 1,
+ 23, 1, 24, 1, 25, 1, 26, 1,
+ 27, 1, 28, 1, 29, 1, 30, 1,
+ 31, 1, 32, 1, 33, 1, 34, 1,
+ 35, 1, 36, 1, 37, 1, 38, 1,
+ 39, 1, 40, 1, 41
+};
+
+static const short _thttp_machine_parser_headers_key_offsets[] = {
+ 0, 0, 44, 61, 64, 67, 68, 69,
+ 70, 72, 95, 114, 133, 152, 171, 188,
+ 191, 194, 195, 196, 197, 199, 222, 241,
+ 260, 279, 298, 317, 336, 353, 356, 359,
+ 360, 361, 362, 364, 383, 402, 421, 440,
+ 459, 478, 497, 514, 517, 520, 521, 522,
+ 523, 525, 544, 563, 582, 601, 620, 639,
+ 658, 675, 678, 681, 682, 683, 684, 686,
+ 705, 724, 743, 760, 763, 766, 767, 768,
+ 769, 771, 790, 809, 828, 847, 866, 885,
+ 904, 923, 942, 961, 980, 997, 1000, 1003,
+ 1004, 1005, 1006, 1008, 1029, 1048, 1067, 1086,
+ 1103, 1122, 1141, 1160, 1179, 1198, 1217, 1236,
+ 1253, 1256, 1259, 1260, 1261, 1262, 1264, 1283,
+ 1304, 1323, 1342, 1361, 1380, 1399, 1418, 1435,
+ 1438, 1441, 1442, 1443, 1444, 1446, 1465, 1484,
+ 1503, 1520, 1547, 1566, 1585, 1604, 1623, 1642,
+ 1661, 1680, 1697, 1700, 1703, 1704, 1705, 1706,
+ 1708, 1731, 1750, 1769, 1788, 1807, 1826, 1845,
+ 1862, 1865, 1868, 1869, 1870, 1871, 1873, 1892,
+ 1911, 1930, 1949, 1966, 1969, 1972, 1973, 1974,
+ 1975, 1977, 1996, 2015, 2034, 2053, 2072, 2091,
+ 2108, 2111, 2114, 2115, 2116, 2117, 2119, 2138,
+ 2156, 2173, 2176, 2179, 2180, 2181, 2182, 2184,
+ 2203, 2222, 2241, 2260, 2277, 2280, 2283, 2284,
+ 2285, 2286, 2288, 2307, 2326, 2345, 2362, 2365,
+ 2368, 2369, 2370, 2371, 2373, 2392, 2411, 2430,
+ 2447, 2450, 2453, 2454, 2455, 2456, 2458, 2479,
+ 2498, 2517, 2534, 2537, 2540, 2541, 2542, 2543,
+ 2545, 2564, 2585, 2604, 2623, 2640, 2643, 2646,
+ 2647, 2648, 2649, 2651, 2670, 2689, 2708, 2725,
+ 2728, 2731, 2732, 2733, 2734, 2736, 2755, 2774,
+ 2793, 2810, 2813, 2816, 2817, 2818, 2819, 2821,
+ 2840, 2859, 2878, 2895, 2898, 2901, 2902, 2903,
+ 2904, 2906, 2925, 2942, 2967, 2988, 3007, 3026,
+ 3045, 3062, 3065, 3068, 3069, 3070, 3071, 3073,
+ 3092, 3111, 3130, 3149, 3168, 3187, 3204, 3223,
+ 3242, 3261, 3280, 3299, 3316, 3319, 3322, 3323,
+ 3324, 3325, 3327, 3346, 3365, 3384, 3401, 3420,
+ 3439, 3458, 3477, 3496, 3513, 3516, 3519, 3520,
+ 3521, 3522, 3524, 3543, 3562, 3581, 3600, 3617,
+ 3620, 3623, 3624, 3625, 3626, 3628, 3647, 3666,
+ 3685, 3704, 3723, 3742, 3761, 3780, 3799, 3816,
+ 3835, 3854, 3873, 3892, 3911, 3928, 3931, 3934,
+ 3935, 3936, 3937, 3939, 3958, 3977, 3996, 4013,
+ 4032, 4051, 4070, 4089, 4108, 4127, 4146, 4165,
+ 4182, 4185, 4188, 4189, 4190, 4191, 4193, 4212,
+ 4231, 4248, 4267, 4286, 4305, 4324, 4343, 4362,
+ 4381, 4400, 4417, 4420, 4423, 4424, 4425, 4426,
+ 4428, 4447, 4468, 4487, 4506, 4525, 4542, 4545,
+ 4548, 4549, 4550, 4551, 4553, 4572, 4591, 4608,
+ 4627, 4646, 4665, 4684, 4705, 4724, 4743, 4762,
+ 4781, 4800, 4819, 4838, 4855, 4858, 4861, 4862,
+ 4863, 4864, 4866, 4885, 4904, 4923, 4942, 4961,
+ 4980, 4999, 5018, 5035, 5038, 5041, 5042, 5043,
+ 5044, 5046, 5067, 5086, 5105, 5124, 5141, 5144,
+ 5147, 5148, 5149, 5150, 5152, 5171, 5190, 5209,
+ 5228, 5247, 5264, 5267, 5270, 5271, 5272, 5273,
+ 5275, 5296, 5313, 5316, 5319, 5320, 5321, 5322,
+ 5324, 5343, 5364, 5383, 5402, 5421, 5438, 5441,
+ 5444, 5445, 5446, 5447, 5449, 5468, 5487, 5506,
+ 5525, 5542, 5561, 5580, 5599, 5618, 5637, 5656,
+ 5675, 5694, 5711, 5714, 5717, 5718, 5719, 5720,
+ 5722, 5743, 5762, 5781, 5800, 5819, 5838, 5855,
+ 5858, 5861, 5862, 5863, 5864, 5866, 5885, 5904,
+ 5921, 5940, 5959, 5978, 5997, 6016, 6033, 6036,
+ 6039, 6040, 6041, 6042, 6044, 6063, 6082, 6099,
+ 6102, 6105, 6106, 6107, 6108, 6110, 6131, 6150,
+ 6169, 6188, 6207, 6226, 6243, 6246, 6249, 6250,
+ 6251, 6252, 6254, 6273, 6290, 6309, 6328, 6347,
+ 6366, 6385, 6404, 6423, 6442, 6461, 6480, 6499,
+ 6518, 6535, 6538, 6541, 6542, 6543, 6544, 6546,
+ 6567, 6588
+};
+
+static const char _thttp_machine_parser_headers_trans_keys[] = {
+ 33, 37, 39, 65, 67, 68, 69, 70,
+ 72, 73, 76, 77, 80, 82, 84, 85,
+ 86, 87, 97, 99, 100, 101, 102, 104,
+ 105, 108, 109, 112, 114, 116, 117, 118,
+ 119, 126, 42, 43, 45, 46, 48, 57,
+ 66, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 32, 58,
+ 9, 13, 32, 13, 10, 10, 9, 32,
+ 9, 32, 33, 37, 39, 58, 67, 76,
+ 85, 99, 108, 117, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 67, 99, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 32, 33, 37, 39, 58,
+ 69, 101, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 32, 33,
+ 37, 39, 58, 80, 112, 126, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 32, 33, 37, 39, 58, 84, 116,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 32, 33, 37, 39,
+ 45, 46, 58, 126, 42, 43, 48, 57,
+ 65, 90, 95, 122, 9, 32, 58, 9,
+ 13, 32, 13, 10, 10, 9, 32, 9,
+ 32, 33, 37, 39, 58, 67, 69, 76,
+ 99, 101, 108, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 33, 37, 39, 58, 72, 104, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 33, 37, 39, 58, 65,
+ 97, 126, 42, 43, 45, 46, 48, 57,
+ 66, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 82, 114, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 83, 115, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 32, 33, 37, 39, 58,
+ 69, 101, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 32, 33,
+ 37, 39, 58, 84, 116, 126, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 32, 33, 37, 39, 58, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 58, 9, 13, 32, 13,
+ 10, 10, 9, 32, 9, 32, 33, 37,
+ 39, 58, 78, 110, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 67, 99, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 32, 33, 37, 39, 58,
+ 79, 111, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 32, 33,
+ 37, 39, 58, 68, 100, 126, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 32, 33, 37, 39, 58, 73, 105,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 32, 33, 37, 39,
+ 58, 78, 110, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 33, 37, 39, 58, 71, 103, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 33, 37, 39, 58, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 32, 58, 9, 13, 32,
+ 13, 10, 10, 9, 32, 9, 32, 33,
+ 37, 39, 58, 65, 97, 126, 42, 43,
+ 45, 46, 48, 57, 66, 90, 95, 122,
+ 9, 32, 33, 37, 39, 58, 78, 110,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 32, 33, 37, 39,
+ 58, 71, 103, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 33, 37, 39, 58, 85, 117, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 33, 37, 39, 58, 65,
+ 97, 126, 42, 43, 45, 46, 48, 57,
+ 66, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 71, 103, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 69, 101, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 32, 33, 37, 39, 58,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 32, 58, 9, 13,
+ 32, 13, 10, 10, 9, 32, 9, 32,
+ 33, 37, 39, 58, 76, 108, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 33, 37, 39, 58, 79,
+ 111, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 87, 119, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 126, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 32, 58, 9, 13, 32, 13, 10,
+ 10, 9, 32, 9, 32, 33, 37, 39,
+ 58, 84, 116, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 33, 37, 39, 58, 72, 104, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 33, 37, 39, 58, 79,
+ 111, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 82, 114, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 73, 105, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 32, 33, 37, 39, 58,
+ 90, 122, 126, 42, 43, 45, 46, 48,
+ 57, 65, 89, 95, 121, 9, 32, 33,
+ 37, 39, 58, 65, 97, 126, 42, 43,
+ 45, 46, 48, 57, 66, 90, 95, 122,
+ 9, 32, 33, 37, 39, 58, 84, 116,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 32, 33, 37, 39,
+ 58, 73, 105, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 33, 37, 39, 58, 79, 111, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 33, 37, 39, 58, 78,
+ 110, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 32, 58,
+ 9, 13, 32, 13, 10, 10, 9, 32,
+ 9, 32, 33, 37, 39, 58, 65, 79,
+ 97, 111, 126, 42, 43, 45, 46, 48,
+ 57, 66, 90, 95, 122, 9, 32, 33,
+ 37, 39, 58, 67, 99, 126, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 32, 33, 37, 39, 58, 72, 104,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 32, 33, 37, 39,
+ 58, 69, 101, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 33, 37, 39, 45, 46, 58, 126, 42,
+ 43, 48, 57, 65, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 67, 99, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 32, 33, 37, 39, 58,
+ 79, 111, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 32, 33,
+ 37, 39, 58, 78, 110, 126, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 32, 33, 37, 39, 58, 84, 116,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 32, 33, 37, 39,
+ 58, 82, 114, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 33, 37, 39, 58, 79, 111, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 33, 37, 39, 58, 76,
+ 108, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 32, 58,
+ 9, 13, 32, 13, 10, 10, 9, 32,
+ 9, 32, 33, 37, 39, 58, 78, 110,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 32, 33, 37, 39,
+ 58, 78, 84, 110, 116, 126, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 32, 33, 37, 39, 58, 69, 101,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 32, 33, 37, 39,
+ 58, 67, 99, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 33, 37, 39, 58, 84, 116, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 33, 37, 39, 58, 73,
+ 105, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 79, 111, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 78, 110, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 32, 33, 37, 39, 58,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 32, 58, 9, 13,
+ 32, 13, 10, 10, 9, 32, 9, 32,
+ 33, 37, 39, 58, 69, 101, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 33, 37, 39, 58, 78,
+ 110, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 84, 116, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 33, 37, 39, 45, 46, 58, 126,
+ 42, 43, 48, 57, 65, 90, 95, 122,
+ 9, 32, 33, 37, 39, 58, 69, 76,
+ 77, 82, 84, 101, 108, 109, 114, 116,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 32, 33, 37, 39,
+ 58, 78, 110, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 33, 37, 39, 58, 67, 99, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 33, 37, 39, 58, 79,
+ 111, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 68, 100, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 73, 105, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 32, 33, 37, 39, 58,
+ 78, 110, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 32, 33,
+ 37, 39, 58, 71, 103, 126, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 32, 33, 37, 39, 58, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 58, 9, 13, 32, 13,
+ 10, 10, 9, 32, 9, 32, 33, 37,
+ 39, 58, 65, 69, 79, 97, 101, 111,
+ 126, 42, 43, 45, 46, 48, 57, 66,
+ 90, 95, 122, 9, 32, 33, 37, 39,
+ 58, 78, 110, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 33, 37, 39, 58, 71, 103, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 33, 37, 39, 58, 85,
+ 117, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 65, 97, 126, 42, 43, 45,
+ 46, 48, 57, 66, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 71, 103, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 32, 33, 37, 39, 58,
+ 69, 101, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 32, 33,
+ 37, 39, 58, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 58, 9, 13, 32, 13, 10, 10, 9,
+ 32, 9, 32, 33, 37, 39, 58, 78,
+ 110, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 71, 103, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 84, 116, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 32, 33, 37, 39, 58,
+ 72, 104, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 32, 33,
+ 37, 39, 58, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 58, 9, 13, 32, 13, 10, 10, 9,
+ 32, 9, 32, 33, 37, 39, 58, 67,
+ 99, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 65, 97, 126, 42, 43, 45,
+ 46, 48, 57, 66, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 84, 116, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 32, 33, 37, 39, 58,
+ 73, 105, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 32, 33,
+ 37, 39, 58, 79, 111, 126, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 32, 33, 37, 39, 58, 78, 110,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 32, 33, 37, 39,
+ 58, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 32, 58, 9,
+ 13, 32, 13, 10, 10, 9, 32, 9,
+ 32, 33, 37, 39, 58, 68, 100, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 32, 33, 37, 39, 53,
+ 58, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 32, 58,
+ 9, 13, 32, 13, 10, 10, 9, 32,
+ 9, 32, 33, 37, 39, 58, 65, 97,
+ 126, 42, 43, 45, 46, 48, 57, 66,
+ 90, 95, 122, 9, 32, 33, 37, 39,
+ 58, 78, 110, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 33, 37, 39, 58, 71, 103, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 33, 37, 39, 58, 69,
+ 101, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 32, 58,
+ 9, 13, 32, 13, 10, 10, 9, 32,
+ 9, 32, 33, 37, 39, 58, 89, 121,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 32, 33, 37, 39,
+ 58, 80, 112, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 33, 37, 39, 58, 69, 101, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 33, 37, 39, 58, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 32, 58, 9, 13, 32,
+ 13, 10, 10, 9, 32, 9, 32, 33,
+ 37, 39, 58, 65, 97, 126, 42, 43,
+ 45, 46, 48, 57, 66, 90, 95, 122,
+ 9, 32, 33, 37, 39, 58, 84, 116,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 32, 33, 37, 39,
+ 58, 69, 101, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 33, 37, 39, 58, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 58, 9, 13, 32, 13, 10, 10,
+ 9, 32, 9, 32, 33, 37, 39, 58,
+ 84, 88, 116, 120, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 65, 97, 126,
+ 42, 43, 45, 46, 48, 57, 66, 90,
+ 95, 122, 9, 32, 33, 37, 39, 58,
+ 71, 103, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 32, 33,
+ 37, 39, 58, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 58, 9, 13, 32, 13, 10, 10, 9,
+ 32, 9, 32, 33, 37, 39, 58, 80,
+ 112, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 69, 73, 101, 105, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 33, 37, 39, 58, 67,
+ 99, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 84, 116, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 126, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 32, 58, 9, 13, 32, 13, 10,
+ 10, 9, 32, 9, 32, 33, 37, 39,
+ 58, 82, 114, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 33, 37, 39, 58, 69, 101, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 33, 37, 39, 58, 83,
+ 115, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 32, 58,
+ 9, 13, 32, 13, 10, 10, 9, 32,
+ 9, 32, 33, 37, 39, 58, 82, 114,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 32, 33, 37, 39,
+ 58, 79, 111, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 33, 37, 39, 58, 77, 109, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 33, 37, 39, 58, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 32, 58, 9, 13, 32,
+ 13, 10, 10, 9, 32, 9, 32, 33,
+ 37, 39, 58, 79, 111, 126, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 32, 33, 37, 39, 58, 83, 115,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 32, 33, 37, 39,
+ 58, 84, 116, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 33, 37, 39, 58, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 58, 9, 13, 32, 13, 10, 10,
+ 9, 32, 9, 32, 33, 37, 39, 58,
+ 70, 102, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 32, 33,
+ 37, 39, 45, 46, 58, 126, 42, 43,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 33, 37, 39, 58, 77, 78, 82, 85,
+ 109, 110, 114, 117, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 65, 79, 97,
+ 111, 126, 42, 43, 45, 46, 48, 57,
+ 66, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 84, 116, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 67, 99, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 32, 33, 37, 39, 58,
+ 72, 104, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 32, 33,
+ 37, 39, 58, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 58, 9, 13, 32, 13, 10, 10, 9,
+ 32, 9, 32, 33, 37, 39, 58, 68,
+ 100, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 73, 105, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 70, 102, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 32, 33, 37, 39, 58,
+ 73, 105, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 32, 33,
+ 37, 39, 58, 69, 101, 126, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 32, 33, 37, 39, 58, 68, 100,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 32, 33, 37, 39,
+ 45, 46, 58, 126, 42, 43, 48, 57,
+ 65, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 83, 115, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 73, 105, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 32, 33, 37, 39, 58,
+ 78, 110, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 32, 33,
+ 37, 39, 58, 67, 99, 126, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 32, 33, 37, 39, 58, 69, 101,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 32, 33, 37, 39,
+ 58, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 32, 58, 9,
+ 13, 32, 13, 10, 10, 9, 32, 9,
+ 32, 33, 37, 39, 58, 79, 111, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 32, 33, 37, 39, 58,
+ 78, 110, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 32, 33,
+ 37, 39, 58, 69, 101, 126, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 32, 33, 37, 39, 45, 46, 58,
+ 126, 42, 43, 48, 57, 65, 90, 95,
+ 122, 9, 32, 33, 37, 39, 58, 77,
+ 109, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 65, 97, 126, 42, 43, 45,
+ 46, 48, 57, 66, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 84, 116, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 32, 33, 37, 39, 58,
+ 67, 99, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 32, 33,
+ 37, 39, 58, 72, 104, 126, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 32, 33, 37, 39, 58, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 58, 9, 13, 32, 13,
+ 10, 10, 9, 32, 9, 32, 33, 37,
+ 39, 58, 65, 97, 126, 42, 43, 45,
+ 46, 48, 57, 66, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 78, 110, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 32, 33, 37, 39, 58,
+ 71, 103, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 32, 33,
+ 37, 39, 58, 69, 101, 126, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 32, 33, 37, 39, 58, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 58, 9, 13, 32, 13,
+ 10, 10, 9, 32, 9, 32, 33, 37,
+ 39, 58, 78, 110, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 77, 109, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 32, 33, 37, 39, 58,
+ 79, 111, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 32, 33,
+ 37, 39, 58, 68, 100, 126, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 32, 33, 37, 39, 58, 73, 105,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 32, 33, 37, 39,
+ 58, 70, 102, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 33, 37, 39, 58, 73, 105, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 33, 37, 39, 58, 69,
+ 101, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 68, 100, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 33, 37, 39, 45, 46, 58, 126,
+ 42, 43, 48, 57, 65, 90, 95, 122,
+ 9, 32, 33, 37, 39, 58, 83, 115,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 32, 33, 37, 39,
+ 58, 73, 105, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 33, 37, 39, 58, 78, 110, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 33, 37, 39, 58, 67,
+ 99, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 69, 101, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 126, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 32, 58, 9, 13, 32, 13, 10,
+ 10, 9, 32, 9, 32, 33, 37, 39,
+ 58, 65, 97, 126, 42, 43, 45, 46,
+ 48, 57, 66, 90, 95, 122, 9, 32,
+ 33, 37, 39, 58, 83, 115, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 33, 37, 39, 58, 84,
+ 116, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 32, 33, 37,
+ 39, 45, 46, 58, 126, 42, 43, 48,
+ 57, 65, 90, 95, 122, 9, 32, 33,
+ 37, 39, 58, 77, 109, 126, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 32, 33, 37, 39, 58, 79, 111,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 32, 33, 37, 39,
+ 58, 68, 100, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 33, 37, 39, 58, 73, 105, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 33, 37, 39, 58, 70,
+ 102, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 73, 105, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 69, 101, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 32, 33, 37, 39, 58,
+ 68, 100, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 32, 33,
+ 37, 39, 58, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 58, 9, 13, 32, 13, 10, 10, 9,
+ 32, 9, 32, 33, 37, 39, 58, 65,
+ 97, 126, 42, 43, 45, 46, 48, 57,
+ 66, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 88, 120, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 33, 37, 39, 45, 46, 58, 126,
+ 42, 43, 48, 57, 65, 90, 95, 122,
+ 9, 32, 33, 37, 39, 58, 70, 102,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 32, 33, 37, 39,
+ 58, 79, 111, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 33, 37, 39, 58, 82, 114, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 33, 37, 39, 58, 87,
+ 119, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 65, 97, 126, 42, 43, 45,
+ 46, 48, 57, 66, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 82, 114, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 32, 33, 37, 39, 58,
+ 68, 100, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 32, 33,
+ 37, 39, 58, 83, 115, 126, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 32, 33, 37, 39, 58, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 58, 9, 13, 32, 13,
+ 10, 10, 9, 32, 9, 32, 33, 37,
+ 39, 58, 82, 114, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 65, 79, 97,
+ 111, 126, 42, 43, 45, 46, 48, 57,
+ 66, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 71, 103, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 77, 109, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 32, 33, 37, 39, 58,
+ 65, 97, 126, 42, 43, 45, 46, 48,
+ 57, 66, 90, 95, 122, 9, 32, 33,
+ 37, 39, 58, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 58, 9, 13, 32, 13, 10, 10, 9,
+ 32, 9, 32, 33, 37, 39, 58, 88,
+ 120, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 89, 121, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 33, 37, 39, 45, 46, 58, 126,
+ 42, 43, 48, 57, 65, 90, 95, 122,
+ 9, 32, 33, 37, 39, 58, 65, 97,
+ 126, 42, 43, 45, 46, 48, 57, 66,
+ 90, 95, 122, 9, 32, 33, 37, 39,
+ 58, 85, 117, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 33, 37, 39, 58, 84, 116, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 33, 37, 39, 58, 72,
+ 104, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 69, 79, 101, 111, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 33, 37, 39, 58, 78,
+ 110, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 84, 116, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 73, 105, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 32, 33, 37, 39, 58,
+ 67, 99, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 32, 33,
+ 37, 39, 58, 65, 97, 126, 42, 43,
+ 45, 46, 48, 57, 66, 90, 95, 122,
+ 9, 32, 33, 37, 39, 58, 84, 116,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 32, 33, 37, 39,
+ 58, 69, 101, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 33, 37, 39, 58, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 58, 9, 13, 32, 13, 10, 10,
+ 9, 32, 9, 32, 33, 37, 39, 58,
+ 82, 114, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 32, 33,
+ 37, 39, 58, 73, 105, 126, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 32, 33, 37, 39, 58, 90, 122,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 89, 95, 121, 9, 32, 33, 37, 39,
+ 58, 65, 97, 126, 42, 43, 45, 46,
+ 48, 57, 66, 90, 95, 122, 9, 32,
+ 33, 37, 39, 58, 84, 116, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 33, 37, 39, 58, 73,
+ 105, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 79, 111, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 78, 110, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 32, 33, 37, 39, 58,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 32, 58, 9, 13,
+ 32, 13, 10, 10, 9, 32, 9, 32,
+ 33, 37, 39, 58, 65, 69, 97, 101,
+ 126, 42, 43, 45, 46, 48, 57, 66,
+ 90, 95, 122, 9, 32, 33, 37, 39,
+ 58, 78, 110, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 33, 37, 39, 58, 71, 103, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 33, 37, 39, 58, 69,
+ 101, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 32, 58,
+ 9, 13, 32, 13, 10, 10, 9, 32,
+ 9, 32, 33, 37, 39, 58, 70, 102,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 32, 33, 37, 39,
+ 58, 69, 101, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 33, 37, 39, 58, 82, 114, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 33, 37, 39, 58, 69,
+ 101, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 82, 114, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 126, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 32, 58, 9, 13, 32, 13, 10,
+ 10, 9, 32, 9, 32, 33, 37, 39,
+ 58, 69, 82, 101, 114, 126, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 32, 33, 37, 39, 58, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 58, 9, 13, 32, 13,
+ 10, 10, 9, 32, 9, 32, 33, 37,
+ 39, 58, 65, 97, 126, 42, 43, 45,
+ 46, 48, 57, 66, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 73, 78, 105,
+ 110, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 76, 108, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 69, 101, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 32, 33, 37, 39, 58,
+ 82, 114, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 32, 33,
+ 37, 39, 58, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 58, 9, 13, 32, 13, 10, 10, 9,
+ 32, 9, 32, 33, 37, 39, 58, 83,
+ 115, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 70, 102, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 69, 101, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 32, 33, 37, 39, 58,
+ 82, 114, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 32, 33,
+ 37, 39, 45, 46, 58, 126, 42, 43,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 33, 37, 39, 58, 69, 101, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 33, 37, 39, 58, 78,
+ 110, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 67, 99, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 79, 111, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 32, 33, 37, 39, 58,
+ 68, 100, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 32, 33,
+ 37, 39, 58, 73, 105, 126, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 32, 33, 37, 39, 58, 78, 110,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 32, 33, 37, 39,
+ 58, 71, 103, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 33, 37, 39, 58, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 58, 9, 13, 32, 13, 10, 10,
+ 9, 32, 9, 32, 33, 37, 39, 58,
+ 80, 83, 112, 115, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 71, 103, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 32, 33, 37, 39, 58,
+ 82, 114, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 32, 33,
+ 37, 39, 58, 65, 97, 126, 42, 43,
+ 45, 46, 48, 57, 66, 90, 95, 122,
+ 9, 32, 33, 37, 39, 58, 68, 100,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 32, 33, 37, 39,
+ 58, 69, 101, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 33, 37, 39, 58, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 58, 9, 13, 32, 13, 10, 10,
+ 9, 32, 9, 32, 33, 37, 39, 58,
+ 69, 101, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 32, 33,
+ 37, 39, 58, 82, 114, 126, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 32, 33, 37, 39, 45, 46, 58,
+ 126, 42, 43, 48, 57, 65, 90, 95,
+ 122, 9, 32, 33, 37, 39, 58, 65,
+ 97, 126, 42, 43, 45, 46, 48, 57,
+ 66, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 71, 103, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 69, 101, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 32, 33, 37, 39, 58,
+ 78, 110, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 32, 33,
+ 37, 39, 58, 84, 116, 126, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 32, 33, 37, 39, 58, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 58, 9, 13, 32, 13,
+ 10, 10, 9, 32, 9, 32, 33, 37,
+ 39, 58, 73, 105, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 65, 97, 126,
+ 42, 43, 45, 46, 48, 57, 66, 90,
+ 95, 122, 9, 32, 33, 37, 39, 58,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 32, 58, 9, 13,
+ 32, 13, 10, 10, 9, 32, 9, 32,
+ 33, 37, 39, 58, 65, 87, 97, 119,
+ 126, 42, 43, 45, 46, 48, 57, 66,
+ 90, 95, 122, 9, 32, 33, 37, 39,
+ 58, 82, 114, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 33, 37, 39, 58, 78, 110, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 33, 37, 39, 58, 73,
+ 105, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 78, 110, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 71, 103, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 32, 33, 37, 39, 58,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 32, 58, 9, 13,
+ 32, 13, 10, 10, 9, 32, 9, 32,
+ 33, 37, 39, 58, 87, 119, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 33, 37, 39, 45, 46,
+ 58, 126, 42, 43, 48, 57, 65, 90,
+ 95, 122, 9, 32, 33, 37, 39, 58,
+ 65, 97, 126, 42, 43, 45, 46, 48,
+ 57, 66, 90, 95, 122, 9, 32, 33,
+ 37, 39, 58, 85, 117, 126, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 9, 32, 33, 37, 39, 58, 84, 116,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 32, 33, 37, 39,
+ 58, 72, 104, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 33, 37, 39, 58, 69, 101, 126, 42,
+ 43, 45, 46, 48, 57, 65, 90, 95,
+ 122, 9, 32, 33, 37, 39, 58, 78,
+ 110, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 9, 32, 33, 37,
+ 39, 58, 84, 116, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 73, 105, 126,
+ 42, 43, 45, 46, 48, 57, 65, 90,
+ 95, 122, 9, 32, 33, 37, 39, 58,
+ 67, 99, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 9, 32, 33,
+ 37, 39, 58, 65, 97, 126, 42, 43,
+ 45, 46, 48, 57, 66, 90, 95, 122,
+ 9, 32, 33, 37, 39, 58, 84, 116,
+ 126, 42, 43, 45, 46, 48, 57, 65,
+ 90, 95, 122, 9, 32, 33, 37, 39,
+ 58, 69, 101, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 9, 32,
+ 33, 37, 39, 58, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 9,
+ 32, 58, 9, 13, 32, 13, 10, 10,
+ 9, 32, 9, 32, 33, 37, 39, 58,
+ 65, 79, 97, 111, 126, 42, 43, 45,
+ 46, 48, 57, 66, 90, 95, 122, 9,
+ 32, 33, 37, 39, 58, 84, 88, 116,
+ 120, 126, 42, 43, 45, 46, 48, 57,
+ 65, 90, 95, 122, 0
+};
+
+static const char _thttp_machine_parser_headers_single_lengths[] = {
+ 0, 34, 7, 3, 3, 1, 1, 1,
+ 2, 13, 9, 9, 9, 9, 9, 3,
+ 3, 1, 1, 1, 2, 13, 9, 9,
+ 9, 9, 9, 9, 7, 3, 3, 1,
+ 1, 1, 2, 9, 9, 9, 9, 9,
+ 9, 9, 7, 3, 3, 1, 1, 1,
+ 2, 9, 9, 9, 9, 9, 9, 9,
+ 7, 3, 3, 1, 1, 1, 2, 9,
+ 9, 9, 7, 3, 3, 1, 1, 1,
+ 2, 9, 9, 9, 9, 9, 9, 9,
+ 9, 9, 9, 9, 7, 3, 3, 1,
+ 1, 1, 2, 11, 9, 9, 9, 9,
+ 9, 9, 9, 9, 9, 9, 9, 7,
+ 3, 3, 1, 1, 1, 2, 9, 11,
+ 9, 9, 9, 9, 9, 9, 7, 3,
+ 3, 1, 1, 1, 2, 9, 9, 9,
+ 9, 17, 9, 9, 9, 9, 9, 9,
+ 9, 7, 3, 3, 1, 1, 1, 2,
+ 13, 9, 9, 9, 9, 9, 9, 7,
+ 3, 3, 1, 1, 1, 2, 9, 9,
+ 9, 9, 7, 3, 3, 1, 1, 1,
+ 2, 9, 9, 9, 9, 9, 9, 7,
+ 3, 3, 1, 1, 1, 2, 9, 8,
+ 7, 3, 3, 1, 1, 1, 2, 9,
+ 9, 9, 9, 7, 3, 3, 1, 1,
+ 1, 2, 9, 9, 9, 7, 3, 3,
+ 1, 1, 1, 2, 9, 9, 9, 7,
+ 3, 3, 1, 1, 1, 2, 11, 9,
+ 9, 7, 3, 3, 1, 1, 1, 2,
+ 9, 11, 9, 9, 7, 3, 3, 1,
+ 1, 1, 2, 9, 9, 9, 7, 3,
+ 3, 1, 1, 1, 2, 9, 9, 9,
+ 7, 3, 3, 1, 1, 1, 2, 9,
+ 9, 9, 7, 3, 3, 1, 1, 1,
+ 2, 9, 9, 15, 11, 9, 9, 9,
+ 7, 3, 3, 1, 1, 1, 2, 9,
+ 9, 9, 9, 9, 9, 9, 9, 9,
+ 9, 9, 9, 7, 3, 3, 1, 1,
+ 1, 2, 9, 9, 9, 9, 9, 9,
+ 9, 9, 9, 7, 3, 3, 1, 1,
+ 1, 2, 9, 9, 9, 9, 7, 3,
+ 3, 1, 1, 1, 2, 9, 9, 9,
+ 9, 9, 9, 9, 9, 9, 9, 9,
+ 9, 9, 9, 9, 7, 3, 3, 1,
+ 1, 1, 2, 9, 9, 9, 9, 9,
+ 9, 9, 9, 9, 9, 9, 9, 7,
+ 3, 3, 1, 1, 1, 2, 9, 9,
+ 9, 9, 9, 9, 9, 9, 9, 9,
+ 9, 7, 3, 3, 1, 1, 1, 2,
+ 9, 11, 9, 9, 9, 7, 3, 3,
+ 1, 1, 1, 2, 9, 9, 9, 9,
+ 9, 9, 9, 11, 9, 9, 9, 9,
+ 9, 9, 9, 7, 3, 3, 1, 1,
+ 1, 2, 9, 9, 9, 9, 9, 9,
+ 9, 9, 7, 3, 3, 1, 1, 1,
+ 2, 11, 9, 9, 9, 7, 3, 3,
+ 1, 1, 1, 2, 9, 9, 9, 9,
+ 9, 7, 3, 3, 1, 1, 1, 2,
+ 11, 7, 3, 3, 1, 1, 1, 2,
+ 9, 11, 9, 9, 9, 7, 3, 3,
+ 1, 1, 1, 2, 9, 9, 9, 9,
+ 9, 9, 9, 9, 9, 9, 9, 9,
+ 9, 7, 3, 3, 1, 1, 1, 2,
+ 11, 9, 9, 9, 9, 9, 7, 3,
+ 3, 1, 1, 1, 2, 9, 9, 9,
+ 9, 9, 9, 9, 9, 7, 3, 3,
+ 1, 1, 1, 2, 9, 9, 7, 3,
+ 3, 1, 1, 1, 2, 11, 9, 9,
+ 9, 9, 9, 7, 3, 3, 1, 1,
+ 1, 2, 9, 9, 9, 9, 9, 9,
+ 9, 9, 9, 9, 9, 9, 9, 9,
+ 7, 3, 3, 1, 1, 1, 2, 11,
+ 11, 0
+};
+
+static const char _thttp_machine_parser_headers_range_lengths[] = {
+ 0, 5, 5, 0, 0, 0, 0, 0,
+ 0, 5, 5, 5, 5, 5, 4, 0,
+ 0, 0, 0, 0, 0, 5, 5, 5,
+ 5, 5, 5, 5, 5, 0, 0, 0,
+ 0, 0, 0, 5, 5, 5, 5, 5,
+ 5, 5, 5, 0, 0, 0, 0, 0,
+ 0, 5, 5, 5, 5, 5, 5, 5,
+ 5, 0, 0, 0, 0, 0, 0, 5,
+ 5, 5, 5, 0, 0, 0, 0, 0,
+ 0, 5, 5, 5, 5, 5, 5, 5,
+ 5, 5, 5, 5, 5, 0, 0, 0,
+ 0, 0, 0, 5, 5, 5, 5, 4,
+ 5, 5, 5, 5, 5, 5, 5, 5,
+ 0, 0, 0, 0, 0, 0, 5, 5,
+ 5, 5, 5, 5, 5, 5, 5, 0,
+ 0, 0, 0, 0, 0, 5, 5, 5,
+ 4, 5, 5, 5, 5, 5, 5, 5,
+ 5, 5, 0, 0, 0, 0, 0, 0,
+ 5, 5, 5, 5, 5, 5, 5, 5,
+ 0, 0, 0, 0, 0, 0, 5, 5,
+ 5, 5, 5, 0, 0, 0, 0, 0,
+ 0, 5, 5, 5, 5, 5, 5, 5,
+ 0, 0, 0, 0, 0, 0, 5, 5,
+ 5, 0, 0, 0, 0, 0, 0, 5,
+ 5, 5, 5, 5, 0, 0, 0, 0,
+ 0, 0, 5, 5, 5, 5, 0, 0,
+ 0, 0, 0, 0, 5, 5, 5, 5,
+ 0, 0, 0, 0, 0, 0, 5, 5,
+ 5, 5, 0, 0, 0, 0, 0, 0,
+ 5, 5, 5, 5, 5, 0, 0, 0,
+ 0, 0, 0, 5, 5, 5, 5, 0,
+ 0, 0, 0, 0, 0, 5, 5, 5,
+ 5, 0, 0, 0, 0, 0, 0, 5,
+ 5, 5, 5, 0, 0, 0, 0, 0,
+ 0, 5, 4, 5, 5, 5, 5, 5,
+ 5, 0, 0, 0, 0, 0, 0, 5,
+ 5, 5, 5, 5, 5, 4, 5, 5,
+ 5, 5, 5, 5, 0, 0, 0, 0,
+ 0, 0, 5, 5, 5, 4, 5, 5,
+ 5, 5, 5, 5, 0, 0, 0, 0,
+ 0, 0, 5, 5, 5, 5, 5, 0,
+ 0, 0, 0, 0, 0, 5, 5, 5,
+ 5, 5, 5, 5, 5, 5, 4, 5,
+ 5, 5, 5, 5, 5, 0, 0, 0,
+ 0, 0, 0, 5, 5, 5, 4, 5,
+ 5, 5, 5, 5, 5, 5, 5, 5,
+ 0, 0, 0, 0, 0, 0, 5, 5,
+ 4, 5, 5, 5, 5, 5, 5, 5,
+ 5, 5, 0, 0, 0, 0, 0, 0,
+ 5, 5, 5, 5, 5, 5, 0, 0,
+ 0, 0, 0, 0, 5, 5, 4, 5,
+ 5, 5, 5, 5, 5, 5, 5, 5,
+ 5, 5, 5, 5, 0, 0, 0, 0,
+ 0, 0, 5, 5, 5, 5, 5, 5,
+ 5, 5, 5, 0, 0, 0, 0, 0,
+ 0, 5, 5, 5, 5, 5, 0, 0,
+ 0, 0, 0, 0, 5, 5, 5, 5,
+ 5, 5, 0, 0, 0, 0, 0, 0,
+ 5, 5, 0, 0, 0, 0, 0, 0,
+ 5, 5, 5, 5, 5, 5, 0, 0,
+ 0, 0, 0, 0, 5, 5, 5, 5,
+ 4, 5, 5, 5, 5, 5, 5, 5,
+ 5, 5, 0, 0, 0, 0, 0, 0,
+ 5, 5, 5, 5, 5, 5, 5, 0,
+ 0, 0, 0, 0, 0, 5, 5, 4,
+ 5, 5, 5, 5, 5, 5, 0, 0,
+ 0, 0, 0, 0, 5, 5, 5, 0,
+ 0, 0, 0, 0, 0, 5, 5, 5,
+ 5, 5, 5, 5, 0, 0, 0, 0,
+ 0, 0, 5, 4, 5, 5, 5, 5,
+ 5, 5, 5, 5, 5, 5, 5, 5,
+ 5, 0, 0, 0, 0, 0, 0, 5,
+ 5, 0
+};
+
+static const short _thttp_machine_parser_headers_index_offsets[] = {
+ 0, 0, 40, 53, 57, 61, 63, 65,
+ 67, 70, 89, 104, 119, 134, 149, 163,
+ 167, 171, 173, 175, 177, 180, 199, 214,
+ 229, 244, 259, 274, 289, 302, 306, 310,
+ 312, 314, 316, 319, 334, 349, 364, 379,
+ 394, 409, 424, 437, 441, 445, 447, 449,
+ 451, 454, 469, 484, 499, 514, 529, 544,
+ 559, 572, 576, 580, 582, 584, 586, 589,
+ 604, 619, 634, 647, 651, 655, 657, 659,
+ 661, 664, 679, 694, 709, 724, 739, 754,
+ 769, 784, 799, 814, 829, 842, 846, 850,
+ 852, 854, 856, 859, 876, 891, 906, 921,
+ 935, 950, 965, 980, 995, 1010, 1025, 1040,
+ 1053, 1057, 1061, 1063, 1065, 1067, 1070, 1085,
+ 1102, 1117, 1132, 1147, 1162, 1177, 1192, 1205,
+ 1209, 1213, 1215, 1217, 1219, 1222, 1237, 1252,
+ 1267, 1281, 1304, 1319, 1334, 1349, 1364, 1379,
+ 1394, 1409, 1422, 1426, 1430, 1432, 1434, 1436,
+ 1439, 1458, 1473, 1488, 1503, 1518, 1533, 1548,
+ 1561, 1565, 1569, 1571, 1573, 1575, 1578, 1593,
+ 1608, 1623, 1638, 1651, 1655, 1659, 1661, 1663,
+ 1665, 1668, 1683, 1698, 1713, 1728, 1743, 1758,
+ 1771, 1775, 1779, 1781, 1783, 1785, 1788, 1803,
+ 1817, 1830, 1834, 1838, 1840, 1842, 1844, 1847,
+ 1862, 1877, 1892, 1907, 1920, 1924, 1928, 1930,
+ 1932, 1934, 1937, 1952, 1967, 1982, 1995, 1999,
+ 2003, 2005, 2007, 2009, 2012, 2027, 2042, 2057,
+ 2070, 2074, 2078, 2080, 2082, 2084, 2087, 2104,
+ 2119, 2134, 2147, 2151, 2155, 2157, 2159, 2161,
+ 2164, 2179, 2196, 2211, 2226, 2239, 2243, 2247,
+ 2249, 2251, 2253, 2256, 2271, 2286, 2301, 2314,
+ 2318, 2322, 2324, 2326, 2328, 2331, 2346, 2361,
+ 2376, 2389, 2393, 2397, 2399, 2401, 2403, 2406,
+ 2421, 2436, 2451, 2464, 2468, 2472, 2474, 2476,
+ 2478, 2481, 2496, 2510, 2531, 2548, 2563, 2578,
+ 2593, 2606, 2610, 2614, 2616, 2618, 2620, 2623,
+ 2638, 2653, 2668, 2683, 2698, 2713, 2727, 2742,
+ 2757, 2772, 2787, 2802, 2815, 2819, 2823, 2825,
+ 2827, 2829, 2832, 2847, 2862, 2877, 2891, 2906,
+ 2921, 2936, 2951, 2966, 2979, 2983, 2987, 2989,
+ 2991, 2993, 2996, 3011, 3026, 3041, 3056, 3069,
+ 3073, 3077, 3079, 3081, 3083, 3086, 3101, 3116,
+ 3131, 3146, 3161, 3176, 3191, 3206, 3221, 3235,
+ 3250, 3265, 3280, 3295, 3310, 3323, 3327, 3331,
+ 3333, 3335, 3337, 3340, 3355, 3370, 3385, 3399,
+ 3414, 3429, 3444, 3459, 3474, 3489, 3504, 3519,
+ 3532, 3536, 3540, 3542, 3544, 3546, 3549, 3564,
+ 3579, 3593, 3608, 3623, 3638, 3653, 3668, 3683,
+ 3698, 3713, 3726, 3730, 3734, 3736, 3738, 3740,
+ 3743, 3758, 3775, 3790, 3805, 3820, 3833, 3837,
+ 3841, 3843, 3845, 3847, 3850, 3865, 3880, 3894,
+ 3909, 3924, 3939, 3954, 3971, 3986, 4001, 4016,
+ 4031, 4046, 4061, 4076, 4089, 4093, 4097, 4099,
+ 4101, 4103, 4106, 4121, 4136, 4151, 4166, 4181,
+ 4196, 4211, 4226, 4239, 4243, 4247, 4249, 4251,
+ 4253, 4256, 4273, 4288, 4303, 4318, 4331, 4335,
+ 4339, 4341, 4343, 4345, 4348, 4363, 4378, 4393,
+ 4408, 4423, 4436, 4440, 4444, 4446, 4448, 4450,
+ 4453, 4470, 4483, 4487, 4491, 4493, 4495, 4497,
+ 4500, 4515, 4532, 4547, 4562, 4577, 4590, 4594,
+ 4598, 4600, 4602, 4604, 4607, 4622, 4637, 4652,
+ 4667, 4681, 4696, 4711, 4726, 4741, 4756, 4771,
+ 4786, 4801, 4814, 4818, 4822, 4824, 4826, 4828,
+ 4831, 4848, 4863, 4878, 4893, 4908, 4923, 4936,
+ 4940, 4944, 4946, 4948, 4950, 4953, 4968, 4983,
+ 4997, 5012, 5027, 5042, 5057, 5072, 5085, 5089,
+ 5093, 5095, 5097, 5099, 5102, 5117, 5132, 5145,
+ 5149, 5153, 5155, 5157, 5159, 5162, 5179, 5194,
+ 5209, 5224, 5239, 5254, 5267, 5271, 5275, 5277,
+ 5279, 5281, 5284, 5299, 5313, 5328, 5343, 5358,
+ 5373, 5388, 5403, 5418, 5433, 5448, 5463, 5478,
+ 5493, 5506, 5510, 5514, 5516, 5518, 5520, 5523,
+ 5540, 5557
+};
+
+static const short _thttp_machine_parser_headers_indicies[] = {
+ 0, 0, 0, 2, 3, 4, 5, 6,
+ 7, 8, 9, 10, 11, 12, 13, 14,
+ 15, 16, 2, 17, 4, 18, 6, 7,
+ 8, 9, 10, 11, 12, 13, 14, 15,
+ 16, 0, 0, 0, 0, 0, 0, 1,
+ 19, 19, 0, 0, 0, 20, 0, 0,
+ 0, 0, 0, 0, 1, 19, 19, 20,
+ 1, 20, 22, 20, 21, 23, 21, 24,
+ 1, 25, 1, 21, 21, 1, 19, 19,
+ 0, 0, 0, 20, 26, 27, 28, 26,
+ 27, 28, 0, 0, 0, 0, 0, 0,
+ 1, 19, 19, 0, 0, 0, 20, 29,
+ 29, 0, 0, 0, 0, 0, 0, 1,
+ 19, 19, 0, 0, 0, 20, 30, 30,
+ 0, 0, 0, 0, 0, 0, 1, 19,
+ 19, 0, 0, 0, 20, 31, 31, 0,
+ 0, 0, 0, 0, 0, 1, 19, 19,
+ 0, 0, 0, 20, 32, 32, 0, 0,
+ 0, 0, 0, 0, 1, 33, 33, 0,
+ 0, 0, 34, 0, 35, 0, 0, 0,
+ 0, 0, 1, 33, 33, 35, 1, 35,
+ 37, 35, 36, 38, 36, 39, 1, 40,
+ 1, 36, 36, 1, 19, 19, 0, 0,
+ 0, 20, 41, 42, 43, 41, 42, 43,
+ 0, 0, 0, 0, 0, 0, 1, 19,
+ 19, 0, 0, 0, 20, 44, 44, 0,
+ 0, 0, 0, 0, 0, 1, 19, 19,
+ 0, 0, 0, 20, 45, 45, 0, 0,
+ 0, 0, 0, 0, 1, 19, 19, 0,
+ 0, 0, 20, 46, 46, 0, 0, 0,
+ 0, 0, 0, 1, 19, 19, 0, 0,
+ 0, 20, 47, 47, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 20, 48, 48, 0, 0, 0, 0, 0,
+ 0, 1, 19, 19, 0, 0, 0, 20,
+ 49, 49, 0, 0, 0, 0, 0, 0,
+ 1, 50, 50, 0, 0, 0, 51, 0,
+ 0, 0, 0, 0, 0, 1, 50, 50,
+ 51, 1, 51, 53, 51, 52, 54, 52,
+ 55, 1, 56, 1, 52, 52, 1, 19,
+ 19, 0, 0, 0, 20, 57, 57, 0,
+ 0, 0, 0, 0, 0, 1, 19, 19,
+ 0, 0, 0, 20, 58, 58, 0, 0,
+ 0, 0, 0, 0, 1, 19, 19, 0,
+ 0, 0, 20, 59, 59, 0, 0, 0,
+ 0, 0, 0, 1, 19, 19, 0, 0,
+ 0, 20, 60, 60, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 20, 61, 61, 0, 0, 0, 0, 0,
+ 0, 1, 19, 19, 0, 0, 0, 20,
+ 62, 62, 0, 0, 0, 0, 0, 0,
+ 1, 19, 19, 0, 0, 0, 20, 63,
+ 63, 0, 0, 0, 0, 0, 0, 1,
+ 64, 64, 0, 0, 0, 65, 0, 0,
+ 0, 0, 0, 0, 1, 64, 64, 65,
+ 1, 65, 67, 65, 66, 68, 66, 69,
+ 1, 70, 1, 66, 66, 1, 19, 19,
+ 0, 0, 0, 20, 71, 71, 0, 0,
+ 0, 0, 0, 0, 1, 19, 19, 0,
+ 0, 0, 20, 72, 72, 0, 0, 0,
+ 0, 0, 0, 1, 19, 19, 0, 0,
+ 0, 20, 73, 73, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 20, 74, 74, 0, 0, 0, 0, 0,
+ 0, 1, 19, 19, 0, 0, 0, 20,
+ 75, 75, 0, 0, 0, 0, 0, 0,
+ 1, 19, 19, 0, 0, 0, 20, 76,
+ 76, 0, 0, 0, 0, 0, 0, 1,
+ 19, 19, 0, 0, 0, 20, 77, 77,
+ 0, 0, 0, 0, 0, 0, 1, 78,
+ 78, 0, 0, 0, 79, 0, 0, 0,
+ 0, 0, 0, 1, 78, 78, 79, 1,
+ 79, 81, 79, 80, 82, 80, 83, 1,
+ 84, 1, 80, 80, 1, 19, 19, 0,
+ 0, 0, 20, 85, 85, 0, 0, 0,
+ 0, 0, 0, 1, 19, 19, 0, 0,
+ 0, 20, 86, 86, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 20, 87, 87, 0, 0, 0, 0, 0,
+ 0, 1, 88, 88, 0, 0, 0, 89,
+ 0, 0, 0, 0, 0, 0, 1, 88,
+ 88, 89, 1, 89, 91, 89, 90, 92,
+ 90, 93, 1, 94, 1, 90, 90, 1,
+ 19, 19, 0, 0, 0, 20, 95, 95,
+ 0, 0, 0, 0, 0, 0, 1, 19,
+ 19, 0, 0, 0, 20, 96, 96, 0,
+ 0, 0, 0, 0, 0, 1, 19, 19,
+ 0, 0, 0, 20, 97, 97, 0, 0,
+ 0, 0, 0, 0, 1, 19, 19, 0,
+ 0, 0, 20, 98, 98, 0, 0, 0,
+ 0, 0, 0, 1, 19, 19, 0, 0,
+ 0, 20, 99, 99, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 20, 100, 100, 0, 0, 0, 0, 0,
+ 0, 1, 19, 19, 0, 0, 0, 20,
+ 101, 101, 0, 0, 0, 0, 0, 0,
+ 1, 19, 19, 0, 0, 0, 20, 102,
+ 102, 0, 0, 0, 0, 0, 0, 1,
+ 19, 19, 0, 0, 0, 20, 103, 103,
+ 0, 0, 0, 0, 0, 0, 1, 19,
+ 19, 0, 0, 0, 20, 104, 104, 0,
+ 0, 0, 0, 0, 0, 1, 19, 19,
+ 0, 0, 0, 20, 105, 105, 0, 0,
+ 0, 0, 0, 0, 1, 106, 106, 0,
+ 0, 0, 107, 0, 0, 0, 0, 0,
+ 0, 1, 106, 106, 107, 1, 107, 109,
+ 107, 108, 110, 108, 111, 1, 112, 1,
+ 108, 108, 1, 19, 19, 0, 0, 0,
+ 20, 113, 114, 113, 114, 0, 0, 0,
+ 0, 0, 0, 1, 19, 19, 0, 0,
+ 0, 20, 115, 115, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 20, 116, 116, 0, 0, 0, 0, 0,
+ 0, 1, 19, 19, 0, 0, 0, 20,
+ 117, 117, 0, 0, 0, 0, 0, 0,
+ 1, 19, 19, 0, 0, 0, 118, 0,
+ 20, 0, 0, 0, 0, 0, 1, 19,
+ 19, 0, 0, 0, 20, 119, 119, 0,
+ 0, 0, 0, 0, 0, 1, 19, 19,
+ 0, 0, 0, 20, 120, 120, 0, 0,
+ 0, 0, 0, 0, 1, 19, 19, 0,
+ 0, 0, 20, 121, 121, 0, 0, 0,
+ 0, 0, 0, 1, 19, 19, 0, 0,
+ 0, 20, 122, 122, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 20, 123, 123, 0, 0, 0, 0, 0,
+ 0, 1, 19, 19, 0, 0, 0, 20,
+ 124, 124, 0, 0, 0, 0, 0, 0,
+ 1, 19, 19, 0, 0, 0, 20, 125,
+ 125, 0, 0, 0, 0, 0, 0, 1,
+ 126, 126, 0, 0, 0, 127, 0, 0,
+ 0, 0, 0, 0, 1, 126, 126, 127,
+ 1, 127, 129, 127, 128, 130, 128, 131,
+ 1, 132, 1, 128, 128, 1, 19, 19,
+ 0, 0, 0, 20, 133, 133, 0, 0,
+ 0, 0, 0, 0, 1, 19, 19, 0,
+ 0, 0, 20, 134, 135, 134, 135, 0,
+ 0, 0, 0, 0, 0, 1, 19, 19,
+ 0, 0, 0, 20, 136, 136, 0, 0,
+ 0, 0, 0, 0, 1, 19, 19, 0,
+ 0, 0, 20, 137, 137, 0, 0, 0,
+ 0, 0, 0, 1, 19, 19, 0, 0,
+ 0, 20, 138, 138, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 20, 139, 139, 0, 0, 0, 0, 0,
+ 0, 1, 19, 19, 0, 0, 0, 20,
+ 140, 140, 0, 0, 0, 0, 0, 0,
+ 1, 19, 19, 0, 0, 0, 20, 141,
+ 141, 0, 0, 0, 0, 0, 0, 1,
+ 142, 142, 0, 0, 0, 143, 0, 0,
+ 0, 0, 0, 0, 1, 142, 142, 143,
+ 1, 143, 145, 143, 144, 146, 144, 147,
+ 1, 148, 1, 144, 144, 1, 19, 19,
+ 0, 0, 0, 20, 149, 149, 0, 0,
+ 0, 0, 0, 0, 1, 19, 19, 0,
+ 0, 0, 20, 150, 150, 0, 0, 0,
+ 0, 0, 0, 1, 19, 19, 0, 0,
+ 0, 20, 151, 151, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 152, 0, 20, 0, 0, 0, 0, 0,
+ 1, 19, 19, 0, 0, 0, 20, 153,
+ 154, 155, 156, 157, 153, 154, 155, 156,
+ 157, 0, 0, 0, 0, 0, 0, 1,
+ 19, 19, 0, 0, 0, 20, 158, 158,
+ 0, 0, 0, 0, 0, 0, 1, 19,
+ 19, 0, 0, 0, 20, 159, 159, 0,
+ 0, 0, 0, 0, 0, 1, 19, 19,
+ 0, 0, 0, 20, 160, 160, 0, 0,
+ 0, 0, 0, 0, 1, 19, 19, 0,
+ 0, 0, 20, 161, 161, 0, 0, 0,
+ 0, 0, 0, 1, 19, 19, 0, 0,
+ 0, 20, 162, 162, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 20, 163, 163, 0, 0, 0, 0, 0,
+ 0, 1, 19, 19, 0, 0, 0, 20,
+ 164, 164, 0, 0, 0, 0, 0, 0,
+ 1, 165, 165, 0, 0, 0, 166, 0,
+ 0, 0, 0, 0, 0, 1, 165, 165,
+ 166, 1, 166, 168, 166, 167, 169, 167,
+ 170, 1, 171, 1, 167, 167, 1, 19,
+ 19, 0, 0, 0, 20, 172, 173, 174,
+ 172, 173, 174, 0, 0, 0, 0, 0,
+ 0, 1, 19, 19, 0, 0, 0, 20,
+ 175, 175, 0, 0, 0, 0, 0, 0,
+ 1, 19, 19, 0, 0, 0, 20, 176,
+ 176, 0, 0, 0, 0, 0, 0, 1,
+ 19, 19, 0, 0, 0, 20, 177, 177,
+ 0, 0, 0, 0, 0, 0, 1, 19,
+ 19, 0, 0, 0, 20, 178, 178, 0,
+ 0, 0, 0, 0, 0, 1, 19, 19,
+ 0, 0, 0, 20, 179, 179, 0, 0,
+ 0, 0, 0, 0, 1, 19, 19, 0,
+ 0, 0, 20, 180, 180, 0, 0, 0,
+ 0, 0, 0, 1, 181, 181, 0, 0,
+ 0, 182, 0, 0, 0, 0, 0, 0,
+ 1, 181, 181, 182, 1, 182, 184, 182,
+ 183, 185, 183, 186, 1, 187, 1, 183,
+ 183, 1, 19, 19, 0, 0, 0, 20,
+ 188, 188, 0, 0, 0, 0, 0, 0,
+ 1, 19, 19, 0, 0, 0, 20, 189,
+ 189, 0, 0, 0, 0, 0, 0, 1,
+ 19, 19, 0, 0, 0, 20, 190, 190,
+ 0, 0, 0, 0, 0, 0, 1, 19,
+ 19, 0, 0, 0, 20, 191, 191, 0,
+ 0, 0, 0, 0, 0, 1, 192, 192,
+ 0, 0, 0, 193, 0, 0, 0, 0,
+ 0, 0, 1, 192, 192, 193, 1, 193,
+ 195, 193, 194, 196, 194, 197, 1, 198,
+ 1, 194, 194, 1, 19, 19, 0, 0,
+ 0, 20, 199, 199, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 20, 200, 200, 0, 0, 0, 0, 0,
+ 0, 1, 19, 19, 0, 0, 0, 20,
+ 201, 201, 0, 0, 0, 0, 0, 0,
+ 1, 19, 19, 0, 0, 0, 20, 202,
+ 202, 0, 0, 0, 0, 0, 0, 1,
+ 19, 19, 0, 0, 0, 20, 203, 203,
+ 0, 0, 0, 0, 0, 0, 1, 19,
+ 19, 0, 0, 0, 20, 204, 204, 0,
+ 0, 0, 0, 0, 0, 1, 205, 205,
+ 0, 0, 0, 206, 0, 0, 0, 0,
+ 0, 0, 1, 205, 205, 206, 1, 206,
+ 208, 206, 207, 209, 207, 210, 1, 211,
+ 1, 207, 207, 1, 19, 19, 0, 0,
+ 0, 20, 212, 212, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 213, 20, 0, 0, 0, 0, 0, 0,
+ 1, 214, 214, 0, 0, 0, 215, 0,
+ 0, 0, 0, 0, 0, 1, 214, 214,
+ 215, 1, 215, 217, 215, 216, 218, 216,
+ 219, 1, 220, 1, 216, 216, 1, 19,
+ 19, 0, 0, 0, 20, 221, 221, 0,
+ 0, 0, 0, 0, 0, 1, 19, 19,
+ 0, 0, 0, 20, 222, 222, 0, 0,
+ 0, 0, 0, 0, 1, 19, 19, 0,
+ 0, 0, 20, 223, 223, 0, 0, 0,
+ 0, 0, 0, 1, 19, 19, 0, 0,
+ 0, 20, 224, 224, 0, 0, 0, 0,
+ 0, 0, 1, 225, 225, 0, 0, 0,
+ 226, 0, 0, 0, 0, 0, 0, 1,
+ 225, 225, 226, 1, 226, 228, 226, 227,
+ 229, 227, 230, 1, 231, 1, 227, 227,
+ 1, 19, 19, 0, 0, 0, 20, 232,
+ 232, 0, 0, 0, 0, 0, 0, 1,
+ 19, 19, 0, 0, 0, 20, 233, 233,
+ 0, 0, 0, 0, 0, 0, 1, 19,
+ 19, 0, 0, 0, 20, 234, 234, 0,
+ 0, 0, 0, 0, 0, 1, 235, 235,
+ 0, 0, 0, 236, 0, 0, 0, 0,
+ 0, 0, 1, 235, 235, 236, 1, 236,
+ 238, 236, 237, 239, 237, 240, 1, 241,
+ 1, 237, 237, 1, 19, 19, 0, 0,
+ 0, 20, 242, 242, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 20, 243, 243, 0, 0, 0, 0, 0,
+ 0, 1, 19, 19, 0, 0, 0, 20,
+ 244, 244, 0, 0, 0, 0, 0, 0,
+ 1, 245, 245, 0, 0, 0, 246, 0,
+ 0, 0, 0, 0, 0, 1, 245, 245,
+ 246, 1, 246, 248, 246, 247, 249, 247,
+ 250, 1, 251, 1, 247, 247, 1, 19,
+ 19, 0, 0, 0, 20, 252, 253, 252,
+ 253, 0, 0, 0, 0, 0, 0, 1,
+ 19, 19, 0, 0, 0, 20, 254, 254,
+ 0, 0, 0, 0, 0, 0, 1, 19,
+ 19, 0, 0, 0, 20, 255, 255, 0,
+ 0, 0, 0, 0, 0, 1, 256, 256,
+ 0, 0, 0, 257, 0, 0, 0, 0,
+ 0, 0, 1, 256, 256, 257, 1, 257,
+ 259, 257, 258, 260, 258, 261, 1, 262,
+ 1, 258, 258, 1, 19, 19, 0, 0,
+ 0, 20, 263, 263, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 20, 264, 265, 264, 265, 0, 0, 0,
+ 0, 0, 0, 1, 19, 19, 0, 0,
+ 0, 20, 266, 266, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 20, 267, 267, 0, 0, 0, 0, 0,
+ 0, 1, 268, 268, 0, 0, 0, 269,
+ 0, 0, 0, 0, 0, 0, 1, 268,
+ 268, 269, 1, 269, 271, 269, 270, 272,
+ 270, 273, 1, 274, 1, 270, 270, 1,
+ 19, 19, 0, 0, 0, 20, 275, 275,
+ 0, 0, 0, 0, 0, 0, 1, 19,
+ 19, 0, 0, 0, 20, 276, 276, 0,
+ 0, 0, 0, 0, 0, 1, 19, 19,
+ 0, 0, 0, 20, 277, 277, 0, 0,
+ 0, 0, 0, 0, 1, 278, 278, 0,
+ 0, 0, 279, 0, 0, 0, 0, 0,
+ 0, 1, 278, 278, 279, 1, 279, 281,
+ 279, 280, 282, 280, 283, 1, 284, 1,
+ 280, 280, 1, 19, 19, 0, 0, 0,
+ 20, 285, 285, 0, 0, 0, 0, 0,
+ 0, 1, 19, 19, 0, 0, 0, 20,
+ 286, 286, 0, 0, 0, 0, 0, 0,
+ 1, 19, 19, 0, 0, 0, 20, 287,
+ 287, 0, 0, 0, 0, 0, 0, 1,
+ 288, 288, 0, 0, 0, 289, 0, 0,
+ 0, 0, 0, 0, 1, 288, 288, 289,
+ 1, 289, 291, 289, 290, 292, 290, 293,
+ 1, 294, 1, 290, 290, 1, 19, 19,
+ 0, 0, 0, 20, 295, 295, 0, 0,
+ 0, 0, 0, 0, 1, 19, 19, 0,
+ 0, 0, 20, 296, 296, 0, 0, 0,
+ 0, 0, 0, 1, 19, 19, 0, 0,
+ 0, 20, 297, 297, 0, 0, 0, 0,
+ 0, 0, 1, 298, 298, 0, 0, 0,
+ 299, 0, 0, 0, 0, 0, 0, 1,
+ 298, 298, 299, 1, 299, 301, 299, 300,
+ 302, 300, 303, 1, 304, 1, 300, 300,
+ 1, 19, 19, 0, 0, 0, 20, 305,
+ 305, 0, 0, 0, 0, 0, 0, 1,
+ 19, 19, 0, 0, 0, 306, 0, 20,
+ 0, 0, 0, 0, 0, 1, 19, 19,
+ 0, 0, 0, 20, 307, 308, 309, 310,
+ 307, 308, 309, 310, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 20, 311, 312, 311, 312, 0, 0, 0,
+ 0, 0, 0, 1, 19, 19, 0, 0,
+ 0, 20, 313, 313, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 20, 314, 314, 0, 0, 0, 0, 0,
+ 0, 1, 19, 19, 0, 0, 0, 20,
+ 315, 315, 0, 0, 0, 0, 0, 0,
+ 1, 316, 316, 0, 0, 0, 317, 0,
+ 0, 0, 0, 0, 0, 1, 316, 316,
+ 317, 1, 317, 319, 317, 318, 320, 318,
+ 321, 1, 322, 1, 318, 318, 1, 19,
+ 19, 0, 0, 0, 20, 323, 323, 0,
+ 0, 0, 0, 0, 0, 1, 19, 19,
+ 0, 0, 0, 20, 324, 324, 0, 0,
+ 0, 0, 0, 0, 1, 19, 19, 0,
+ 0, 0, 20, 325, 325, 0, 0, 0,
+ 0, 0, 0, 1, 19, 19, 0, 0,
+ 0, 20, 326, 326, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 20, 327, 327, 0, 0, 0, 0, 0,
+ 0, 1, 19, 19, 0, 0, 0, 20,
+ 328, 328, 0, 0, 0, 0, 0, 0,
+ 1, 19, 19, 0, 0, 0, 329, 0,
+ 20, 0, 0, 0, 0, 0, 1, 19,
+ 19, 0, 0, 0, 20, 330, 330, 0,
+ 0, 0, 0, 0, 0, 1, 19, 19,
+ 0, 0, 0, 20, 331, 331, 0, 0,
+ 0, 0, 0, 0, 1, 19, 19, 0,
+ 0, 0, 20, 332, 332, 0, 0, 0,
+ 0, 0, 0, 1, 19, 19, 0, 0,
+ 0, 20, 333, 333, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 20, 334, 334, 0, 0, 0, 0, 0,
+ 0, 1, 335, 335, 0, 0, 0, 336,
+ 0, 0, 0, 0, 0, 0, 1, 335,
+ 335, 336, 1, 336, 338, 336, 337, 339,
+ 337, 340, 1, 341, 1, 337, 337, 1,
+ 19, 19, 0, 0, 0, 20, 342, 342,
+ 0, 0, 0, 0, 0, 0, 1, 19,
+ 19, 0, 0, 0, 20, 343, 343, 0,
+ 0, 0, 0, 0, 0, 1, 19, 19,
+ 0, 0, 0, 20, 344, 344, 0, 0,
+ 0, 0, 0, 0, 1, 19, 19, 0,
+ 0, 0, 345, 0, 20, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 20, 346, 346, 0, 0, 0, 0, 0,
+ 0, 1, 19, 19, 0, 0, 0, 20,
+ 347, 347, 0, 0, 0, 0, 0, 0,
+ 1, 19, 19, 0, 0, 0, 20, 348,
+ 348, 0, 0, 0, 0, 0, 0, 1,
+ 19, 19, 0, 0, 0, 20, 349, 349,
+ 0, 0, 0, 0, 0, 0, 1, 19,
+ 19, 0, 0, 0, 20, 350, 350, 0,
+ 0, 0, 0, 0, 0, 1, 351, 351,
+ 0, 0, 0, 352, 0, 0, 0, 0,
+ 0, 0, 1, 351, 351, 352, 1, 352,
+ 354, 352, 353, 355, 353, 356, 1, 357,
+ 1, 353, 353, 1, 19, 19, 0, 0,
+ 0, 20, 358, 358, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 20, 359, 359, 0, 0, 0, 0, 0,
+ 0, 1, 19, 19, 0, 0, 0, 20,
+ 360, 360, 0, 0, 0, 0, 0, 0,
+ 1, 19, 19, 0, 0, 0, 20, 361,
+ 361, 0, 0, 0, 0, 0, 0, 1,
+ 362, 362, 0, 0, 0, 363, 0, 0,
+ 0, 0, 0, 0, 1, 362, 362, 363,
+ 1, 363, 365, 363, 364, 366, 364, 367,
+ 1, 368, 1, 364, 364, 1, 19, 19,
+ 0, 0, 0, 20, 369, 369, 0, 0,
+ 0, 0, 0, 0, 1, 19, 19, 0,
+ 0, 0, 20, 370, 370, 0, 0, 0,
+ 0, 0, 0, 1, 19, 19, 0, 0,
+ 0, 20, 371, 371, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 20, 372, 372, 0, 0, 0, 0, 0,
+ 0, 1, 19, 19, 0, 0, 0, 20,
+ 373, 373, 0, 0, 0, 0, 0, 0,
+ 1, 19, 19, 0, 0, 0, 20, 374,
+ 374, 0, 0, 0, 0, 0, 0, 1,
+ 19, 19, 0, 0, 0, 20, 375, 375,
+ 0, 0, 0, 0, 0, 0, 1, 19,
+ 19, 0, 0, 0, 20, 376, 376, 0,
+ 0, 0, 0, 0, 0, 1, 19, 19,
+ 0, 0, 0, 20, 377, 377, 0, 0,
+ 0, 0, 0, 0, 1, 19, 19, 0,
+ 0, 0, 378, 0, 20, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 20, 379, 379, 0, 0, 0, 0, 0,
+ 0, 1, 19, 19, 0, 0, 0, 20,
+ 380, 380, 0, 0, 0, 0, 0, 0,
+ 1, 19, 19, 0, 0, 0, 20, 381,
+ 381, 0, 0, 0, 0, 0, 0, 1,
+ 19, 19, 0, 0, 0, 20, 382, 382,
+ 0, 0, 0, 0, 0, 0, 1, 19,
+ 19, 0, 0, 0, 20, 383, 383, 0,
+ 0, 0, 0, 0, 0, 1, 384, 384,
+ 0, 0, 0, 385, 0, 0, 0, 0,
+ 0, 0, 1, 384, 384, 385, 1, 385,
+ 387, 385, 386, 388, 386, 389, 1, 390,
+ 1, 386, 386, 1, 19, 19, 0, 0,
+ 0, 20, 391, 391, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 20, 392, 392, 0, 0, 0, 0, 0,
+ 0, 1, 19, 19, 0, 0, 0, 20,
+ 393, 393, 0, 0, 0, 0, 0, 0,
+ 1, 19, 19, 0, 0, 0, 394, 0,
+ 20, 0, 0, 0, 0, 0, 1, 19,
+ 19, 0, 0, 0, 20, 395, 395, 0,
+ 0, 0, 0, 0, 0, 1, 19, 19,
+ 0, 0, 0, 20, 396, 396, 0, 0,
+ 0, 0, 0, 0, 1, 19, 19, 0,
+ 0, 0, 20, 397, 397, 0, 0, 0,
+ 0, 0, 0, 1, 19, 19, 0, 0,
+ 0, 20, 398, 398, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 20, 399, 399, 0, 0, 0, 0, 0,
+ 0, 1, 19, 19, 0, 0, 0, 20,
+ 400, 400, 0, 0, 0, 0, 0, 0,
+ 1, 19, 19, 0, 0, 0, 20, 401,
+ 401, 0, 0, 0, 0, 0, 0, 1,
+ 19, 19, 0, 0, 0, 20, 402, 402,
+ 0, 0, 0, 0, 0, 0, 1, 403,
+ 403, 0, 0, 0, 404, 0, 0, 0,
+ 0, 0, 0, 1, 403, 403, 404, 1,
+ 404, 406, 404, 405, 407, 405, 408, 1,
+ 409, 1, 405, 405, 1, 19, 19, 0,
+ 0, 0, 20, 410, 410, 0, 0, 0,
+ 0, 0, 0, 1, 19, 19, 0, 0,
+ 0, 20, 411, 411, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 412, 0, 20, 0, 0, 0, 0, 0,
+ 1, 19, 19, 0, 0, 0, 20, 413,
+ 413, 0, 0, 0, 0, 0, 0, 1,
+ 19, 19, 0, 0, 0, 20, 414, 414,
+ 0, 0, 0, 0, 0, 0, 1, 19,
+ 19, 0, 0, 0, 20, 415, 415, 0,
+ 0, 0, 0, 0, 0, 1, 19, 19,
+ 0, 0, 0, 20, 416, 416, 0, 0,
+ 0, 0, 0, 0, 1, 19, 19, 0,
+ 0, 0, 20, 417, 417, 0, 0, 0,
+ 0, 0, 0, 1, 19, 19, 0, 0,
+ 0, 20, 418, 418, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 20, 419, 419, 0, 0, 0, 0, 0,
+ 0, 1, 19, 19, 0, 0, 0, 20,
+ 420, 420, 0, 0, 0, 0, 0, 0,
+ 1, 421, 421, 0, 0, 0, 422, 0,
+ 0, 0, 0, 0, 0, 1, 421, 421,
+ 422, 1, 422, 424, 422, 423, 425, 423,
+ 426, 1, 427, 1, 423, 423, 1, 19,
+ 19, 0, 0, 0, 20, 428, 428, 0,
+ 0, 0, 0, 0, 0, 1, 19, 19,
+ 0, 0, 0, 20, 429, 430, 429, 430,
+ 0, 0, 0, 0, 0, 0, 1, 19,
+ 19, 0, 0, 0, 20, 431, 431, 0,
+ 0, 0, 0, 0, 0, 1, 19, 19,
+ 0, 0, 0, 20, 432, 432, 0, 0,
+ 0, 0, 0, 0, 1, 19, 19, 0,
+ 0, 0, 20, 433, 433, 0, 0, 0,
+ 0, 0, 0, 1, 434, 434, 0, 0,
+ 0, 435, 0, 0, 0, 0, 0, 0,
+ 1, 434, 434, 435, 1, 435, 437, 435,
+ 436, 438, 436, 439, 1, 440, 1, 436,
+ 436, 1, 19, 19, 0, 0, 0, 20,
+ 441, 441, 0, 0, 0, 0, 0, 0,
+ 1, 19, 19, 0, 0, 0, 20, 442,
+ 442, 0, 0, 0, 0, 0, 0, 1,
+ 19, 19, 0, 0, 0, 443, 0, 20,
+ 0, 0, 0, 0, 0, 1, 19, 19,
+ 0, 0, 0, 20, 444, 444, 0, 0,
+ 0, 0, 0, 0, 1, 19, 19, 0,
+ 0, 0, 20, 445, 445, 0, 0, 0,
+ 0, 0, 0, 1, 19, 19, 0, 0,
+ 0, 20, 446, 446, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 20, 447, 447, 0, 0, 0, 0, 0,
+ 0, 1, 19, 19, 0, 0, 0, 20,
+ 448, 449, 448, 449, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 20, 450, 450, 0, 0, 0, 0, 0,
+ 0, 1, 19, 19, 0, 0, 0, 20,
+ 451, 451, 0, 0, 0, 0, 0, 0,
+ 1, 19, 19, 0, 0, 0, 20, 452,
+ 452, 0, 0, 0, 0, 0, 0, 1,
+ 19, 19, 0, 0, 0, 20, 453, 453,
+ 0, 0, 0, 0, 0, 0, 1, 19,
+ 19, 0, 0, 0, 20, 454, 454, 0,
+ 0, 0, 0, 0, 0, 1, 19, 19,
+ 0, 0, 0, 20, 455, 455, 0, 0,
+ 0, 0, 0, 0, 1, 19, 19, 0,
+ 0, 0, 20, 456, 456, 0, 0, 0,
+ 0, 0, 0, 1, 457, 457, 0, 0,
+ 0, 458, 0, 0, 0, 0, 0, 0,
+ 1, 457, 457, 458, 1, 458, 460, 458,
+ 459, 461, 459, 462, 1, 463, 1, 459,
+ 459, 1, 19, 19, 0, 0, 0, 20,
+ 464, 464, 0, 0, 0, 0, 0, 0,
+ 1, 19, 19, 0, 0, 0, 20, 465,
+ 465, 0, 0, 0, 0, 0, 0, 1,
+ 19, 19, 0, 0, 0, 20, 466, 466,
+ 0, 0, 0, 0, 0, 0, 1, 19,
+ 19, 0, 0, 0, 20, 467, 467, 0,
+ 0, 0, 0, 0, 0, 1, 19, 19,
+ 0, 0, 0, 20, 468, 468, 0, 0,
+ 0, 0, 0, 0, 1, 19, 19, 0,
+ 0, 0, 20, 469, 469, 0, 0, 0,
+ 0, 0, 0, 1, 19, 19, 0, 0,
+ 0, 20, 470, 470, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 20, 471, 471, 0, 0, 0, 0, 0,
+ 0, 1, 472, 472, 0, 0, 0, 473,
+ 0, 0, 0, 0, 0, 0, 1, 472,
+ 472, 473, 1, 473, 475, 473, 474, 476,
+ 474, 477, 1, 478, 1, 474, 474, 1,
+ 19, 19, 0, 0, 0, 20, 479, 480,
+ 479, 480, 0, 0, 0, 0, 0, 0,
+ 1, 19, 19, 0, 0, 0, 20, 481,
+ 481, 0, 0, 0, 0, 0, 0, 1,
+ 19, 19, 0, 0, 0, 20, 482, 482,
+ 0, 0, 0, 0, 0, 0, 1, 19,
+ 19, 0, 0, 0, 20, 483, 483, 0,
+ 0, 0, 0, 0, 0, 1, 484, 484,
+ 0, 0, 0, 485, 0, 0, 0, 0,
+ 0, 0, 1, 484, 484, 485, 1, 485,
+ 487, 485, 486, 488, 486, 489, 1, 490,
+ 1, 486, 486, 1, 19, 19, 0, 0,
+ 0, 20, 491, 491, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 20, 492, 492, 0, 0, 0, 0, 0,
+ 0, 1, 19, 19, 0, 0, 0, 20,
+ 493, 493, 0, 0, 0, 0, 0, 0,
+ 1, 19, 19, 0, 0, 0, 20, 494,
+ 494, 0, 0, 0, 0, 0, 0, 1,
+ 19, 19, 0, 0, 0, 20, 495, 495,
+ 0, 0, 0, 0, 0, 0, 1, 496,
+ 496, 0, 0, 0, 497, 0, 0, 0,
+ 0, 0, 0, 1, 496, 496, 497, 1,
+ 497, 499, 497, 498, 500, 498, 501, 1,
+ 502, 1, 498, 498, 1, 19, 19, 0,
+ 0, 0, 20, 503, 504, 503, 504, 0,
+ 0, 0, 0, 0, 0, 1, 505, 505,
+ 0, 0, 0, 506, 0, 0, 0, 0,
+ 0, 0, 1, 505, 505, 506, 1, 506,
+ 508, 506, 507, 509, 507, 510, 1, 511,
+ 1, 507, 507, 1, 19, 19, 0, 0,
+ 0, 20, 512, 512, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 20, 513, 514, 513, 514, 0, 0, 0,
+ 0, 0, 0, 1, 19, 19, 0, 0,
+ 0, 20, 515, 515, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 20, 516, 516, 0, 0, 0, 0, 0,
+ 0, 1, 19, 19, 0, 0, 0, 20,
+ 517, 517, 0, 0, 0, 0, 0, 0,
+ 1, 518, 518, 0, 0, 0, 519, 0,
+ 0, 0, 0, 0, 0, 1, 518, 518,
+ 519, 1, 519, 521, 519, 520, 522, 520,
+ 523, 1, 524, 1, 520, 520, 1, 19,
+ 19, 0, 0, 0, 20, 525, 525, 0,
+ 0, 0, 0, 0, 0, 1, 19, 19,
+ 0, 0, 0, 20, 526, 526, 0, 0,
+ 0, 0, 0, 0, 1, 19, 19, 0,
+ 0, 0, 20, 527, 527, 0, 0, 0,
+ 0, 0, 0, 1, 19, 19, 0, 0,
+ 0, 20, 528, 528, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 529, 0, 20, 0, 0, 0, 0, 0,
+ 1, 19, 19, 0, 0, 0, 20, 530,
+ 530, 0, 0, 0, 0, 0, 0, 1,
+ 19, 19, 0, 0, 0, 20, 531, 531,
+ 0, 0, 0, 0, 0, 0, 1, 19,
+ 19, 0, 0, 0, 20, 532, 532, 0,
+ 0, 0, 0, 0, 0, 1, 19, 19,
+ 0, 0, 0, 20, 533, 533, 0, 0,
+ 0, 0, 0, 0, 1, 19, 19, 0,
+ 0, 0, 20, 534, 534, 0, 0, 0,
+ 0, 0, 0, 1, 19, 19, 0, 0,
+ 0, 20, 535, 535, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 20, 536, 536, 0, 0, 0, 0, 0,
+ 0, 1, 19, 19, 0, 0, 0, 20,
+ 537, 537, 0, 0, 0, 0, 0, 0,
+ 1, 538, 538, 0, 0, 0, 539, 0,
+ 0, 0, 0, 0, 0, 1, 538, 538,
+ 539, 1, 539, 541, 539, 540, 542, 540,
+ 543, 1, 544, 1, 540, 540, 1, 19,
+ 19, 0, 0, 0, 20, 545, 546, 545,
+ 546, 0, 0, 0, 0, 0, 0, 1,
+ 19, 19, 0, 0, 0, 20, 547, 547,
+ 0, 0, 0, 0, 0, 0, 1, 19,
+ 19, 0, 0, 0, 20, 548, 548, 0,
+ 0, 0, 0, 0, 0, 1, 19, 19,
+ 0, 0, 0, 20, 549, 549, 0, 0,
+ 0, 0, 0, 0, 1, 19, 19, 0,
+ 0, 0, 20, 550, 550, 0, 0, 0,
+ 0, 0, 0, 1, 19, 19, 0, 0,
+ 0, 20, 551, 551, 0, 0, 0, 0,
+ 0, 0, 1, 552, 552, 0, 0, 0,
+ 553, 0, 0, 0, 0, 0, 0, 1,
+ 552, 552, 553, 1, 553, 555, 553, 554,
+ 556, 554, 557, 1, 558, 1, 554, 554,
+ 1, 19, 19, 0, 0, 0, 20, 559,
+ 559, 0, 0, 0, 0, 0, 0, 1,
+ 19, 19, 0, 0, 0, 20, 560, 560,
+ 0, 0, 0, 0, 0, 0, 1, 19,
+ 19, 0, 0, 0, 561, 0, 20, 0,
+ 0, 0, 0, 0, 1, 19, 19, 0,
+ 0, 0, 20, 562, 562, 0, 0, 0,
+ 0, 0, 0, 1, 19, 19, 0, 0,
+ 0, 20, 563, 563, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 20, 564, 564, 0, 0, 0, 0, 0,
+ 0, 1, 19, 19, 0, 0, 0, 20,
+ 565, 565, 0, 0, 0, 0, 0, 0,
+ 1, 19, 19, 0, 0, 0, 20, 566,
+ 566, 0, 0, 0, 0, 0, 0, 1,
+ 567, 567, 0, 0, 0, 568, 0, 0,
+ 0, 0, 0, 0, 1, 567, 567, 568,
+ 1, 568, 570, 568, 569, 571, 569, 572,
+ 1, 573, 1, 569, 569, 1, 19, 19,
+ 0, 0, 0, 20, 574, 574, 0, 0,
+ 0, 0, 0, 0, 1, 19, 19, 0,
+ 0, 0, 20, 575, 575, 0, 0, 0,
+ 0, 0, 0, 1, 576, 576, 0, 0,
+ 0, 577, 0, 0, 0, 0, 0, 0,
+ 1, 576, 576, 577, 1, 577, 579, 577,
+ 578, 580, 578, 581, 1, 582, 1, 578,
+ 578, 1, 19, 19, 0, 0, 0, 20,
+ 583, 584, 583, 584, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 20, 585, 585, 0, 0, 0, 0, 0,
+ 0, 1, 19, 19, 0, 0, 0, 20,
+ 586, 586, 0, 0, 0, 0, 0, 0,
+ 1, 19, 19, 0, 0, 0, 20, 587,
+ 587, 0, 0, 0, 0, 0, 0, 1,
+ 19, 19, 0, 0, 0, 20, 588, 588,
+ 0, 0, 0, 0, 0, 0, 1, 19,
+ 19, 0, 0, 0, 20, 589, 589, 0,
+ 0, 0, 0, 0, 0, 1, 590, 590,
+ 0, 0, 0, 591, 0, 0, 0, 0,
+ 0, 0, 1, 590, 590, 591, 1, 591,
+ 593, 591, 592, 594, 592, 595, 1, 596,
+ 1, 592, 592, 1, 19, 19, 0, 0,
+ 0, 20, 597, 597, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 598, 0, 20, 0, 0, 0, 0, 0,
+ 1, 19, 19, 0, 0, 0, 20, 599,
+ 599, 0, 0, 0, 0, 0, 0, 1,
+ 19, 19, 0, 0, 0, 20, 600, 600,
+ 0, 0, 0, 0, 0, 0, 1, 19,
+ 19, 0, 0, 0, 20, 601, 601, 0,
+ 0, 0, 0, 0, 0, 1, 19, 19,
+ 0, 0, 0, 20, 602, 602, 0, 0,
+ 0, 0, 0, 0, 1, 19, 19, 0,
+ 0, 0, 20, 603, 603, 0, 0, 0,
+ 0, 0, 0, 1, 19, 19, 0, 0,
+ 0, 20, 604, 604, 0, 0, 0, 0,
+ 0, 0, 1, 19, 19, 0, 0, 0,
+ 20, 605, 605, 0, 0, 0, 0, 0,
+ 0, 1, 19, 19, 0, 0, 0, 20,
+ 606, 606, 0, 0, 0, 0, 0, 0,
+ 1, 19, 19, 0, 0, 0, 20, 607,
+ 607, 0, 0, 0, 0, 0, 0, 1,
+ 19, 19, 0, 0, 0, 20, 608, 608,
+ 0, 0, 0, 0, 0, 0, 1, 19,
+ 19, 0, 0, 0, 20, 609, 609, 0,
+ 0, 0, 0, 0, 0, 1, 19, 19,
+ 0, 0, 0, 20, 610, 610, 0, 0,
+ 0, 0, 0, 0, 1, 611, 611, 0,
+ 0, 0, 612, 0, 0, 0, 0, 0,
+ 0, 1, 611, 611, 612, 1, 612, 614,
+ 612, 613, 615, 613, 616, 1, 617, 1,
+ 613, 613, 1, 235, 235, 0, 0, 0,
+ 236, 113, 114, 113, 114, 0, 0, 0,
+ 0, 0, 0, 1, 165, 165, 0, 0,
+ 0, 166, 252, 253, 252, 253, 0, 0,
+ 0, 0, 0, 0, 1, 1, 0
+};
+
+static const short _thttp_machine_parser_headers_trans_targs[] = {
+ 2, 0, 9, 91, 212, 222, 253, 263,
+ 273, 355, 374, 392, 441, 464, 504, 532,
+ 541, 575, 576, 3, 4, 5, 7, 6,
+ 577, 8, 10, 63, 73, 11, 12, 13,
+ 14, 15, 21, 16, 17, 19, 18, 577,
+ 20, 22, 35, 49, 23, 24, 25, 26,
+ 27, 28, 29, 30, 31, 33, 32, 577,
+ 34, 36, 37, 38, 39, 40, 41, 42,
+ 43, 44, 45, 47, 46, 577, 48, 50,
+ 51, 52, 53, 54, 55, 56, 57, 58,
+ 59, 61, 60, 577, 62, 64, 65, 66,
+ 67, 68, 69, 71, 70, 577, 72, 74,
+ 75, 76, 77, 78, 79, 80, 81, 82,
+ 83, 84, 85, 86, 87, 89, 88, 577,
+ 90, 92, 110, 93, 94, 95, 96, 97,
+ 98, 99, 100, 101, 102, 103, 104, 105,
+ 106, 108, 107, 577, 109, 111, 112, 125,
+ 113, 114, 115, 116, 117, 118, 119, 120,
+ 121, 123, 122, 577, 124, 126, 127, 128,
+ 129, 130, 144, 182, 191, 202, 131, 132,
+ 133, 134, 135, 136, 137, 138, 139, 140,
+ 142, 141, 577, 143, 145, 158, 169, 146,
+ 147, 148, 149, 150, 151, 152, 153, 154,
+ 156, 155, 577, 157, 159, 160, 161, 162,
+ 163, 164, 165, 167, 166, 577, 168, 170,
+ 171, 172, 173, 174, 175, 176, 177, 178,
+ 180, 179, 577, 181, 183, 184, 185, 186,
+ 187, 189, 188, 577, 190, 192, 193, 194,
+ 195, 196, 197, 198, 200, 199, 577, 201,
+ 203, 204, 205, 206, 207, 208, 210, 209,
+ 577, 211, 213, 214, 215, 216, 217, 218,
+ 220, 219, 577, 221, 223, 232, 224, 225,
+ 226, 227, 228, 230, 229, 577, 231, 233,
+ 234, 243, 235, 236, 237, 238, 239, 241,
+ 240, 577, 242, 244, 245, 246, 247, 248,
+ 249, 251, 250, 577, 252, 254, 255, 256,
+ 257, 258, 259, 261, 260, 577, 262, 264,
+ 265, 266, 267, 268, 269, 271, 270, 577,
+ 272, 274, 275, 276, 306, 322, 333, 277,
+ 287, 278, 279, 280, 281, 282, 283, 285,
+ 284, 577, 286, 288, 289, 290, 291, 292,
+ 293, 294, 295, 296, 297, 298, 299, 300,
+ 301, 302, 304, 303, 577, 305, 307, 308,
+ 309, 310, 311, 312, 313, 314, 315, 316,
+ 317, 318, 320, 319, 577, 321, 323, 324,
+ 325, 326, 327, 328, 329, 331, 330, 577,
+ 332, 334, 335, 336, 337, 338, 339, 340,
+ 341, 342, 343, 344, 345, 346, 347, 348,
+ 349, 350, 351, 353, 352, 577, 354, 356,
+ 357, 358, 359, 360, 361, 362, 363, 364,
+ 365, 366, 367, 368, 369, 370, 372, 371,
+ 577, 373, 375, 376, 377, 378, 379, 380,
+ 381, 382, 383, 384, 385, 386, 387, 388,
+ 390, 389, 577, 391, 393, 394, 404, 395,
+ 396, 397, 398, 399, 400, 402, 401, 577,
+ 403, 405, 406, 407, 408, 409, 410, 411,
+ 412, 426, 413, 414, 415, 416, 417, 418,
+ 419, 420, 421, 422, 424, 423, 577, 425,
+ 427, 428, 429, 430, 431, 432, 433, 434,
+ 435, 436, 437, 439, 438, 577, 440, 442,
+ 452, 443, 444, 445, 446, 447, 448, 450,
+ 449, 577, 451, 453, 454, 455, 456, 457,
+ 458, 459, 460, 462, 461, 577, 463, 465,
+ 472, 466, 467, 468, 470, 469, 577, 471,
+ 473, 474, 484, 475, 476, 477, 478, 479,
+ 480, 482, 481, 577, 483, 485, 486, 487,
+ 488, 489, 490, 491, 492, 493, 494, 495,
+ 496, 497, 498, 499, 500, 502, 501, 577,
+ 503, 505, 517, 506, 507, 508, 509, 510,
+ 511, 512, 513, 515, 514, 577, 516, 518,
+ 519, 520, 521, 522, 523, 524, 525, 526,
+ 527, 528, 530, 529, 577, 531, 533, 534,
+ 535, 536, 537, 539, 538, 577, 540, 542,
+ 554, 543, 544, 545, 546, 547, 548, 549,
+ 550, 552, 551, 577, 553, 555, 556, 557,
+ 558, 559, 560, 561, 562, 563, 564, 565,
+ 566, 567, 568, 569, 570, 571, 573, 572,
+ 577, 574
+};
+
+static const char _thttp_machine_parser_headers_trans_actions[] = {
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 83, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 1,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 3,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 5, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 7, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 9, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 11,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 13, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 15, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 17, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 19, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 21, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 23, 0, 0, 0, 0, 0,
+ 0, 0, 0, 25, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 27, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 29, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 31, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 33, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 35, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 37, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 39, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 41,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 43, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 45, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 47, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 49,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 51, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 53, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 55, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 57,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 59, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 61, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 63, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 65, 0, 0,
+ 0, 0, 0, 0, 0, 0, 67, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 69, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 71,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 73, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 75, 0, 0, 0,
+ 0, 0, 0, 0, 0, 77, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 79, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 81, 0
+};
+
+static const int thttp_machine_parser_headers_start = 1;
+static const int thttp_machine_parser_headers_first_final = 577;
+static const int thttp_machine_parser_headers_error = 0;
+
+static const int thttp_machine_parser_headers_en_main = 1;
+
+
+/* #line 485 "./ragel/thttp_parser_header.rl" */
+
+/* #line 2116 "./src/parsers/thttp_parser_header.c" */
+ {
+ cs = thttp_machine_parser_headers_start;
+ }
+
+/* #line 486 "./ragel/thttp_parser_header.rl" */
+
+/* #line 2123 "./src/parsers/thttp_parser_header.c" */
+ {
+ int _klen;
+ unsigned int _trans;
+ const char *_acts;
+ unsigned int _nacts;
+ const char *_keys;
+
+ if ( p == pe )
+ goto _test_eof;
+ if ( cs == 0 )
+ goto _out;
+_resume:
+ _keys = _thttp_machine_parser_headers_trans_keys + _thttp_machine_parser_headers_key_offsets[cs];
+ _trans = _thttp_machine_parser_headers_index_offsets[cs];
+
+ _klen = _thttp_machine_parser_headers_single_lengths[cs];
+ if ( _klen > 0 ) {
+ const char *_lower = _keys;
+ const char *_mid;
+ const char *_upper = _keys + _klen - 1;
+ while (1) {
+ if ( _upper < _lower )
+ break;
+
+ _mid = _lower + ((_upper-_lower) >> 1);
+ if ( (*p) < *_mid )
+ _upper = _mid - 1;
+ else if ( (*p) > *_mid )
+ _lower = _mid + 1;
+ else {
+ _trans += (_mid - _keys);
+ goto _match;
+ }
+ }
+ _keys += _klen;
+ _trans += _klen;
+ }
+
+ _klen = _thttp_machine_parser_headers_range_lengths[cs];
+ if ( _klen > 0 ) {
+ const char *_lower = _keys;
+ const char *_mid;
+ const char *_upper = _keys + (_klen<<1) - 2;
+ while (1) {
+ if ( _upper < _lower )
+ break;
+
+ _mid = _lower + (((_upper-_lower) >> 1) & ~1);
+ if ( (*p) < _mid[0] )
+ _upper = _mid - 2;
+ else if ( (*p) > _mid[1] )
+ _lower = _mid + 2;
+ else {
+ _trans += ((_mid - _keys)>>1);
+ goto _match;
+ }
+ }
+ _trans += _klen;
+ }
+
+_match:
+ _trans = _thttp_machine_parser_headers_indicies[_trans];
+ cs = _thttp_machine_parser_headers_trans_targs[_trans];
+
+ if ( _thttp_machine_parser_headers_trans_actions[_trans] == 0 )
+ goto _again;
+
+ _acts = _thttp_machine_parser_headers_actions + _thttp_machine_parser_headers_trans_actions[_trans];
+ _nacts = (unsigned int) *_acts++;
+ while ( _nacts-- > 0 )
+ {
+ switch ( *_acts++ )
+ {
+ case 0:
+/* #line 92 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Dummy_t *header = thttp_header_Dummy_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+
+ //TSK_DEBUG_WARN("parse_header_Accept NOT IMPLEMENTED. Will be added as Dummy header.");
+ }
+ break;
+ case 1:
+/* #line 101 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Dummy_t *header = thttp_header_Dummy_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+
+ //TSK_DEBUG_WARN("parse_header_Accept_Charset NOT IMPLEMENTED. Will be added as Dummy header.");
+ }
+ break;
+ case 2:
+/* #line 110 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Dummy_t *header = thttp_header_Dummy_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+
+ //TSK_DEBUG_WARN("parse_header_Accept_Encoding NOT IMPLEMENTED. Will be added as Dummy header.");
+ }
+ break;
+ case 3:
+/* #line 119 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Dummy_t *header = thttp_header_Dummy_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+
+ //TSK_DEBUG_WARN("parse_header_Accept_Language NOT IMPLEMENTED. Will be added as Dummy header.");
+ }
+ break;
+ case 4:
+/* #line 128 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Dummy_t *header = thttp_header_Dummy_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+
+ //TSK_DEBUG_WARN("parse_header_Allow NOT IMPLEMENTED. Will be added as Dummy header.");
+ }
+ break;
+ case 5:
+/* #line 137 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Authorization_t *header = thttp_header_Authorization_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+ }
+ break;
+ case 6:
+/* #line 144 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Dummy_t *header = thttp_header_Dummy_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+
+ //TSK_DEBUG_WARN("parse_header_Cache_Control NOT IMPLEMENTED. Will be added as Dummy header.");
+ }
+ break;
+ case 7:
+/* #line 153 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Dummy_t *header = thttp_header_Dummy_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+
+ //TSK_DEBUG_WARN("parse_header_Connection NOT IMPLEMENTED. Will be added as Dummy header.");
+ }
+ break;
+ case 8:
+/* #line 162 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Dummy_t *header = thttp_header_Dummy_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+
+ //TSK_DEBUG_WARN("parse_header_Content_Encoding NOT IMPLEMENTED. Will be added as Dummy header.");
+ }
+ break;
+ case 9:
+/* #line 171 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Dummy_t *header = thttp_header_Dummy_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+
+ //TSK_DEBUG_WARN("parse_header_Content_Language NOT IMPLEMENTED. Will be added as Dummy header.");
+ }
+ break;
+ case 10:
+/* #line 180 "./ragel/thttp_parser_header.rl" */
+ {
+ if(!message->Content_Length){
+ message->Content_Length = thttp_header_Content_Length_parse(state->tag_start, (state->tag_end-state->tag_start));
+ }
+ else{
+ thttp_header_Dummy_t *header = thttp_header_Dummy_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+ //TSK_DEBUG_WARN("The message already have 'Content-Length' header.");
+ }
+ }
+ break;
+ case 11:
+/* #line 193 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Dummy_t *header = thttp_header_Dummy_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+
+ //TSK_DEBUG_WARN("parse_header_Content_Location NOT IMPLEMENTED. Will be added as Dummy header.");
+ }
+ break;
+ case 12:
+/* #line 202 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Dummy_t *header = thttp_header_Dummy_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+
+ //TSK_DEBUG_WARN("parse_header_Content_MD5 NOT IMPLEMENTED. Will be added as Dummy header.");
+ }
+ break;
+ case 13:
+/* #line 211 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Dummy_t *header = thttp_header_Dummy_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+
+ //TSK_DEBUG_WARN("parse_header_Content_Range NOT IMPLEMENTED. Will be added as Dummy header.");
+ }
+ break;
+ case 14:
+/* #line 220 "./ragel/thttp_parser_header.rl" */
+ {
+ if(!message->Content_Type){
+ message->Content_Type = thttp_header_Content_Type_parse(state->tag_start, (state->tag_end-state->tag_start));
+ }
+ else{
+ thttp_header_Dummy_t *header = thttp_header_Dummy_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+ //TSK_DEBUG_WARN("The message already have 'Content-Type' header.");
+ }
+ }
+ break;
+ case 15:
+/* #line 233 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Dummy_t *header = thttp_header_Dummy_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+
+ //TSK_DEBUG_WARN("parse_header_Date NOT IMPLEMENTED. Will be added as Dummy header.");
+ }
+ break;
+ case 16:
+/* #line 242 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_ETag_t *header = thttp_header_ETag_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+
+ //TSK_DEBUG_WARN("parse_header_Expires NOT IMPLEMENTED. Will be added as Dummy header.");
+ }
+ break;
+ case 17:
+/* #line 251 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Dummy_t *header = thttp_header_Dummy_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+
+ //TSK_DEBUG_WARN("parse_header_Expect NOT IMPLEMENTED. Will be added as Dummy header.");
+ }
+ break;
+ case 18:
+/* #line 260 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Dummy_t *header = thttp_header_Dummy_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+
+ //TSK_DEBUG_WARN("parse_header_Expires NOT IMPLEMENTED. Will be added as Dummy header.");
+ }
+ break;
+ case 19:
+/* #line 269 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Dummy_t *header = thttp_header_Dummy_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+
+ //TSK_DEBUG_WARN("parse_header_From NOT IMPLEMENTED. Will be added as Dummy header.");
+ }
+ break;
+ case 20:
+/* #line 278 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Dummy_t *header = thttp_header_Dummy_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+
+ //TSK_DEBUG_WARN("parse_header_Host NOT IMPLEMENTED. Will be added as Dummy header.");
+ }
+ break;
+ case 21:
+/* #line 287 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Dummy_t *header = thttp_header_Dummy_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+
+ //TSK_DEBUG_WARN("parse_header_If_Match NOT IMPLEMENTED. Will be added as Dummy header.");
+ }
+ break;
+ case 22:
+/* #line 296 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Dummy_t *header = thttp_header_Dummy_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+
+ //TSK_DEBUG_WARN("parse_header_If_Modified_Since NOT IMPLEMENTED. Will be added as Dummy header.");
+ }
+ break;
+ case 23:
+/* #line 305 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Dummy_t *header = thttp_header_Dummy_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+
+ //TSK_DEBUG_WARN("parse_header_If_None_Match NOT IMPLEMENTED. Will be added as Dummy header.");
+ }
+ break;
+ case 24:
+/* #line 314 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Dummy_t *header = thttp_header_Dummy_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+
+ //TSK_DEBUG_WARN("parse_header_If_Range NOT IMPLEMENTED. Will be added as Dummy header.");
+ }
+ break;
+ case 25:
+/* #line 323 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Dummy_t *header = thttp_header_Dummy_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+
+ //TSK_DEBUG_WARN("parse_header_If_Unmodified_Since NOT IMPLEMENTED. Will be added as Dummy header.");
+ }
+ break;
+ case 26:
+/* #line 332 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Dummy_t *header = thttp_header_Dummy_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+
+ //TSK_DEBUG_WARN("parse_header_Last_Modified NOT IMPLEMENTED. Will be added as Dummy header.");
+ }
+ break;
+ case 27:
+/* #line 341 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Dummy_t *header = thttp_header_Dummy_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+
+ //TSK_DEBUG_WARN("parse_header_Max_Forwards NOT IMPLEMENTED. Will be added as Dummy header.");
+ }
+ break;
+ case 28:
+/* #line 350 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Dummy_t *header = thttp_header_Dummy_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+
+ //TSK_DEBUG_WARN("parse_header_Pragma NOT IMPLEMENTED. Will be added as Dummy header.");
+ }
+ break;
+ case 29:
+/* #line 359 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Proxy_Authenticate_t *header = thttp_header_Proxy_Authenticate_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+ }
+ break;
+ case 30:
+/* #line 366 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Proxy_Authorization_t *header = thttp_header_Proxy_Authorization_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+ }
+ break;
+ case 31:
+/* #line 373 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Dummy_t *header = thttp_header_Dummy_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+
+ //TSK_DEBUG_WARN("parse_header_Range NOT IMPLEMENTED. Will be added as Dummy header.");
+ }
+ break;
+ case 32:
+/* #line 382 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Dummy_t *header = thttp_header_Dummy_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+
+ //TSK_DEBUG_WARN("parse_header_Referer NOT IMPLEMENTED. Will be added as Dummy header.");
+ }
+ break;
+ case 33:
+/* #line 391 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Dummy_t *header = thttp_header_Dummy_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+
+ //TSK_DEBUG_WARN("parse_header_TE NOT IMPLEMENTED. Will be added as Dummy header.");
+ }
+ break;
+ case 34:
+/* #line 400 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Dummy_t *header = thttp_header_Dummy_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+
+ //TSK_DEBUG_WARN("parse_header_Trailer NOT IMPLEMENTED. Will be added as Dummy header.");
+ }
+ break;
+ case 35:
+/* #line 409 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Transfer_Encoding_t *header = thttp_header_Transfer_Encoding_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+
+ //TSK_DEBUG_WARN("parse_header_Trailer NOT IMPLEMENTED. Will be added as Dummy header.");
+ }
+ break;
+ case 36:
+/* #line 418 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Dummy_t *header = thttp_header_Dummy_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+
+ //TSK_DEBUG_WARN("parse_header_Upgrade NOT IMPLEMENTED. Will be added as Dummy header.");
+ }
+ break;
+ case 37:
+/* #line 427 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Dummy_t *header = thttp_header_Dummy_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+
+ //TSK_DEBUG_WARN("parse_header_User_Agent NOT IMPLEMENTED. Will be added as Dummy header.");
+ }
+ break;
+ case 38:
+/* #line 436 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Dummy_t *header = thttp_header_Dummy_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+
+ //TSK_DEBUG_WARN("parse_header_Via NOT IMPLEMENTED. Will be added as Dummy header.");
+ }
+ break;
+ case 39:
+/* #line 445 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Dummy_t *header = thttp_header_Dummy_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+
+ //TSK_DEBUG_WARN("parse_header_Warning NOT IMPLEMENTED. Will be added as Dummy header.");
+ }
+ break;
+ case 40:
+/* #line 454 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_WWW_Authenticate_t *header = thttp_header_WWW_Authenticate_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+ }
+ break;
+ case 41:
+/* #line 461 "./ragel/thttp_parser_header.rl" */
+ {
+ thttp_header_Dummy_t *header = thttp_header_Dummy_parse(state->tag_start, (state->tag_end-state->tag_start));
+ ADD_HEADER(header);
+
+ //TSK_DEBUG_WARN("parse_header_extension_header NOT IMPLEMENTED. Will be added as Dummy header.");
+ }
+ break;
+/* #line 2575 "./src/parsers/thttp_parser_header.c" */
+ }
+ }
+
+_again:
+ if ( cs == 0 )
+ goto _out;
+ if ( ++p != pe )
+ goto _resume;
+ _test_eof: {}
+ _out: {}
+ }
+
+/* #line 487 "./ragel/thttp_parser_header.rl" */
+
+ return ( cs >=
+/* #line 2591 "./src/parsers/thttp_parser_header.c" */
+577
+/* #line 488 "./ragel/thttp_parser_header.rl" */
+ ) ? 0 : -1;
+}
diff --git a/tinyHTTP/src/parsers/thttp_parser_message.c b/tinyHTTP/src/parsers/thttp_parser_message.c
new file mode 100644
index 0000000..378f774
--- /dev/null
+++ b/tinyHTTP/src/parsers/thttp_parser_message.c
@@ -0,0 +1,473 @@
+
+/* #line 1 "./ragel/thttp_parser_message.rl" */
+/*
+* Copyright (C) 2009-2010 Mamadou Diop.
+*
+* Contact: Mamadou Diop <diopmamadou(at)doubango.org>
+*
+* This file is part of Open Source Doubango Framework.
+*
+* DOUBANGO is free software: you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published by
+* the Free Software Foundation, either version 3 of the License, or
+* (at your option) any later version.
+*
+* DOUBANGO is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with DOUBANGO.
+*
+*/
+
+/**@file thttp_parser_message.c
+ * @brief HTTP parser.
+ *
+ * @author Mamadou Diop <diopmamadou(at)doubango.org>
+ *
+ * @date Created: Sat Nov 8 16:54:58 2009 mdiop
+ */
+#include "tinyhttp/parsers/thttp_parser_message.h"
+#include "tinyhttp/parsers/thttp_parser_header.h"
+
+#include "tinyhttp/parsers/thttp_parser_url.h"
+
+#include "tsk_debug.h"
+#include "tsk_memory.h"
+
+static void thttp_message_parser_execute(tsk_ragel_state_t *state, thttp_message_t *message, tsk_bool_t extract_content);
+static void thttp_message_parser_init(tsk_ragel_state_t *state);
+static void thttp_message_parser_eoh(tsk_ragel_state_t *state, thttp_message_t *message, tsk_bool_t extract_content);
+
+/***********************************
+* Ragel state machine.
+*/
+
+/* #line 165 "./ragel/thttp_parser_message.rl" */
+
+
+
+/* Regel data */
+
+/* #line 55 "./src/parsers/thttp_parser_message.c" */
+static const char _thttp_machine_parser_message_actions[] = {
+ 0, 1, 0, 1, 1, 1, 2, 1,
+ 3, 1, 4, 1, 5, 1, 6, 1,
+ 7, 2, 0, 5, 2, 6, 0
+};
+
+static const unsigned char _thttp_machine_parser_message_key_offsets[] = {
+ 0, 0, 16, 31, 35, 47, 50, 50,
+ 51, 53, 55, 57, 59, 60, 62, 65,
+ 67, 70, 71, 72, 73, 74, 75, 76,
+ 93, 110, 127, 141, 143, 146, 148, 151,
+ 153, 155, 157, 158, 174, 190, 196, 202
+};
+
+static const char _thttp_machine_parser_message_trans_keys[] = {
+ 33, 37, 39, 72, 104, 126, 42, 43,
+ 45, 46, 48, 57, 65, 90, 95, 122,
+ 32, 33, 37, 39, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 65,
+ 90, 97, 122, 9, 32, 43, 58, 45,
+ 46, 48, 57, 65, 90, 97, 122, 9,
+ 32, 58, 32, 72, 104, 84, 116, 84,
+ 116, 80, 112, 47, 48, 57, 46, 48,
+ 57, 48, 57, 13, 48, 57, 10, 13,
+ 13, 10, 13, 10, 32, 33, 37, 39,
+ 84, 116, 126, 42, 43, 45, 46, 48,
+ 57, 65, 90, 95, 122, 32, 33, 37,
+ 39, 84, 116, 126, 42, 43, 45, 46,
+ 48, 57, 65, 90, 95, 122, 32, 33,
+ 37, 39, 80, 112, 126, 42, 43, 45,
+ 46, 48, 57, 65, 90, 95, 122, 32,
+ 33, 37, 39, 47, 126, 42, 43, 45,
+ 57, 65, 90, 95, 122, 48, 57, 46,
+ 48, 57, 48, 57, 32, 48, 57, 48,
+ 57, 48, 57, 48, 57, 32, 13, 37,
+ 60, 62, 96, 127, 0, 8, 10, 31,
+ 34, 35, 91, 94, 123, 125, 13, 37,
+ 60, 62, 96, 127, 0, 8, 10, 31,
+ 34, 35, 91, 94, 123, 125, 48, 57,
+ 65, 70, 97, 102, 48, 57, 65, 70,
+ 97, 102, 0
+};
+
+static const char _thttp_machine_parser_message_single_lengths[] = {
+ 0, 6, 5, 0, 4, 3, 0, 1,
+ 2, 2, 2, 2, 1, 0, 1, 0,
+ 1, 1, 1, 1, 1, 1, 1, 7,
+ 7, 7, 6, 0, 1, 0, 1, 0,
+ 0, 0, 1, 6, 6, 0, 0, 0
+};
+
+static const char _thttp_machine_parser_message_range_lengths[] = {
+ 0, 5, 5, 2, 4, 0, 0, 0,
+ 0, 0, 0, 0, 0, 1, 1, 1,
+ 1, 0, 0, 0, 0, 0, 0, 5,
+ 5, 5, 4, 1, 1, 1, 1, 1,
+ 1, 1, 0, 5, 5, 3, 3, 0
+};
+
+static const unsigned char _thttp_machine_parser_message_index_offsets[] = {
+ 0, 0, 12, 23, 26, 35, 39, 40,
+ 42, 45, 48, 51, 54, 56, 58, 61,
+ 63, 66, 68, 70, 72, 74, 76, 78,
+ 91, 104, 117, 128, 130, 133, 135, 138,
+ 140, 142, 144, 146, 158, 170, 174, 178
+};
+
+static const char _thttp_machine_parser_message_indicies[] = {
+ 0, 0, 0, 2, 2, 0, 0, 0,
+ 0, 0, 0, 1, 3, 4, 4, 4,
+ 4, 4, 4, 4, 4, 4, 1, 5,
+ 5, 1, 6, 6, 7, 8, 7, 7,
+ 7, 7, 1, 6, 6, 8, 1, 9,
+ 10, 9, 11, 11, 1, 12, 12, 1,
+ 13, 13, 1, 14, 14, 1, 15, 1,
+ 16, 1, 17, 16, 1, 18, 1, 19,
+ 18, 1, 20, 1, 22, 21, 24, 23,
+ 25, 1, 27, 26, 28, 1, 3, 4,
+ 4, 4, 29, 29, 4, 4, 4, 4,
+ 4, 4, 1, 3, 4, 4, 4, 30,
+ 30, 4, 4, 4, 4, 4, 4, 1,
+ 3, 4, 4, 4, 31, 31, 4, 4,
+ 4, 4, 4, 4, 1, 3, 4, 4,
+ 4, 32, 4, 4, 4, 4, 4, 1,
+ 33, 1, 34, 33, 1, 35, 1, 36,
+ 35, 1, 37, 1, 38, 1, 39, 1,
+ 40, 1, 42, 43, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 41, 45, 46,
+ 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 44, 47, 47, 47, 1, 44, 44,
+ 44, 1, 48, 0
+};
+
+static const char _thttp_machine_parser_message_trans_targs[] = {
+ 2, 0, 23, 3, 2, 4, 5, 4,
+ 6, 7, 8, 9, 10, 11, 12, 13,
+ 14, 15, 16, 17, 18, 19, 22, 19,
+ 20, 21, 19, 22, 39, 24, 25, 26,
+ 27, 28, 29, 30, 31, 32, 33, 34,
+ 35, 36, 17, 37, 36, 17, 37, 38,
+ 39
+};
+
+static const char _thttp_machine_parser_message_trans_actions[] = {
+ 1, 0, 1, 3, 0, 1, 0, 0,
+ 0, 0, 5, 1, 0, 0, 0, 0,
+ 0, 0, 0, 7, 0, 1, 0, 0,
+ 0, 0, 20, 13, 15, 0, 0, 0,
+ 0, 0, 0, 0, 7, 1, 0, 0,
+ 9, 1, 17, 1, 0, 11, 0, 0,
+ 0
+};
+
+static const int thttp_machine_parser_message_start = 1;
+static const int thttp_machine_parser_message_first_final = 39;
+static const int thttp_machine_parser_message_error = 0;
+
+static const int thttp_machine_parser_message_en_main = 1;
+
+
+/* #line 170 "./ragel/thttp_parser_message.rl" */
+
+/** Parses raw HTTP buffer.
+ *
+ * @param state Ragel state containing the buffer references.
+ * @param result @ref thttp_message_t object representing the raw buffer.
+ * @param extract_content Indicates wheteher to parse the message content or not. If set to true, then
+ * only headers will be parsed.
+ *
+ * @retval Zero if succeed and non-zero error code otherwise.
+**/
+int thttp_message_parse(tsk_ragel_state_t *state, thttp_message_t **result, tsk_bool_t extract_content)
+{
+ if(!state || state->pe <= state->p){
+ return -1;
+ }
+
+ if(!*result){
+ *result = thttp_message_create();
+ }
+
+ /* Ragel init */
+ thttp_message_parser_init(state);
+
+ /*
+ * State mechine execution.
+ */
+ thttp_message_parser_execute(state, *result, extract_content);
+
+ /* Check result */
+
+ if( state->cs <
+/* #line 208 "./src/parsers/thttp_parser_message.c" */
+39
+/* #line 200 "./ragel/thttp_parser_message.rl" */
+ ){
+ TSK_DEBUG_ERROR("Failed to parse HTTP message.");
+ TSK_OBJECT_SAFE_FREE(*result);
+ return -2;
+ }
+ return 0;
+}
+
+
+static void thttp_message_parser_init(tsk_ragel_state_t *state)
+{
+ int cs = 0;
+
+ /* Regel machine initialization. */
+
+/* #line 226 "./src/parsers/thttp_parser_message.c" */
+ {
+ cs = thttp_machine_parser_message_start;
+ }
+
+/* #line 215 "./ragel/thttp_parser_message.rl" */
+
+ state->cs = cs;
+}
+
+static void thttp_message_parser_execute(tsk_ragel_state_t *state, thttp_message_t *message, tsk_bool_t extract_content)
+{
+ int cs = state->cs;
+ const char *p = state->p;
+ const char *pe = state->pe;
+ const char *eof = state->eof;
+
+
+/* #line 244 "./src/parsers/thttp_parser_message.c" */
+ {
+ int _klen;
+ unsigned int _trans;
+ const char *_acts;
+ unsigned int _nacts;
+ const char *_keys;
+
+ if ( p == pe )
+ goto _test_eof;
+ if ( cs == 0 )
+ goto _out;
+_resume:
+ _keys = _thttp_machine_parser_message_trans_keys + _thttp_machine_parser_message_key_offsets[cs];
+ _trans = _thttp_machine_parser_message_index_offsets[cs];
+
+ _klen = _thttp_machine_parser_message_single_lengths[cs];
+ if ( _klen > 0 ) {
+ const char *_lower = _keys;
+ const char *_mid;
+ const char *_upper = _keys + _klen - 1;
+ while (1) {
+ if ( _upper < _lower )
+ break;
+
+ _mid = _lower + ((_upper-_lower) >> 1);
+ if ( (*p) < *_mid )
+ _upper = _mid - 1;
+ else if ( (*p) > *_mid )
+ _lower = _mid + 1;
+ else {
+ _trans += (_mid - _keys);
+ goto _match;
+ }
+ }
+ _keys += _klen;
+ _trans += _klen;
+ }
+
+ _klen = _thttp_machine_parser_message_range_lengths[cs];
+ if ( _klen > 0 ) {
+ const char *_lower = _keys;
+ const char *_mid;
+ const char *_upper = _keys + (_klen<<1) - 2;
+ while (1) {
+ if ( _upper < _lower )
+ break;
+
+ _mid = _lower + (((_upper-_lower) >> 1) & ~1);
+ if ( (*p) < _mid[0] )
+ _upper = _mid - 2;
+ else if ( (*p) > _mid[1] )
+ _lower = _mid + 2;
+ else {
+ _trans += ((_mid - _keys)>>1);
+ goto _match;
+ }
+ }
+ _trans += _klen;
+ }
+
+_match:
+ _trans = _thttp_machine_parser_message_indicies[_trans];
+ cs = _thttp_machine_parser_message_trans_targs[_trans];
+
+ if ( _thttp_machine_parser_message_trans_actions[_trans] == 0 )
+ goto _again;
+
+ _acts = _thttp_machine_parser_message_actions + _thttp_machine_parser_message_trans_actions[_trans];
+ _nacts = (unsigned int) *_acts++;
+ while ( _nacts-- > 0 )
+ {
+ switch ( *_acts++ )
+ {
+ case 0:
+/* #line 49 "./ragel/thttp_parser_message.rl" */
+ {
+ state->tag_start = p;
+ }
+ break;
+ case 1:
+/* #line 54 "./ragel/thttp_parser_message.rl" */
+ {
+ int len;
+ state->tag_end = p;
+ len = (int)(state->tag_end - state->tag_start);
+
+ if(message->type == thttp_unknown){
+ message->type = thttp_request;
+ if(!message->line.request.method){
+ message->line.request.method = tsk_calloc(1, len+1);
+ memcpy(message->line.request.method, state->tag_start, len);
+ }
+ }
+ else{
+ state->cs = thttp_machine_parser_message_error;
+ }
+ }
+ break;
+ case 2:
+/* #line 72 "./ragel/thttp_parser_message.rl" */
+ {
+ int len;
+ state->tag_end = p;
+ len = (int)(state->tag_end - state->tag_start);
+
+ if(!message->line.request.url){
+ message->line.request.url = thttp_url_parse(state->tag_start, (tsk_size_t)len);
+ }
+ }
+ break;
+ case 3:
+/* #line 83 "./ragel/thttp_parser_message.rl" */
+ {
+ int len;
+ state->tag_end = p;
+ len = (int)(state->tag_end - state->tag_start);
+
+ if(!message->http_version){
+ message->http_version = tsk_calloc(1, len+1);
+ memcpy(message->http_version, state->tag_start, len);
+ }
+ }
+ break;
+ case 4:
+/* #line 95 "./ragel/thttp_parser_message.rl" */
+ {
+ int len;
+ state->tag_end = p;
+ len = (int)(state->tag_end - state->tag_start);
+
+ if(message->type == thttp_unknown){
+ message->type = thttp_response;
+ message->line.response.status_code = atoi(state->tag_start);
+ }
+ else{
+ state->cs = thttp_machine_parser_message_error;
+ }
+ }
+ break;
+ case 5:
+/* #line 110 "./ragel/thttp_parser_message.rl" */
+ {
+ int len;
+ state->tag_end = p;
+ len = (int)(state->tag_end - state->tag_start);
+
+ if(!message->line.response.reason_phrase){
+ message->line.response.reason_phrase = tsk_calloc(1, len+1);
+ memcpy(message->line.response.reason_phrase, state->tag_start, len);
+ }
+ }
+ break;
+ case 6:
+/* #line 122 "./ragel/thttp_parser_message.rl" */
+ {
+ int len;
+ state->tag_end = p;
+ len = (int)(state->tag_end - state->tag_start);
+
+ if(thttp_header_parse(state, message)){
+ TSK_DEBUG_ERROR("Failed to parse header - %s", state->tag_start);
+ }
+ else{
+ //TSK_DEBUG_INFO("THTTP_MESSAGE_PARSER::PARSE_HEADER len=%d state=%d", len, state->cs);
+ }
+ }
+ break;
+ case 7:
+/* #line 145 "./ragel/thttp_parser_message.rl" */
+ {
+ state->cs = cs;
+ state->p = p;
+ state->pe = pe;
+ state->eof = eof;
+
+ thttp_message_parser_eoh(state, message, extract_content);
+
+ cs = state->cs;
+ p = state->p;
+ pe = state->pe;
+ eof = state->eof;
+ }
+ break;
+/* #line 428 "./src/parsers/thttp_parser_message.c" */
+ }
+ }
+
+_again:
+ if ( cs == 0 )
+ goto _out;
+ if ( ++p != pe )
+ goto _resume;
+ _test_eof: {}
+ _out: {}
+ }
+
+/* #line 227 "./ragel/thttp_parser_message.rl" */
+
+ state->cs = cs;
+ state->p = p;
+ state->pe = pe;
+ state->eof = eof;
+}
+
+static void thttp_message_parser_eoh(tsk_ragel_state_t *state, thttp_message_t *message, tsk_bool_t extract_content)
+{
+ int cs = state->cs;
+ const char *p = state->p;
+ const char *pe = state->pe;
+ const char *eof = state->eof;
+
+ if(extract_content && message){
+ uint32_t clen = THTTP_MESSAGE_CONTENT_LENGTH(message);
+ if(clen){
+ if((p + clen)<pe && !message->Content){
+ message->Content = tsk_buffer_create((p+1), clen);
+ p = (p + clen);
+ }
+ else{
+ p = (pe - 1);
+ }
+ }
+ }
+ //%%write eof;
+
+ state->cs = cs;
+ state->p = p;
+ state->pe = pe;
+ state->eof = eof;
+}
diff --git a/tinyHTTP/src/parsers/thttp_parser_url.c b/tinyHTTP/src/parsers/thttp_parser_url.c
new file mode 100644
index 0000000..f307f64
--- /dev/null
+++ b/tinyHTTP/src/parsers/thttp_parser_url.c
@@ -0,0 +1,484 @@
+
+/* #line 1 "./ragel/thttp_parser_url.rl" */
+/*
+* Copyright (C) 2009-2010 Mamadou Diop.
+*
+* Contact: Mamadou Diop <diopmamadou(at)doubango.org>
+*
+* This file is part of Open Source Doubango Framework.
+*
+* DOUBANGO is free software: you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published by
+* the Free Software Foundation, either version 3 of the License, or
+* (at your option) any later version.
+*
+* DOUBANGO is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with DOUBANGO.
+*
+*/
+
+/**@file thttp_parser_url.c
+ * @brief HTTP/HTTPS URL parser.
+ *
+ * @author Mamadou Diop <diopmamadou(at)doubango.org>
+ *
+ * @date Created: Sat Nov 8 16:54:58 2009 mdiop
+ */
+#include "tinyhttp/parsers/thttp_parser_url.h"
+
+#include "tsk_string.h"
+#include "tsk_memory.h"
+#include "tsk_debug.h"
+
+/***********************************
+* Ragel state machine.
+*/
+
+/* #line 88 "./ragel/thttp_parser_url.rl" */
+
+
+/**@ingroup thttp_url_group
+* Parses a HTTP/HTTPS url.
+* @param urlstring A pointer to a valid url string. If the port is missing, then it's default value will be 443 if
+* the scheme is 'https' and 80 otherwise.<br>
+* @param length The length of the url string.
+* @retval A well-defined object representing the url string.
+*
+* @code
+* thttp_url_t* url = thttp_url_parse("http://www.google.com", tsk_strlen("http://www.google.com"));
+* @endcode
+*
+* @sa @ref thttp_url_tostring<br>@ref thttp_url_serialize
+**/
+thttp_url_t *thttp_url_parse(const char *urlstring, tsk_size_t length)
+{
+ tsk_bool_t have_port = tsk_false;
+ int cs = 0;
+ const char *p = urlstring;
+ const char *pe = p + length;
+ const char *eof = pe;
+
+ const char *ts = 0, *te = 0;
+ int act =0;
+
+ thttp_url_t *url = thttp_url_create(thttp_url_unknown);
+
+ const char *tag_start = 0;
+
+
+/* #line 75 "./src/parsers/thttp_parser_url.c" */
+static const char _thttp_machine_parser_url_actions[] = {
+ 0, 1, 0, 1, 1, 1, 2, 1,
+ 6, 1, 7, 1, 8, 1, 9, 1,
+ 10, 2, 0, 4, 2, 0, 8, 2,
+ 0, 9, 2, 0, 10, 2, 6, 10,
+ 2, 7, 10, 2, 8, 10, 3, 0,
+ 3, 5, 3, 0, 5, 10, 3, 0,
+ 8, 10
+};
+
+static const short _thttp_machine_parser_url_key_offsets[] = {
+ 0, 0, 2, 4, 6, 8, 11, 12,
+ 13, 20, 28, 35, 43, 49, 56, 58,
+ 64, 72, 78, 86, 92, 100, 108, 116,
+ 124, 132, 140, 147, 155, 163, 171, 173,
+ 180, 189, 191, 194, 196, 199, 201, 204,
+ 207, 208, 211, 212, 215, 216, 225, 234,
+ 242, 250, 258, 266, 268, 274, 283, 292,
+ 301, 303, 306, 309, 310, 311, 312, 313,
+ 323, 331, 332, 333, 333, 333, 336, 346,
+ 356, 366
+};
+
+static const char _thttp_machine_parser_url_trans_keys[] = {
+ 72, 104, 84, 116, 84, 116, 80, 112,
+ 58, 83, 115, 47, 47, 91, 48, 57,
+ 65, 90, 97, 122, 45, 46, 48, 57,
+ 65, 90, 97, 122, 45, 48, 57, 65,
+ 90, 97, 122, 45, 46, 48, 57, 65,
+ 90, 97, 122, 48, 57, 65, 90, 97,
+ 122, 45, 48, 57, 65, 90, 97, 122,
+ 48, 57, 48, 57, 65, 90, 97, 122,
+ 45, 46, 48, 57, 65, 90, 97, 122,
+ 48, 57, 65, 90, 97, 122, 45, 46,
+ 48, 57, 65, 90, 97, 122, 48, 57,
+ 65, 90, 97, 122, 45, 46, 48, 57,
+ 65, 90, 97, 122, 45, 46, 48, 57,
+ 65, 90, 97, 122, 45, 46, 48, 57,
+ 65, 90, 97, 122, 45, 46, 48, 57,
+ 65, 90, 97, 122, 45, 46, 48, 57,
+ 65, 90, 97, 122, 45, 46, 48, 57,
+ 65, 90, 97, 122, 58, 48, 57, 65,
+ 70, 97, 102, 58, 93, 48, 57, 65,
+ 70, 97, 102, 58, 93, 48, 57, 65,
+ 70, 97, 102, 58, 93, 48, 57, 65,
+ 70, 97, 102, 58, 93, 58, 48, 57,
+ 65, 70, 97, 102, 46, 58, 93, 48,
+ 57, 65, 70, 97, 102, 48, 57, 46,
+ 48, 57, 48, 57, 46, 48, 57, 48,
+ 57, 93, 48, 57, 93, 48, 57, 93,
+ 46, 48, 57, 46, 46, 48, 57, 46,
+ 46, 58, 93, 48, 57, 65, 70, 97,
+ 102, 46, 58, 93, 48, 57, 65, 70,
+ 97, 102, 58, 93, 48, 57, 65, 70,
+ 97, 102, 58, 93, 48, 57, 65, 70,
+ 97, 102, 58, 93, 48, 57, 65, 70,
+ 97, 102, 58, 93, 48, 57, 65, 70,
+ 97, 102, 58, 93, 48, 57, 65, 70,
+ 97, 102, 46, 58, 93, 48, 57, 65,
+ 70, 97, 102, 46, 58, 93, 48, 57,
+ 65, 70, 97, 102, 46, 58, 93, 48,
+ 57, 65, 70, 97, 102, 48, 57, 46,
+ 48, 57, 46, 48, 57, 46, 58, 58,
+ 47, 45, 46, 47, 58, 48, 57, 65,
+ 90, 97, 122, 47, 58, 48, 57, 65,
+ 90, 97, 122, 63, 63, 47, 48, 57,
+ 45, 46, 47, 58, 48, 57, 65, 90,
+ 97, 122, 45, 46, 47, 58, 48, 57,
+ 65, 90, 97, 122, 45, 46, 47, 58,
+ 48, 57, 65, 90, 97, 122, 47, 58,
+ 0
+};
+
+static const char _thttp_machine_parser_url_single_lengths[] = {
+ 0, 2, 2, 2, 2, 3, 1, 1,
+ 1, 2, 1, 2, 0, 1, 0, 0,
+ 2, 0, 2, 0, 2, 2, 2, 2,
+ 2, 2, 1, 2, 2, 2, 2, 1,
+ 3, 0, 1, 0, 1, 0, 1, 1,
+ 1, 1, 1, 1, 1, 3, 3, 2,
+ 2, 2, 2, 2, 0, 3, 3, 3,
+ 0, 1, 1, 1, 1, 1, 1, 4,
+ 2, 1, 1, 0, 0, 1, 4, 4,
+ 4, 2
+};
+
+static const char _thttp_machine_parser_url_range_lengths[] = {
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 3, 3, 3, 3, 3, 3, 1, 3,
+ 3, 3, 3, 3, 3, 3, 3, 3,
+ 3, 3, 3, 3, 3, 3, 0, 3,
+ 3, 1, 1, 1, 1, 1, 1, 1,
+ 0, 1, 0, 1, 0, 3, 3, 3,
+ 3, 3, 3, 0, 3, 3, 3, 3,
+ 1, 1, 1, 0, 0, 0, 0, 3,
+ 3, 0, 0, 0, 0, 1, 3, 3,
+ 3, 0
+};
+
+static const short _thttp_machine_parser_url_index_offsets[] = {
+ 0, 0, 3, 6, 9, 12, 16, 18,
+ 20, 25, 31, 36, 42, 46, 51, 53,
+ 57, 63, 67, 73, 77, 83, 89, 95,
+ 101, 107, 113, 118, 124, 130, 136, 139,
+ 144, 151, 153, 156, 158, 161, 163, 166,
+ 169, 171, 174, 176, 179, 181, 188, 195,
+ 201, 207, 213, 219, 222, 226, 233, 240,
+ 247, 249, 252, 255, 257, 259, 261, 263,
+ 271, 277, 279, 281, 282, 283, 286, 294,
+ 302, 310
+};
+
+static const char _thttp_machine_parser_url_indicies[] = {
+ 0, 0, 1, 2, 2, 1, 3, 3,
+ 1, 4, 4, 1, 5, 6, 6, 1,
+ 7, 1, 8, 1, 11, 9, 10, 10,
+ 1, 12, 13, 14, 15, 15, 1, 12,
+ 15, 15, 15, 1, 12, 16, 15, 15,
+ 15, 1, 15, 17, 17, 1, 18, 17,
+ 17, 17, 1, 19, 1, 20, 17, 17,
+ 1, 12, 21, 22, 15, 15, 1, 23,
+ 17, 17, 1, 12, 24, 25, 15, 15,
+ 1, 26, 17, 17, 1, 12, 24, 27,
+ 15, 15, 1, 12, 24, 15, 15, 15,
+ 1, 12, 21, 28, 15, 15, 1, 12,
+ 21, 15, 15, 15, 1, 12, 13, 29,
+ 15, 15, 1, 12, 13, 15, 15, 15,
+ 1, 31, 30, 30, 30, 1, 33, 34,
+ 32, 32, 32, 1, 33, 34, 35, 35,
+ 35, 1, 33, 34, 36, 36, 36, 1,
+ 33, 34, 1, 38, 37, 30, 30, 1,
+ 39, 33, 34, 40, 32, 32, 1, 41,
+ 1, 42, 43, 1, 44, 1, 45, 46,
+ 1, 47, 1, 34, 48, 1, 34, 49,
+ 1, 34, 1, 45, 50, 1, 45, 1,
+ 42, 51, 1, 42, 1, 39, 33, 34,
+ 52, 35, 35, 1, 39, 33, 34, 36,
+ 36, 36, 1, 54, 34, 53, 53, 53,
+ 1, 56, 34, 55, 55, 55, 1, 56,
+ 34, 57, 57, 57, 1, 56, 34, 58,
+ 58, 58, 1, 56, 34, 1, 59, 53,
+ 53, 1, 39, 56, 34, 60, 55, 55,
+ 1, 39, 56, 34, 61, 57, 57, 1,
+ 39, 56, 34, 58, 58, 58, 1, 62,
+ 1, 39, 63, 1, 39, 64, 1, 39,
+ 1, 38, 1, 65, 1, 66, 1, 18,
+ 67, 68, 69, 17, 17, 17, 1, 68,
+ 69, 15, 17, 17, 1, 71, 70, 73,
+ 72, 74, 75, 76, 77, 1, 12, 16,
+ 68, 69, 78, 15, 15, 1, 12, 16,
+ 68, 69, 79, 15, 15, 1, 12, 16,
+ 68, 69, 15, 15, 15, 1, 68, 69,
+ 1, 0
+};
+
+static const char _thttp_machine_parser_url_trans_targs[] = {
+ 2, 0, 3, 4, 5, 6, 61, 7,
+ 8, 9, 63, 26, 10, 15, 24, 11,
+ 12, 63, 13, 69, 16, 17, 22, 18,
+ 19, 20, 70, 21, 23, 25, 27, 60,
+ 28, 31, 73, 29, 30, 32, 47, 33,
+ 45, 34, 35, 43, 36, 37, 41, 38,
+ 39, 40, 42, 44, 46, 48, 56, 49,
+ 52, 50, 51, 53, 54, 55, 57, 58,
+ 59, 62, 7, 64, 65, 14, 66, 67,
+ 66, 67, 68, 68, 65, 69, 71, 72
+};
+
+static const char _thttp_machine_parser_url_trans_actions[] = {
+ 1, 0, 0, 0, 0, 0, 0, 3,
+ 0, 38, 42, 17, 0, 0, 0, 0,
+ 0, 15, 0, 26, 0, 0, 0, 0,
+ 0, 0, 15, 0, 0, 0, 0, 0,
+ 0, 0, 15, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 5, 15, 29, 7, 26, 46,
+ 15, 35, 26, 15, 32, 15, 15, 15
+};
+
+static const char _thttp_machine_parser_url_eof_actions[] = {
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 7,
+ 7, 20, 11, 23, 13, 9, 7, 7,
+ 7, 7
+};
+
+static const int thttp_machine_parser_url_start = 1;
+static const int thttp_machine_parser_url_first_final = 63;
+static const int thttp_machine_parser_url_error = 0;
+
+static const int thttp_machine_parser_url_en_main = 1;
+
+
+/* #line 119 "./ragel/thttp_parser_url.rl" */
+
+/* #line 279 "./src/parsers/thttp_parser_url.c" */
+ {
+ cs = thttp_machine_parser_url_start;
+ }
+
+/* #line 120 "./ragel/thttp_parser_url.rl" */
+
+/* #line 286 "./src/parsers/thttp_parser_url.c" */
+ {
+ int _klen;
+ unsigned int _trans;
+ const char *_acts;
+ unsigned int _nacts;
+ const char *_keys;
+
+ if ( p == pe )
+ goto _test_eof;
+ if ( cs == 0 )
+ goto _out;
+_resume:
+ _keys = _thttp_machine_parser_url_trans_keys + _thttp_machine_parser_url_key_offsets[cs];
+ _trans = _thttp_machine_parser_url_index_offsets[cs];
+
+ _klen = _thttp_machine_parser_url_single_lengths[cs];
+ if ( _klen > 0 ) {
+ const char *_lower = _keys;
+ const char *_mid;
+ const char *_upper = _keys + _klen - 1;
+ while (1) {
+ if ( _upper < _lower )
+ break;
+
+ _mid = _lower + ((_upper-_lower) >> 1);
+ if ( (*p) < *_mid )
+ _upper = _mid - 1;
+ else if ( (*p) > *_mid )
+ _lower = _mid + 1;
+ else {
+ _trans += (_mid - _keys);
+ goto _match;
+ }
+ }
+ _keys += _klen;
+ _trans += _klen;
+ }
+
+ _klen = _thttp_machine_parser_url_range_lengths[cs];
+ if ( _klen > 0 ) {
+ const char *_lower = _keys;
+ const char *_mid;
+ const char *_upper = _keys + (_klen<<1) - 2;
+ while (1) {
+ if ( _upper < _lower )
+ break;
+
+ _mid = _lower + (((_upper-_lower) >> 1) & ~1);
+ if ( (*p) < _mid[0] )
+ _upper = _mid - 2;
+ else if ( (*p) > _mid[1] )
+ _lower = _mid + 2;
+ else {
+ _trans += ((_mid - _keys)>>1);
+ goto _match;
+ }
+ }
+ _trans += _klen;
+ }
+
+_match:
+ _trans = _thttp_machine_parser_url_indicies[_trans];
+ cs = _thttp_machine_parser_url_trans_targs[_trans];
+
+ if ( _thttp_machine_parser_url_trans_actions[_trans] == 0 )
+ goto _again;
+
+ _acts = _thttp_machine_parser_url_actions + _thttp_machine_parser_url_trans_actions[_trans];
+ _nacts = (unsigned int) *_acts++;
+ while ( _nacts-- > 0 )
+ {
+ switch ( *_acts++ )
+ {
+ case 0:
+/* #line 45 "./ragel/thttp_parser_url.rl" */
+ {
+ tag_start = p;
+ }
+ break;
+ case 1:
+/* #line 50 "./ragel/thttp_parser_url.rl" */
+ { url->scheme = tsk_strdup("http"), url->type = thttp_url_http; }
+ break;
+ case 2:
+/* #line 51 "./ragel/thttp_parser_url.rl" */
+ { url->scheme = tsk_strdup("https"), url->type = thttp_url_https; }
+ break;
+ case 3:
+/* #line 54 "./ragel/thttp_parser_url.rl" */
+ { url->host_type = url->host_type = thttp_host_ipv4; }
+ break;
+ case 4:
+/* #line 55 "./ragel/thttp_parser_url.rl" */
+ { url->host_type = url->host_type = thttp_host_ipv6; }
+ break;
+ case 5:
+/* #line 56 "./ragel/thttp_parser_url.rl" */
+ { url->host_type = url->host_type = thttp_host_hostname; }
+ break;
+ case 6:
+/* #line 58 "./ragel/thttp_parser_url.rl" */
+ {
+ TSK_PARSER_SET_STRING(url->host);
+ }
+ break;
+ case 7:
+/* #line 62 "./ragel/thttp_parser_url.rl" */
+ {
+ have_port = 1;
+ TSK_PARSER_SET_INT(url->port);
+ }
+ break;
+ case 8:
+/* #line 67 "./ragel/thttp_parser_url.rl" */
+ {
+ TSK_PARSER_SET_STRING(url->hpath);
+ }
+ break;
+ case 10:
+/* #line 75 "./ragel/thttp_parser_url.rl" */
+ {
+ }
+ break;
+/* #line 410 "./src/parsers/thttp_parser_url.c" */
+ }
+ }
+
+_again:
+ if ( cs == 0 )
+ goto _out;
+ if ( ++p != pe )
+ goto _resume;
+ _test_eof: {}
+ if ( p == eof )
+ {
+ const char *__acts = _thttp_machine_parser_url_actions + _thttp_machine_parser_url_eof_actions[cs];
+ unsigned int __nacts = (unsigned int) *__acts++;
+ while ( __nacts-- > 0 ) {
+ switch ( *__acts++ ) {
+ case 0:
+/* #line 45 "./ragel/thttp_parser_url.rl" */
+ {
+ tag_start = p;
+ }
+ break;
+ case 6:
+/* #line 58 "./ragel/thttp_parser_url.rl" */
+ {
+ TSK_PARSER_SET_STRING(url->host);
+ }
+ break;
+ case 7:
+/* #line 62 "./ragel/thttp_parser_url.rl" */
+ {
+ have_port = 1;
+ TSK_PARSER_SET_INT(url->port);
+ }
+ break;
+ case 8:
+/* #line 67 "./ragel/thttp_parser_url.rl" */
+ {
+ TSK_PARSER_SET_STRING(url->hpath);
+ }
+ break;
+ case 9:
+/* #line 71 "./ragel/thttp_parser_url.rl" */
+ {
+ TSK_PARSER_SET_STRING(url->search);
+ }
+ break;
+/* #line 457 "./src/parsers/thttp_parser_url.c" */
+ }
+ }
+ }
+
+ _out: {}
+ }
+
+/* #line 121 "./ragel/thttp_parser_url.rl" */
+
+ if( cs <
+/* #line 468 "./src/parsers/thttp_parser_url.c" */
+63
+/* #line 122 "./ragel/thttp_parser_url.rl" */
+ ){
+ TSK_DEBUG_ERROR("Failed to parse HTTP/HTTPS URL.");
+ TSK_OBJECT_SAFE_FREE(url);
+ }
+ else if(!have_port){
+ if(url->type == thttp_url_https){
+ url->port = 443;
+ }
+ else{
+ url->port = 80;
+ }
+ }
+
+ return url;
+}
diff --git a/tinyHTTP/src/thttp.c b/tinyHTTP/src/thttp.c
new file mode 100644
index 0000000..604ebfc
--- /dev/null
+++ b/tinyHTTP/src/thttp.c
@@ -0,0 +1,737 @@
+/*
+* Copyright (C) 2009-2010 Mamadou Diop.
+*
+* Contact: Mamadou Diop <diopmamadou(at)doubango.org>
+*
+* This file is part of Open Source Doubango Framework.
+*
+* DOUBANGO is free software: you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published by
+* the Free Software Foundation, either version 3 of the License, or
+* (at your option) any later version.
+*
+* DOUBANGO is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with DOUBANGO.
+*
+*/
+/**@file thttp.c
+ * @brief HTTP (RFC 2616) and HTTP basic/digest authetication (RFC 2617) implementations.
+ *
+ * @author Mamadou Diop <diopmamadou(at)doubango.org>
+ *
+ * @date Created: Sat Nov 8 16:54:58 2009 mdiop
+ */
+#include "thttp.h"
+
+#include "tinyhttp/thttp_action.h"
+#include "tinyhttp/thttp_event.h"
+
+#include "tinyhttp/thttp_message.h"
+#include "tinyhttp/parsers/thttp_parser_message.h"
+
+#include "tinyhttp/headers/thttp_header_Transfer_Encoding.h"
+
+#include "tinyhttp/thttp_dialog.h"
+
+#include "tnet.h"
+
+#include "tsk_runnable.h"
+#include "tsk_time.h"
+#include "tsk_debug.h"
+#include "tsk_memory.h"
+#include "tsk_string.h"
+
+
+/** @mainpage TinyHTTP API Overview
+* <h1>15 HTTP/HTTPS</h1>
+* <p>
+* The HTTP/HTTPS stack is a basic thread-safe client API and is used in conjunction with the XCAP protocol.
+* Almost all HTTP methods such as OPTIONS, HEAD, GET, DELETE, POST, CONNET, TRACE or PUT … are supported for outgoing requests. Only response messages will be correctly handled by the stack. Requests will be passed to the application layer “as is” and no new connection will be opened.
+* </p>
+* <p>
+* Both IPv4 and IPv6 are supported. If the host name (FQDN) resolution leads to both IPv4 and IPv6 results, then IPv4 will be used by default.
+* </p>
+* <p>
+* When HTTPS is used, then both end-user and mutual authentication modes are supported. For mutual authentication the TLS/SSL certificate files MUST be sets by using @ref THTTP_STACK_SET_TLS_CERTS(CA_FILE_STR, PUB_FILE_STR, PRIV_FILE_STR).
+* </p>
+*
+*
+*
+*
+* <h2>15.1 Initialization</h2>
+* <p>
+* As the HTTP/HTTPS stack depends on the network library (tinyNET), you MUST call @ref tnet_startup() before using any HTTP/Network function (thttp_*).
+* @ref tnet_cleanup() is used to terminate use of network functions.
+* </p>
+*
+*
+* <h2> Create and start the stack</h2>
+* <p>
+* Before starting to used the stack you must create and instance of @ref thttp_stack_handle_t and start the stack.
+* The example below demonstrates how to create and start a HTTP/HTTPS stack.
+* </p>
+*
+* @code
+int ret;
+
+// Callback function used for test
+int test_stack_callback(const thttp_event_t *httpevent)
+{
+ thttp_session_id_t id = thttp_session_get_id(httpevent->session);
+ switch(httpevent->type){
+ case thttp_event_message: // New HTTP message
+ {
+ TSK_DEBUG_INFO("sid=%llu", id);
+ if(THTTP_MESSAGE_IS_RESPONSE(httpevent->message)){
+ const thttp_header_ETag_t* etag;
+ TSK_DEBUG_INFO("=== %d ==> %s", THTTP_RESPONSE_CODE(httpevent->message), THTTP_MESSAGE_CONTENT(httpevent->message));
+ // You can use
+ if((etag = (const thttp_header_ETag_t*)thttp_message_get_header(httpevent->message, thttp_htype_ETag))){
+ TSK_DEBUG_INFO("Etag=%s", etag->value);
+ }
+ }
+ break;
+ }
+
+ case thttp_event_auth_failed:
+ {
+ TSK_DEBUG_INFO("auth failed sid=%llu", id);
+ break;
+ }
+
+ case thttp_event_closed: // HTTP connection closed (informational)
+ {
+ TSK_DEBUG_INFO("closed sid=%llu", id);
+ break;
+ }
+
+ case thttp_event_transport_error: // HTTP connection closed (informational)
+ {
+ TSK_DEBUG_INFO("Transport sid=%llu", id);
+ break;
+ }
+ }
+
+ return 0;
+}
+
+// Creates the HTTP/HTTPS stacks
+thttp_stack_handle_t* stack = thttp_stack_create(test_stack_callback,
+ // TLS certificates (not mandatory) to show how parameters are passed to the stack
+ THTTP_STACK_SET_TLS_CERTS("C:\\tls\\ca.pki-crt.pem", "C:\\tls\\pub-crt.pem", "C:\\tls\\pub-key.pem"),
+ THTTP_STACK_SET_NULL() // MUST always be present
+ );
+
+// Starts the HTTP stack
+if((ret = thttp_stack_start(stack))){
+ TSK_DEBUG_ERROR("Failed to start the HTTP/HTTPS stack.");
+ goto bail;
+}
+* @endcode
+*
+* A stack is a well-defined object and must be destroyed by using @a TSK_OBJECT_SAFE_FREE() macro.
+*
+*
+*
+*<h2>15.2 Sessions</h2>
+* <p>
+* A session could be seen as a peer2peer persistent connection and will be maintained by the stack as long as you wish to keep the network connection opened (not explicitly destroyed). <br>
+* If the connection is closed by the remote peer, then the stack will automatically reopen it when you try to send a new HTTP/HTTP request. <br>
+* The network connection will be definitely closed when the session is destroyed.
+* </p>
+* <p>
+* As the connection is persistent, then you can send multiple requests without waiting for each response. This mode is called “Pipelining” and is defined as per RFC 2616 section 8.1.2.2.
+* </p>
+* <p>
+* You should not pipeline requests using non-idempotent methods or non-idempotent sequences of methods. This means that you can safely pipeline GET or HEAD methods but should not with PUT or POST requests. Only HTTP version 1.1(or later) requests should be pipelined.<br>
+* </p>
+* <p>
+* To avoid pipelining, you must use a session object (@ref thttp_session_handle_t*) only once to send a single request.
+* </p>
+* <p>
+* The example below shows how to create and configure a session.
+* </p>
+*
+* @code
+
+// creates session
+thttp_session_handle_t * session = thttp_session_create(stack,
+ // session-level credentials
+THTTP_SESSION_SET_CRED("ali baba", "open sesame"),
+
+ // session-level options
+ THTTP_SESSION_SET_OPTION(THTTP_SESSION_OPTION_TIMEOUT, "6000"),
+
+ // session-level headers
+ THTTP_SESSION_SET_HEADER("Pragma", "No-Cache"),
+ THTTP_SESSION_SET_HEADER("Connection", "Keep-Alive"),
+ THTTP_SESSION_SET_HEADER("User-Agent", "doubango 1.0"),
+
+ THTTP_SESSION_SET_NULL());// MUST always be present
+
+* @endcode
+*
+* A session is a well-defined object and must be destroyed by using @a TSK_OBJECT_SAFE_FREE() macro.
+*
+*
+*
+* <h3>15.2.1 Credentials</h3>
+* <p>
+* Both HTTP digest and Basic authentication (RFC 2617) are supported in this version (1.0). The credentials (username and password) should be set when the session is created (@ref thttp_session_create()) or later, by using @ref thttp_session_set(). As credentials are configured at session level, you can use one stack to authenticate against multiple HTTP servers with different domains.
+* </p>
+* <p>
+* The stack will automatically add authorizations (as per RFC 2617) when it is challenged (401/407 responses), this is why you should set credentials before sending any requests which is susceptible to be challenged.
+* </p>
+*
+*
+*
+* <h3>15.2.2 Options</h3>
+* <p>
+* All options shall be set by using @ref THTTP_SESSION_SET_OPTION(id, value) macro. Session-level options will be applied to all underlying requests, unless the request redefines this option.
+* </p>
+*
+*
+*
+* <h3>15.2.3 Headers</h3>
+* <p>
+* All headers shall be set by using @ref THTTP_SESSION_SET_HEADER(name, value) macro. Session-level headers will be added to all underlying requests even if a request redefines this header. This means that if both the request and the session have the same header, then it will be duplicated.<br>
+* <i>Host</i> and <i>Content-Length</i> headers are automatically added by the stack.
+* </p>
+* <p>
+* @ref THTTP_SESSION_UNSET_HEADER() and @ref THTTP_SESSION_SET_HEADER() macros are used to remove or update a previously added session-level header, respectively.
+* </p>
+*
+* <h2>15.3 Requests</h2>
+* <p>
+* A HTTP request is referred to as an “action” and is always associated to a session. There are nine well-know actions you can perform: <b>CONNET</b>, <b>DELETE</b>, <b>GET</b>, <b>HEAD</b>, <b>OPTIONS</b>, <b>PATCH</b>, <b>POST</b>, <b>PUT</b> and <b>TRACE</b>. You can use @ref thttp_action_perform(session, url, method, …) function to send a custom request. All <i>thttp_action_*()</i> functions are non-blocking.<br>
+* </p>
+* <p>
+* All requests are sent in an asynchronous manner and the result (HTTP messages, errors, time out …) will be passed to the callback function.
+* </p>
+*
+* The code below shows how to send HTTP <b>PUT</b> request.
+*
+* @code
+int ret = thttp_action_PUT(session, "http://www.doubango.org",
+ // action-level options
+ THTTP_ACTION_SET_OPTION(THTTP_ACTION_OPTION_TIMEOUT, "2500"),
+
+ // payload
+ THTTP_ACTION_SET_PAYLOAD("Comment allez-vous?", tsk_strlen("Comment allez-vous?")),
+
+ // action-level headers
+ THTTP_ACTION_SET_HEADER("Content-Type", "text/plain"),
+ THTTP_ACTION_SET_HEADER("Expect", "100-continue"),
+
+ THTTP_ACTION_SET_NULL());
+
+* @endcode
+
+* The code below uses HTTP <b>GET</b> request to connect to an IPv6 website
+*
+* @code
+int ret = thttp_action_GET(session, "http://ipv6.google.com",
+ // action-level options
+ THTTP_ACTION_SET_OPTION(THTTP_ACTION_OPTION_TIMEOUT, "4500"),
+
+ THTTP_ACTION_SET_NULL());
+
+* @endcode
+*
+* You can notice that, there is nothing special to do in order to connect to an IPv6 website.
+*
+*
+*
+* <h3>15.3.1 Options</h3>
+* <p>
+* All options shall be set by using @ref THTTP_ACTION_SET_OPTION(id, value) macro.
+* Action-level options and headers are only applied to the current request.
+* In the code, the timeout previously defined by the session has been redefined (from 6000ms to 2500ms).
+* </p>
+*
+* For more information, please visit the website.
+*
+*
+*
+* <h3>15.3.2 Headers</h3>
+* <p>
+* All headers shall be set by using @ref THTTP_ACTION_SET_HEADER(name, value) macro.
+* Action-level headers will only be added to the current request. <i>Host</i> and <i>Content-Length</i> headers are automatically added by the stack.
+* </p>
+
+*/
+
+// KeepAlive : http://www.io.com/~maus/HttpKeepAlive.html
+
+
+/**@defgroup thttp_stack_group HTTP/HTTPS stack
+*/
+
+/* min size of a stream chunck to form a valid HTTP message */
+#define THTTP_MIN_STREAM_CHUNCK_SIZE 0x32
+
+/** Callback function used by the transport layer to alert the stack when new messages come. */
+static int thttp_transport_layer_stream_cb(const tnet_transport_event_t* e)
+{
+ int ret = -1;
+ tsk_ragel_state_t state;
+ thttp_message_t *message = tsk_null;
+ int endOfheaders = -1;
+ const thttp_stack_t *stack = e->callback_data;
+ thttp_dialog_t* dialog = tsk_null;
+ thttp_session_t* session = tsk_null;
+ tsk_bool_t have_all_content = tsk_false;
+
+ tsk_safeobj_lock(stack);
+
+ switch(e->type){
+ case event_data: {
+ break;
+ }
+ case event_closed:
+ // alert all dialogs
+ if((session = thttp_session_get_by_fd(stack->sessions, e->local_fd))){
+ ret = thttp_session_signal_closed(session);
+ }
+ goto bail;
+
+ case event_error:
+ // alert all dialogs
+ if((session = thttp_session_get_by_fd(stack->sessions, e->local_fd))){
+ ret = thttp_session_signal_error(session);
+ }
+ goto bail;
+ case event_connected:
+ default:{
+ tsk_safeobj_unlock(stack);
+ return 0;
+ }
+ }
+
+ /* Gets the associated dialog */
+ if((session = thttp_session_get_by_fd(stack->sessions, e->local_fd))){
+ if(!(dialog = thttp_dialog_get_oldest(session->dialogs))){
+ TSK_DEBUG_ERROR("Failed to found associated dialog.");
+ ret = -5;
+ goto bail;
+ }
+ }
+ else{
+ TSK_DEBUG_ERROR("Failed to found associated session.");
+ ret = -4;
+ goto bail;
+ }
+
+ /* Check if buffer is too big to be valid (have we missed some chuncks?) */
+ //if(TSK_BUFFER_SIZE(buf) >= THTTP_MAX_CONTENT_SIZE){
+ // tsk_buffer_cleanup(dialog->buf);
+ //}
+
+ /* Append new content. */
+ tsk_buffer_append(dialog->buf, e->data, e->size);
+
+ /* Check if we have all HTTP headers. */
+parse_buffer:
+ if((endOfheaders = tsk_strindexOf(TSK_BUFFER_DATA(dialog->buf), TSK_BUFFER_SIZE(dialog->buf), "\r\n\r\n"/*2CRLF*/)) < 0){
+ TSK_DEBUG_INFO("No all HTTP headers in the TCP buffer.");
+ goto bail;
+ }
+
+ /* If we are here this mean that we have all HTTP headers.
+ * ==> Parse the HTTP message without the content.
+ */
+ tsk_ragel_state_init(&state, TSK_BUFFER_DATA(dialog->buf), endOfheaders + 4/*2CRLF*/);
+ if(!(ret = thttp_message_parse(&state, &message, tsk_false/* do not extract the content */))){
+ const thttp_header_Transfer_Encoding_t* transfer_Encoding;
+
+ /* chunked? */
+ if((transfer_Encoding = (const thttp_header_Transfer_Encoding_t*)thttp_message_get_header(message, thttp_htype_Transfer_Encoding)) && tsk_striequals(transfer_Encoding->encoding, "chunked")){
+ const char* start = (const char*)(TSK_BUFFER_TO_U8(dialog->buf) + (endOfheaders + 4/*2CRLF*/));
+ const char* end = (const char*)(TSK_BUFFER_TO_U8(dialog->buf) + TSK_BUFFER_SIZE(dialog->buf));
+ int index;
+
+ TSK_DEBUG_INFO("CHUNKED transfer.");
+ while(start < end){
+ /* RFC 2616 - 19.4.6 Introduction of Transfer-Encoding */
+ // read chunk-size, chunk-extension (if any) and CRLF
+ tsk_size_t chunk_size = (tsk_size_t)tsk_atox(start);
+ if((index = tsk_strindexOf(start, (end-start), "\r\n")) >=0){
+ start += index + 2/*CRLF*/;
+ }
+ else{
+ TSK_DEBUG_INFO("Parsing chunked data has failed.");
+ break;
+ }
+
+ if(chunk_size == 0 && ((start + 2) <= end) && *start == '\r' && *(start+ 1) == '\n'){
+ int parsed_len = (start - (const char*)(TSK_BUFFER_TO_U8(dialog->buf))) + 2/*CRLF*/;
+ tsk_buffer_remove(dialog->buf, 0, parsed_len);
+ have_all_content = tsk_true;
+ break;
+ }
+
+ thttp_message_append_content(message, start, chunk_size);
+ start += chunk_size + 2/*CRLF*/;
+ }
+ }
+ else{
+ tsk_size_t clen = THTTP_MESSAGE_CONTENT_LENGTH(message); /* MUST have content-length header. */
+ if(clen == 0){ /* No content */
+ tsk_buffer_remove(dialog->buf, 0, (endOfheaders + 4/*2CRLF*/)); /* Remove HTTP headers and CRLF ==> must never happen */
+ have_all_content = tsk_true;
+ }
+ else{ /* There is a content */
+ if((endOfheaders + 4/*2CRLF*/ + clen) > TSK_BUFFER_SIZE(dialog->buf)){ /* There is content but not all the content. */
+ TSK_DEBUG_INFO("No all HTTP content in the TCP buffer.");
+ goto bail;
+ }
+ else{
+ /* Add the content to the message. */
+ thttp_message_add_content(message, tsk_null, TSK_BUFFER_TO_U8(dialog->buf) + endOfheaders + 4/*2CRLF*/, clen);
+ /* Remove HTTP headers, CRLF and the content. */
+ tsk_buffer_remove(dialog->buf, 0, (endOfheaders + 4/*2CRLF*/ + clen));
+ have_all_content = tsk_true;
+ }
+ }
+ }
+ }
+
+ /* Alert the dialog (FSM) */
+ if(message){
+ if(have_all_content){ /* only if we have all data */
+ ret = thttp_dialog_fsm_act(dialog, thttp_atype_i_message, message, tsk_null);
+ /* Parse next chunck */
+ if(TSK_BUFFER_SIZE(dialog->buf) >= THTTP_MIN_STREAM_CHUNCK_SIZE){
+ TSK_OBJECT_SAFE_FREE(message);
+ goto parse_buffer;
+ }
+ }
+ }
+
+bail:
+ TSK_OBJECT_SAFE_FREE(dialog);
+ TSK_OBJECT_SAFE_FREE(session);
+ TSK_OBJECT_SAFE_FREE(message);
+
+ tsk_safeobj_unlock(stack);
+
+ return ret;
+}
+
+/** Internal function used to set values.
+*/
+int __thttp_stack_set(thttp_stack_t *self, va_list* app)
+{
+ thttp_stack_param_type_t curr;
+
+ while((curr = va_arg(*app, thttp_stack_param_type_t)) != thttp_pname_null)
+ {
+ switch(curr)
+ {
+ //
+ // Network
+ //
+ case thttp_pname_local_ip:
+ { /* STR */
+ tsk_strupdate(&self->local_ip, va_arg(*app, const char*));
+ break;
+ }
+ case thttp_pname_local_port:
+ { /* INT */
+ self->local_port = va_arg(*app, int);
+ break;
+ }
+
+ //
+ // TLS
+ //
+ case thttp_pname_tls_certs:
+ { /* A_FILE_STR, PUB_FILE_STR, PRIV_FILE_STR */
+ tsk_strupdate(&self->tls.ca, va_arg(*app, const char*));
+ tsk_strupdate(&self->tls.pbk, va_arg(*app, const char*));
+ tsk_strupdate(&self->tls.pvk, va_arg(*app, const char*));
+ break;
+ }
+
+ //
+ // Userdata
+ //
+ case thttp_pname_userdata:
+ { /* (const void*)USERDATA_PTR */
+ self->userdata = va_arg(*app, const void*);
+ break;
+ }
+
+ default:
+ {
+ TSK_DEBUG_WARN("Found unknown pname.");
+ goto bail;
+ }
+
+ }/* switch */
+ }/* while */
+ return 0;
+
+bail:
+ return -2;
+}
+
+/**@ingroup thttp_stack_group
+* Creates new HTTP/HTTPS stack.
+* @param callback Pointer to the callback function to call when new messages come to the transport layer.
+* Can be set to Null if you don't want to be alerted.
+* @param ... Configuration parameters. You must use @a THTTP_STACK_SET_*() macros to set these parameters.
+* The list of parameters must end with @ref THTTP_STACK_SET_NULL() even if there is no parameter to pass to the stack.<br>
+* @retval A Pointer to the newly created stack if succeed and @a Null otherwise.
+* A stack is a well-defined object.
+*
+* @code
+* thttp_stack_create(callback,
+* THTTP_STACK_SET_*(),
+* THTTP_STACK_SET_NULL());
+* @endcode
+*
+* @sa @ref thttp_stack_set
+*/
+thttp_stack_handle_t *thttp_stack_create(thttp_stack_callback_f callback, ...)
+{
+ thttp_stack_t* stack = tsk_null;
+ va_list ap;
+
+ if(!(stack = tsk_object_new(thttp_stack_def_t))){ /* should never happen */
+ TSK_DEBUG_ERROR("Failed to create new HTTP/HTTPS stack.");
+ return tsk_null;
+ }
+ stack->local_ip = TNET_SOCKET_HOST_ANY;
+ stack->local_port = TNET_SOCKET_PORT_ANY;
+
+ stack->callback = callback;
+ va_start(ap, callback);
+ if(__thttp_stack_set(stack, &ap)){
+ TSK_DEBUG_ERROR("Failed to set user's parameters.");
+ TSK_OBJECT_SAFE_FREE(stack);
+ }
+ va_end(ap);
+
+ return stack;
+}
+
+/**@ingroup thttp_stack_group
+* Starts the stack.
+* @param self A pointer to the stack to start. The stack shall be created using @ref thttp_stack_create().
+* @retval Zero if succeed and non-zero error code otherwise.
+* @sa @ref thttp_stack_stop
+*/
+int thttp_stack_start(thttp_stack_handle_t *self)
+{
+ int ret = -1;
+ thttp_stack_t *stack = self;
+
+ if(!stack){
+ TSK_DEBUG_ERROR("Invalid parameter");
+ return ret;
+ }
+
+ if(stack->started){
+ TSK_DEBUG_WARN("Stack already started");
+ return ret;
+ }
+
+ if(!stack->transport){
+ stack->transport = tnet_transport_create(stack->local_ip, stack->local_port, tnet_socket_type_tcp_ipv46, "HTTP/HTTPS transport");
+ tnet_transport_set_callback(stack->transport, TNET_TRANSPORT_CB_F(thttp_transport_layer_stream_cb), self);
+ }
+
+ if(!(ret = tnet_transport_start(stack->transport))){
+ // Sets TLS certificates
+ if(stack->tls.ca){
+ tsk_strupdate(&stack->transport->tls.ca, stack->tls.ca);
+ tsk_strupdate(&stack->transport->tls.pvk, stack->tls.pvk);
+ tsk_strupdate(&stack->transport->tls.pbk, stack->tls.pbk);
+ }
+ stack->started = tsk_true;
+ }
+ else{
+ TSK_OBJECT_SAFE_FREE(stack->transport);
+ }
+
+ return ret;
+}
+
+/**@ingroup thttp_stack_group
+* Sets the configuration parameters.
+* @param self A pointer to the stack to start. The stack must be create using @ref thttp_stack_create.
+* @param ... Configuration parameters. You must use @a THTTP_STACK_SET_* macros to set these parameters.
+* The list of parameters must end with @ref THTTP_STACK_SET_NULL() even if there is no parameter.<br>
+* @retval A Pointer to the newly created stack if succeed and @a Null otherwise.
+*
+* @code
+* thttp_stack_set(stack,
+* THTTP_STACK_SET_*(),
+* THTTP_STACK_SET_NULL());
+* @endcode
+*/
+int thttp_stack_set(thttp_stack_handle_t *self, ...)
+{
+ if(self){
+ int ret;
+ thttp_stack_t *stack = self;
+
+ va_list ap;
+ va_start(ap, self);
+ ret = __thttp_stack_set(stack, &ap);
+ va_end(ap);
+ return ret;
+ }
+ else{
+ TSK_DEBUG_ERROR("Invalid parameter");
+ return -1;
+ }
+}
+
+/**@ingroup thttp_stack_group
+*/
+const void* thttp_stack_get_userdata(thttp_stack_handle_t *self)
+{
+ thttp_stack_t *stack = self;
+ if(stack){
+ return stack->userdata;
+ }
+ else{
+ TSK_DEBUG_ERROR("Invalid parameter");
+ return tsk_null;
+ }
+}
+
+/**@ingroup thttp_stack_group
+* Stops the stack. The stack must already be started.
+* @param self A pointer to the stack to stop. The stack shall be created using @ref thttp_stack_create.
+* @retval Zero if succeed and non-zero error code otherwise.
+* @sa @ref thttp_stack_start
+*/
+int thttp_stack_stop(thttp_stack_handle_t *self)
+{
+ int ret;
+ thttp_stack_t *stack = self;
+
+ if(!stack){
+ TSK_DEBUG_ERROR("Invalid parameter");
+ return -1;
+ }
+
+ if(!stack->started){
+ TSK_DEBUG_WARN("Stack already stopped");
+ return -2;
+ }
+
+ // FIXME: stop = destroy transport
+ if(1){
+ tsk_list_item_t* item;
+ tsk_list_foreach(item, stack->sessions){
+ thttp_session_closefd((thttp_session_handle_t*)item->data);
+ }
+
+ TSK_OBJECT_SAFE_FREE(stack->transport);
+ stack->started = tsk_false;
+ }
+ else{
+ if(!(ret = tnet_transport_shutdown(stack->transport))){
+ stack->started = tsk_false;
+ }
+ else{
+ TSK_DEBUG_ERROR("Failed to stop the stack");
+ }
+ }
+ return 0;
+}
+
+/** Alerts the user.
+*/
+int thttp_stack_alert(const thttp_stack_t *self, const thttp_event_t* e)
+{
+ if(!self || !e){
+ return -1;
+ }
+
+ if(self->callback){
+ return self->callback(e);
+ }
+ else{
+ return 0;
+ }
+}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+//========================================================
+// HTTP stack object definition
+//
+static tsk_object_t* thttp_stack_ctor(tsk_object_t * self, va_list * app)
+{
+ thttp_stack_t *stack = self;
+ if(stack){
+ tsk_safeobj_init(stack);
+
+ stack->sessions = tsk_list_create();
+ }
+ return self;
+}
+
+static tsk_object_t* thttp_stack_dtor(tsk_object_t * self)
+{
+ thttp_stack_t *stack = self;
+ if(stack){
+ /* TLS */
+ TSK_FREE(stack->tls.ca);
+ TSK_FREE(stack->tls.pbk);
+ TSK_FREE(stack->tls.pvk);
+
+ /* Sessions */
+ tsk_safeobj_lock(stack);
+ TSK_OBJECT_SAFE_FREE(stack->sessions);
+ tsk_safeobj_unlock(stack);
+
+ /* Network */
+ TSK_FREE(stack->local_ip);
+ TSK_OBJECT_SAFE_FREE(stack->transport);
+
+ tsk_safeobj_deinit(stack);
+ }
+ return self;
+}
+
+static const tsk_object_def_t thttp_stack_def_s =
+{
+ sizeof(thttp_stack_t),
+ thttp_stack_ctor,
+ thttp_stack_dtor,
+ tsk_null,
+};
+const tsk_object_def_t *thttp_stack_def_t = &thttp_stack_def_s;
diff --git a/tinyHTTP/src/thttp_action.c b/tinyHTTP/src/thttp_action.c
new file mode 100644
index 0000000..299cdd8
--- /dev/null
+++ b/tinyHTTP/src/thttp_action.c
@@ -0,0 +1,187 @@
+/*
+* Copyright (C) 2009-2010 Mamadou Diop.
+*
+* Contact: Mamadou Diop <diopmamadou(at)doubango.org>
+*
+* This file is part of Open Source Doubango Framework.
+*
+* DOUBANGO is free software: you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published by
+* the Free Software Foundation, either version 3 of the License, or
+* (at your option) any later version.
+*
+* DOUBANGO is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with DOUBANGO.
+*
+*/
+
+/**@file thttp_action.h
+ * @brief HTTP action.
+ *
+ * @author Mamadou Diop <diopmamadou(at)doubango.org>
+ *
+ * @date Created: Sat Nov 8 16:54:58 2009 mdiop
+ */
+#include "tinyhttp/thttp_action.h"
+
+#include "thttp.h"
+
+#include "tsk_debug.h"
+
+/**@defgroup thttp_action_group Sending Requests
+*/
+
+thttp_action_t* thttp_action_create(thttp_action_type_t type, const char* urlstring, const char* method, va_list* app)
+{
+ return tsk_object_new(thttp_action_def_t, type, urlstring, method, app);
+}
+
+
+/**@ingroup thttp_action_group
+* Sends a custom HTTP/HTTPS request.
+* @param session The @a session (or connection) to use.
+* @param urlstring The Request-URI. If the url scheme is 'https', then the default port will be 443, otherwise the port value will be 80.
+* @param method The method to use for the HTTP request (e.g. GET, PUT, DELETE, POST ...).
+* @retval Zero if succeed and non-zero error code otherwise.
+*
+* @code
+thttp_action_perform(session, "http://www.google.com", "GET"
+ // request-level parameters
+ THTTP_ACTION_SET_PARAM("timeout", "6000"),
+
+ // request-level headers
+ THTTP_ACTION_SET_HEADER("Pragma", "No-Cache"),
+ THTTP_ACTION_SET_HEADER("Connection", "Keep-Alive"),
+
+ // close parameters
+ THTTP_ACTION_SET_NULL());
+* @endcode
+* @sa @ref thttp_action_CONNECT<br>@ref thttp_action_DELETE<br>@ref thttp_action_GET<br>@ref thttp_action_HEAD<br>@ref thttp_action_OPTIONS<br>
+* @ref thttp_action_PATCH<br>@ref thttp_action_POST<br>@ref thttp_action_PUT<br>@ref thttp_action_TRACE
+*/
+int thttp_action_perform(thttp_session_handle_t *session, const char* urlstring, const char* method, ...)
+{
+ thttp_session_t* sess = session;
+ va_list ap;
+ thttp_action_t* action;
+ thttp_dialog_t* dialog;
+ int ret = -1;
+
+ if(!sess || !sess->stack || !urlstring || !method){
+ TSK_DEBUG_ERROR("Invalid parameter");
+ return ret;
+ }
+
+ va_start(ap, method);
+ if((action = thttp_action_create(thttp_atype_o_request, urlstring, method, &ap))){
+ if((dialog = thttp_dialog_new(sess))){
+ ret = thttp_dialog_fsm_act(dialog, action->type, tsk_null, action);
+
+ tsk_object_unref(dialog);
+ }
+ else{
+ TSK_DEBUG_ERROR("Failed to create new HTTP/HTTPS dialog.");
+ ret = -2;
+ }
+ TSK_OBJECT_SAFE_FREE(action);
+ }
+ va_end(ap);
+
+ return ret;
+}
+
+
+
+
+//=================================================================================================
+// HTTP action object definition
+//
+static tsk_object_t* thttp_action_ctor(tsk_object_t * self, va_list * app)
+{
+ thttp_action_t *action = self;
+ if(action){
+ va_list* app_2;
+ thttp_action_param_type_t curr;
+
+ action->type = va_arg(*app, thttp_action_type_t);
+ action->url = tsk_strdup(va_arg(*app, const char*));
+ action->method = tsk_strdup(va_arg(*app, const char*));
+ app_2 = va_arg(*app, va_list*);
+
+ action->options = tsk_list_create();
+ action->headers = tsk_list_create();
+
+ if(!app_2){ /* XCAP stack will pass null va_list */
+ goto bail;
+ }
+
+ while((curr = va_arg(*app_2, thttp_action_param_type_t)) != thttp_aptype_null){
+ switch(curr){
+ case thttp_aptype_option:
+ { /* (thttp_action_option_t)ID_ENUM, (const char*)VALUE_STR */
+ thttp_action_option_t id = va_arg(*app_2, thttp_action_option_t);
+ const char* value = va_arg(*app_2, const char *);
+ tsk_options_add_option(&action->options, id, value);
+ break;
+ }
+
+ case thttp_aptype_header:
+ { /* (const char*)NAME_STR, (const char*)VALUE_STR */
+ const char* name = va_arg(*app_2, const char *);
+ const char* value = va_arg(*app_2, const char *);
+ tsk_params_add_param(&action->headers, name, value);
+ break;
+ }
+
+ case thttp_aptype_payload:
+ { /* (const void*)PAY_PTR, (tsk_size_t)PAY_SIZE */
+ const void* payload = va_arg(*app_2, const void *);
+ tsk_size_t size = va_arg(*app_2, tsk_size_t);
+ if(payload && size){
+ TSK_OBJECT_SAFE_FREE(action->payload);
+ action->payload = tsk_buffer_create(payload, size);
+ }
+ break;
+ }
+
+ default:
+ { /* va_list will be unsafe ==> exit */
+ TSK_DEBUG_ERROR("NOT SUPPORTED.");
+ goto bail;
+ }
+ } /* switch */
+ } /* while */
+ }
+bail:
+ return self;
+}
+
+static tsk_object_t* thttp_action_dtor(tsk_object_t * self)
+{
+ thttp_action_t *action = self;
+ if(action){
+ TSK_FREE(action->url);
+ TSK_FREE(action->method);
+
+ TSK_OBJECT_SAFE_FREE(action->options);
+ TSK_OBJECT_SAFE_FREE(action->headers);
+ TSK_OBJECT_SAFE_FREE(action->payload);
+ }
+
+ return self;
+}
+
+static const tsk_object_def_t thttp_action_def_s =
+{
+ sizeof(thttp_action_t),
+ thttp_action_ctor,
+ thttp_action_dtor,
+ tsk_null,
+};
+const tsk_object_def_t *thttp_action_def_t = &thttp_action_def_s;
+
diff --git a/tinyHTTP/src/thttp_dialog.c b/tinyHTTP/src/thttp_dialog.c
new file mode 100644
index 0000000..7852f98
--- /dev/null
+++ b/tinyHTTP/src/thttp_dialog.c
@@ -0,0 +1,534 @@
+/*
+* Copyright (C) 2009-2010 Mamadou Diop.
+*
+* Contact: Mamadou Diop <diopmamadou(at)doubango.org>
+*
+* This file is part of Open Source Doubango Framework.
+*
+* DOUBANGO is free software: you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published by
+* the Free Software Foundation, either version 3 of the License, or
+* (at your option) any later version.
+*
+* DOUBANGO is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with DOUBANGO.
+*
+*/
+
+/**@file thttp_dialog.c
+ * @brief HTTP Dialog.
+ *
+ * @author Mamadou Diop <diopmamadou(at)doubango.org>
+ *
+ * @date Created: Sat Nov 8 16:54:58 2009 mdiop
+ */
+#include "tinyhttp/thttp_dialog.h"
+
+#include "thttp.h"
+
+#include "tinyhttp/thttp_action.h"
+#include "tinyhttp/thttp_session.h"
+#include "tinyhttp/thttp_url.h"
+#include "tinyhttp/parsers/thttp_parser_url.h"
+
+#include "tinyhttp/headers/thttp_header_Dummy.h"
+
+#include "tnet_utils.h"
+
+#include "tsk_debug.h"
+
+#define DEBUG_STATE_MACHINE 1
+#define THTTP_MESSAGE_DESCRIPTION(message) \
+ THTTP_MESSAGE_IS_RESPONSE(message) ? THTTP_RESPONSE_PHRASE(message) : THTTP_REQUEST_METHOD(message)
+
+#define THTTP_DIALOG_TRANSPORT_ERROR_CODE -0xFF
+
+/* ======================== internal functions ======================== */
+int thttp_dialog_send_request(thttp_dialog_t *self);
+int thttp_dialog_update_timestamp(thttp_dialog_t *self);
+int thttp_dialog_OnTerminated(thttp_dialog_t *self);
+
+///* ======================== external functions ======================== */
+extern int thttp_stack_alert(const thttp_stack_t *self, const thttp_event_t* e);
+
+/* ======================== transitions ======================== */
+int thttp_dialog_Started_2_Transfering_X_request(va_list *app);
+int thttp_dialog_Transfering_2_Transfering_X_401_407(va_list *app);
+int thttp_dialog_Transfering_2_Transfering_X_1xx(va_list *app);
+int thttp_dialog_Transfering_2_Terminated_X_message(va_list *app); /* Any other HTTP message except 401/407 */
+int thttp_dialog_Any_2_Terminated_X_timedout(va_list *app);
+int thttp_dialog_Any_2_Terminated_X_closed(va_list *app);
+int thttp_dialog_Any_2_Terminated_X_Error(va_list *app);
+
+/* ======================== conds ======================== */
+tsk_bool_t _fsm_cond_i_401_407(thttp_dialog_t* self, thttp_message_t* message)
+{
+ return (THTTP_RESPONSE_CODE(message) == 401 || THTTP_RESPONSE_CODE(message) == 407);
+}
+tsk_bool_t _fsm_cond_i_1xx(thttp_dialog_t* self, thttp_message_t* message)
+{
+ return THTTP_RESPONSE_IS_1XX(message);
+}
+/* ======================== actions ======================== */
+typedef enum _fsm_action_e
+{
+ _fsm_action_request = thttp_atype_o_request,
+ _fsm_action_close = thttp_atype_close,
+ _fsm_action_message = thttp_atype_i_message,
+ _fsm_action_closed = thttp_thttp_atype_closed,
+ _fsm_action_error = thttp_atype_error, // Transport error and not HTTP message error (e.g. 409)
+ _fsm_action_timedout = thttp_atype_timedout,
+
+ /* _fsm_action_any_other = 0xFF */
+}
+_fsm_action_t;
+
+/* ======================== states ======================== */
+typedef enum _fsm_state_e
+{
+ _fsm_state_Started,
+ _fsm_state_Transfering,
+ _fsm_state_Terminated
+}
+_fsm_state_t;
+
+
+
+
+thttp_dialog_t* thttp_dialog_create(struct thttp_session_s* session)
+{
+ return tsk_object_new(thttp_dialog_def_t, session);
+}
+
+
+
+
+//--------------------------------------------------------
+// == STATE MACHINE BEGIN ==
+//--------------------------------------------------------
+
+/* Started -> (request) -> Transfering */
+int thttp_dialog_Started_2_Transfering_X_request(va_list *app)
+{
+ thttp_dialog_t *self;
+ const thttp_action_t* action;
+ thttp_event_t* e;
+
+ self = va_arg(*app, thttp_dialog_t *);
+ va_arg(*app, const thttp_message_t *);
+ action = va_arg(*app, const thttp_action_t *);
+
+ if(!self->action){
+ self->action = tsk_object_ref((void*)action);
+ }
+
+ // alert the user
+ if((e = thttp_event_create(thttp_event_dialog_started, self->session, "Dialog Started", tsk_null))){
+ /*ret =*/ thttp_stack_alert(self->session->stack, e);
+ TSK_OBJECT_SAFE_FREE(e);
+ }
+
+ return thttp_dialog_send_request(self);
+}
+
+/* Transfering -> (401/407) -> Transfering */
+int thttp_dialog_Transfering_2_Transfering_X_401_407(va_list *app)
+{
+ int ret;
+ thttp_dialog_t *self;
+ const thttp_response_t* response;
+
+ self = va_arg(*app, thttp_dialog_t*);
+ response = va_arg(*app, const thttp_response_t *);
+ // will use the current action parameters
+
+ if((ret = thttp_session_update_challenges(self->session, response, self->answered))){
+ thttp_event_t* e = tsk_null;
+ TSK_DEBUG_ERROR("HTTP authentication failed.");
+
+ if((e = thttp_event_create(thttp_event_auth_failed, self->session, THTTP_MESSAGE_DESCRIPTION(response), response))){
+ thttp_stack_alert(self->session->stack, e);
+ TSK_OBJECT_SAFE_FREE(e);
+ }
+
+ return ret;
+ }
+
+ self->answered = tsk_true;
+
+ /* Retry with creadentials. */
+ ret = thttp_dialog_send_request(self);
+
+ /* very important: do not break the state machine for transport error events
+ * => let the transport layer do it for us (throught tnet_transport_error event).
+ * => transport_error event will be queued and sent after this event (i_message)
+ */
+ if(ret == THTTP_DIALOG_TRANSPORT_ERROR_CODE){
+ return 0;
+ }
+ else{
+ return ret;
+ }
+}
+
+/* Transfering -> (1xx) -> Transfering */
+int thttp_dialog_Transfering_2_Transfering_X_1xx(va_list *app)
+{
+ // reset timer?
+ return 0;
+}
+
+/* Transfering -> (message) -> Terminated */
+int thttp_dialog_Transfering_2_Terminated_X_message(va_list *app)
+{
+ thttp_dialog_t *self = va_arg(*app, thttp_dialog_t*);
+ const thttp_message_t *message = va_arg(*app, const thttp_message_t *);
+ thttp_event_t* e = tsk_null;
+ int ret = -2;
+
+ // alert the user
+ if((e = thttp_event_create(thttp_event_message, self->session, THTTP_MESSAGE_DESCRIPTION(message), message))){
+ ret = thttp_stack_alert(self->session->stack, e);
+ TSK_OBJECT_SAFE_FREE(e);
+ }
+
+ return ret;
+}
+
+/* Any -> (closed) -> Terminated */
+int thttp_dialog_Any_2_Terminated_X_closed(va_list *app)
+{
+ int ret = -2;
+ thttp_dialog_t *self = va_arg(*app, thttp_dialog_t *);
+ thttp_event_t* e;
+ //self->fd = TNET_INVALID_FD; // to avoid close(fd) in the destructor
+
+ // alert the user
+ if((e = thttp_event_create(thttp_event_closed, self->session, "Connection closed", tsk_null))){
+ ret = thttp_stack_alert(self->session->stack, e);
+ TSK_OBJECT_SAFE_FREE(e);
+ }
+
+ return 0;
+}
+
+/* Any -> (error) -> Terminated */
+int thttp_dialog_Any_2_Terminated_X_Error(va_list *app)
+{
+ int ret = -2;
+ thttp_dialog_t *self = va_arg(*app, thttp_dialog_t *);
+ thttp_event_t* e;
+
+ // alert the user
+ if((e = thttp_event_create(thttp_event_transport_error, self->session, "Transport error", tsk_null))){
+ ret = thttp_stack_alert(self->session->stack, e);
+ TSK_OBJECT_SAFE_FREE(e);
+ }
+
+ return 0;
+}
+
+//++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+// == STATE MACHINE END ==
+//++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+/** Execute action (moves the FSM).
+*/
+int thttp_dialog_fsm_act(thttp_dialog_t* self, tsk_fsm_action_id action_id, const thttp_message_t* message, const thttp_action_t* action)
+{
+ if(!self || !self->fsm){
+ return -1;
+ }
+ return tsk_fsm_act(self->fsm, action_id, self, message, self, message, action);
+}
+
+// create new dialog and add it to the stack's list of dialogs
+// you must free the returned object
+thttp_dialog_t* thttp_dialog_new(thttp_session_t* session)
+{
+ thttp_dialog_t* ret = tsk_null;
+ thttp_dialog_t* dialog;
+ if(session && session->stack){
+ if((dialog = thttp_dialog_create(session))){
+ ret = tsk_object_ref(dialog);
+ tsk_list_push_back_data(session->dialogs, (void**)&dialog);
+ }
+ }
+ return ret;
+}
+
+// Returns the oldest dialog.
+// you must free the returned object
+thttp_dialog_t* thttp_dialog_get_oldest(thttp_dialogs_L_t* dialogs)
+{
+ thttp_dialog_t* ret = tsk_null;
+ thttp_dialog_t* dialog = tsk_null;
+ const tsk_list_item_t *item;
+ if(dialogs){
+ tsk_list_foreach(item, dialogs){
+ if(!dialog || (dialog->timestamp >=((thttp_dialog_t*)item->data)->timestamp)){
+ dialog = (thttp_dialog_t*)item->data;
+ }
+ }
+ ret = tsk_object_ref(dialog);
+ }
+ return ret;
+}
+
+// sends a request.
+int thttp_dialog_send_request(thttp_dialog_t *self)
+{
+ int ret = -1;
+ const tsk_list_item_t* item;
+ thttp_request_t* request = tsk_null;
+ tsk_buffer_t* output = tsk_null;
+ thttp_url_t* url;
+ tnet_socket_type_t type;
+ int timeout = TNET_CONNECT_TIMEOUT, _timeout = -1;
+
+ if(!self || !self->session || !self->action){
+ return -1;
+ }
+
+ if(!self->action->method || !self->action->url){
+ TSK_DEBUG_ERROR("Invlaid parameter");
+ return -2;
+ }
+
+ if((url = thttp_url_parse(self->action->url, tsk_strlen(self->action->url)))){
+ request = thttp_request_create(self->action->method, url);
+ TSK_OBJECT_SAFE_FREE(url);
+ }
+ else{
+ TSK_DEBUG_ERROR("%s is an invalid HTTP/HTTPS URL.", self->action->url);
+ ret = -3;
+ goto bail;
+ }
+
+ /* ==Add headers, options, ... associated to the SESSION== */
+ tsk_list_foreach(item, self->session->headers){
+ THTTP_MESSAGE_ADD_HEADER(request, THTTP_HEADER_DUMMY_VA_ARGS(TSK_PARAM(item->data)->name, TSK_PARAM(item->data)->value));
+ }
+ if(self->session->options){
+ if((_timeout = tsk_options_get_option_value_as_int(self->session->options, THTTP_ACTION_OPTION_TIMEOUT)) > 0){
+ timeout = _timeout; //could be updated by the action
+ }
+ }
+
+ /* ==Add headers, options, and content associated to the ACTION== */
+ if(self->action){
+ if(self->action->payload){
+ thttp_message_add_content(request, tsk_null, self->action->payload->data, self->action->payload->size);
+ }
+ if(self->action->options){
+ if((_timeout = tsk_options_get_option_value_as_int(self->action->options, THTTP_ACTION_OPTION_TIMEOUT)) > 0){
+ timeout = _timeout;
+ }
+ }
+ tsk_list_foreach(item, self->action->headers){
+ THTTP_MESSAGE_ADD_HEADER(request, THTTP_HEADER_DUMMY_VA_ARGS(TSK_PARAM(item->data)->name, TSK_PARAM(item->data)->value));
+ }
+ }
+
+ /* ==Add creadentials== */
+ if(!TSK_LIST_IS_EMPTY(self->session->challenges))
+ {
+ thttp_challenge_t *challenge;
+ thttp_header_t* auth_hdr;
+ tsk_list_foreach(item, self->session->challenges){
+ challenge = item->data;
+ if((auth_hdr = thttp_challenge_create_header_authorization(challenge, self->session->cred.usename, self->session->cred.password, request))){
+ thttp_message_add_header(request, auth_hdr);
+ tsk_object_unref(auth_hdr), auth_hdr = tsk_null;
+ }
+ }
+ }
+
+ /* ==Sends the request== */
+ output = tsk_buffer_create_null();
+ type = tnet_transport_get_type(self->session->stack->transport);
+
+ /* Serialize the message and send it */
+ if((ret = thttp_message_serialize(request, output))){
+ TSK_DEBUG_ERROR("Failed to serialize the HTTP request.");
+ goto bail;
+ }
+ else{
+ if(request->line.request.url->type == thttp_url_https){
+ TNET_SOCKET_TYPE_SET_TLS(type);
+ }
+ else{
+ TNET_SOCKET_TYPE_SET_TCP(type);
+ }
+ }
+
+ /* connect to the server not already done */
+ if(self->session->fd == TNET_INVALID_FD){
+ if((self->session->fd = tnet_transport_connectto(self->session->stack->transport, request->line.request.url->host, request->line.request.url->port, type)) == TNET_INVALID_FD){
+ TSK_DEBUG_ERROR("Failed to connect to %s:%d.", request->line.request.url->host, request->line.request.url->port);
+ ret = -3;
+ goto bail;
+ }
+
+ if((ret = tnet_sockfd_waitUntilWritable(self->session->fd, timeout))){
+ TSK_DEBUG_ERROR("%d milliseconds elapsed and the socket is still not connected.", timeout);
+ if(tnet_transport_remove_socket(self->session->stack->transport, &self->session->fd)){
+ tnet_sockfd_close(&self->session->fd);
+ }
+ goto bail;
+ }
+ }
+
+ if(tnet_transport_send(self->session->stack->transport, self->session->fd, output->data, output->size)){
+ TSK_DEBUG_INFO("HTTP/HTTPS message successfully sent.");
+ thttp_dialog_update_timestamp(self);
+ ret = 0;
+ }
+ else{
+ TSK_DEBUG_INFO("Failed to sent HTTP/HTTPS message.");
+ ret = THTTP_DIALOG_TRANSPORT_ERROR_CODE;
+ }
+
+bail:
+ TSK_OBJECT_SAFE_FREE(request);
+ TSK_OBJECT_SAFE_FREE(output);
+
+ return ret;
+}
+
+/** Update timestamp (used to match requests with responses)
+*/
+int thttp_dialog_update_timestamp(thttp_dialog_t *self)
+{
+ static uint64_t timestamp = 0;
+ if(self){
+ self->timestamp = timestamp++;
+ return 0;
+ }
+ return -1;
+}
+
+/** Called by the FSM manager when the dialog enters in the terminal state.
+*/
+int thttp_dialog_OnTerminated(thttp_dialog_t *self)
+{
+ TSK_DEBUG_INFO("=== HTTP/HTTPS Dialog terminated ===");
+
+ /* removes the dialog from the session */
+ if(self->session){
+ thttp_event_t* e;
+ // alert the user
+ if((e = thttp_event_create(thttp_event_dialog_terminated, self->session, "Dialog Terminated", tsk_null))){
+ /*ret =*/ thttp_stack_alert(self->session->stack, e);
+ TSK_OBJECT_SAFE_FREE(e);
+ }
+
+ tsk_list_remove_item_by_data(self->session->dialogs, self);
+ return 0;
+ }
+
+ return -1;
+}
+
+
+
+
+
+
+
+
+//=================================================================================================
+// HTTP Dialog object definition
+//
+static tsk_object_t* thttp_dialog_ctor(tsk_object_t * self, va_list * app)
+{
+ thttp_dialog_t *dialog = self;
+ static thttp_dialog_id_t unique_id = 0;
+ if(dialog){
+ dialog->id = ++unique_id;
+ dialog->session = tsk_object_ref(va_arg(*app, thttp_session_t*));
+
+ dialog->buf = tsk_buffer_create_null();
+
+ /* create and init FSM */
+ dialog->fsm = tsk_fsm_create(_fsm_state_Started, _fsm_state_Terminated);
+ dialog->fsm->debug = DEBUG_STATE_MACHINE;
+ tsk_fsm_set_callback_terminated(dialog->fsm, TSK_FSM_ONTERMINATED_F(thttp_dialog_OnTerminated), dialog);
+ tsk_fsm_set(dialog->fsm,
+
+ /*=======================
+ * === Started ===
+ */
+ // Started -> (request) -> Transfering
+ TSK_FSM_ADD_ALWAYS(_fsm_state_Started, _fsm_action_request, _fsm_state_Transfering, thttp_dialog_Started_2_Transfering_X_request, "thttp_dialog_Started_2_Transfering_X_request"),
+ // Started -> (Any) -> Started
+ TSK_FSM_ADD_ALWAYS_NOTHING(_fsm_state_Started, "thttp_dialog_Started_2_Started_X_any"),
+
+
+ /*=======================
+ * === Transfering ===
+ */
+ // Transfering -> (401/407) -> Transfering
+ TSK_FSM_ADD(_fsm_state_Transfering, _fsm_action_message, _fsm_cond_i_401_407, _fsm_state_Transfering, thttp_dialog_Transfering_2_Transfering_X_401_407, "thttp_dialog_Transfering_2_Transfering_X_401_407"),
+ // Transfering -> (1xx) -> Transfering
+ TSK_FSM_ADD(_fsm_state_Transfering, _fsm_action_message, _fsm_cond_i_1xx, _fsm_state_Transfering, thttp_dialog_Transfering_2_Transfering_X_1xx, "thttp_dialog_Transfering_2_Transfering_X_1xx"),
+ // Transfering -> (any other response) -> Terminated
+ TSK_FSM_ADD_ALWAYS(_fsm_state_Transfering, _fsm_action_message, _fsm_state_Terminated, thttp_dialog_Transfering_2_Terminated_X_message, "thttp_dialog_Transfering_2_Terminated_X_message"),
+ /*=======================
+ * === Any ===
+ */
+
+ // Any -> (closed) -> Terminated
+ TSK_FSM_ADD_ALWAYS(tsk_fsm_state_any, _fsm_action_closed, _fsm_state_Terminated, thttp_dialog_Any_2_Terminated_X_closed, "thttp_dialog_Any_2_Terminated_X_closed"),
+ // Any -> (error) -> Terminated
+ TSK_FSM_ADD_ALWAYS(tsk_fsm_state_any, _fsm_action_error, _fsm_state_Terminated, thttp_dialog_Any_2_Terminated_X_Error, "thttp_dialog_Any_2_Terminated_X_Error"),
+
+ TSK_FSM_ADD_NULL());
+
+ thttp_dialog_update_timestamp(self);
+ }
+ return self;
+}
+
+static tsk_object_t* thttp_dialog_dtor(tsk_object_t * self)
+{
+ thttp_dialog_t *dialog = self;
+ if(dialog){
+ TSK_DEBUG_INFO("*** HTTP/HTTPS Dialog destroyed ***");
+
+ TSK_OBJECT_SAFE_FREE(dialog->fsm);
+
+ TSK_OBJECT_SAFE_FREE(dialog->session);
+ TSK_OBJECT_SAFE_FREE(dialog->action);
+
+ TSK_OBJECT_SAFE_FREE(dialog->buf);
+ }
+
+ return self;
+}
+
+static int thttp_dialog_cmp(const tsk_object_t *_d1, const tsk_object_t *_d2)
+{
+ const thttp_dialog_t *d1 = _d1;
+ const thttp_dialog_t *d2 = _d2;
+
+ if(d1 && d2){
+ return (int)(d1->id-d2->id);
+ }
+ return -1;
+}
+
+static const tsk_object_def_t thttp_dialog_def_s =
+{
+ sizeof(thttp_dialog_t),
+ thttp_dialog_ctor,
+ thttp_dialog_dtor,
+ thttp_dialog_cmp,
+};
+const tsk_object_def_t *thttp_dialog_def_t = &thttp_dialog_def_s;
+
diff --git a/tinyHTTP/src/thttp_event.c b/tinyHTTP/src/thttp_event.c
new file mode 100644
index 0000000..34607cd
--- /dev/null
+++ b/tinyHTTP/src/thttp_event.c
@@ -0,0 +1,81 @@
+/*
+* Copyright (C) 2009-2010 Mamadou Diop.
+*
+* Contact: Mamadou Diop <diopmamadou(at)doubango.org>
+*
+* This file is part of Open Source Doubango Framework.
+*
+* DOUBANGO is free software: you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published by
+* the Free Software Foundation, either version 3 of the License, or
+* (at your option) any later version.
+*
+* DOUBANGO is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with DOUBANGO.
+*
+*/
+
+/**@file thttp_event.c
+ * @brief HTTP/HTTPS event.
+ *
+ * @author Mamadou Diop <diopmamadou(at)doubango.org>
+ *
+ * @date Created: Sat Nov 8 16:54:58 2009 mdiop
+ */
+#include "tinyhttp/thttp_event.h"
+#include "tinyhttp/thttp_message.h"
+
+#include "tsk_string.h"
+
+
+
+
+thttp_event_t* thttp_event_create(thttp_event_type_t type, const thttp_session_handle_t* session, const char* description, const thttp_message_t* message)
+{
+ return tsk_object_new(thttp_event_def_t, type, session, description, message);
+}
+
+
+
+
+
+
+
+//========================================================
+// HTTP event object definition
+//
+static void* thttp_event_ctor(void * self, va_list * app)
+{
+ thttp_event_t *httpevent = self;
+ if(httpevent){
+ httpevent->type = va_arg(*app, thttp_event_type_t);
+ httpevent->session = va_arg(*app, const thttp_session_handle_t*);
+ httpevent->description = tsk_strdup( va_arg(*app, const char *) );
+ httpevent->message = tsk_object_ref((void*)va_arg(*app, thttp_message_t *));
+ }
+ return self;
+}
+
+static void* thttp_event_dtor(void * self)
+{
+ thttp_event_t *httpevent = self;
+ if(httpevent){
+ TSK_FREE(httpevent->description);
+ TSK_OBJECT_SAFE_FREE(httpevent->message);
+ }
+ return self;
+}
+
+static const tsk_object_def_t thttp_event_def_s =
+{
+ sizeof(thttp_event_t),
+ thttp_event_ctor,
+ thttp_event_dtor,
+ tsk_null,
+};
+const void *thttp_event_def_t = &thttp_event_def_s;
diff --git a/tinyHTTP/src/thttp_message.c b/tinyHTTP/src/thttp_message.c
new file mode 100644
index 0000000..454aa71
--- /dev/null
+++ b/tinyHTTP/src/thttp_message.c
@@ -0,0 +1,503 @@
+/*
+* Copyright (C) 2009-2010 Mamadou Diop.
+*
+* Contact: Mamadou Diop <diopmamadou(at)doubango.org>
+*
+* This file is part of Open Source Doubango Framework.
+*
+* DOUBANGO is free software: you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published by
+* the Free Software Foundation, either version 3 of the License, or
+* (at your option) any later version.
+*
+* DOUBANGO is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with DOUBANGO.
+*
+*/
+
+/**@file thttp_message.c
+ * @brief Represents a HTTP message. A HTTP message is either a request from a client to a server, or a
+ * response from a server to a client.
+ *
+ * @author Mamadou Diop <diopmamadou(at)doubango.org>
+ *
+ * @date Created: Sat Nov 8 16:54:58 2009 mdiop
+ */
+#include "tinyhttp/thttp_message.h"
+
+#include "tsk_debug.h"
+
+/**@defgroup thttp_message_group HTTP Message
+*/
+
+static int pred_find_string_by_value(const tsk_list_item_t *item, const void *stringVal)
+{
+ if(item && item->data)
+ {
+ tsk_string_t *string = item->data;
+ return tsk_stricmp(string->value, stringVal);
+ }
+ return -1;
+}
+
+/*== Predicate function to find thttp_header_t object by type. */
+static int pred_find_header_by_type(const tsk_list_item_t *item, const void *thttp_htype)
+{
+ if(item && item->data)
+ {
+ thttp_header_t *header = item->data;
+ thttp_header_type_t htype = *((thttp_header_type_t*)thttp_htype);
+ return (header->type - htype);
+ }
+ return -1;
+}
+
+/*== Predicate function to find thttp_header_t object by name. */
+static int pred_find_header_by_name(const tsk_list_item_t *item, const void *name)
+{
+ if(item && item->data)
+ {
+ thttp_header_t *header = item->data;
+ return tsk_stricmp(thttp_header_get_nameex(header), name);
+ }
+ return -1;
+}
+
+
+/**@ingroup thttp_message_group
+* Creates new HTTP message. Could be either a request or a response.
+* @retval @ref thttp_message_t object.
+* @sa @ref thttp_request_create()<br>@ref thttp_response_create()
+*/
+thttp_message_t* thttp_message_create()
+{
+ return tsk_object_new(thttp_message_def_t, thttp_unknown);
+}
+
+/**@ingroup thttp_message_group
+* Creates new HTTP request.
+* @param method The method (const char*). e.g. GET, POST, HEAD ...
+* @param url The url (@ref thttp_url_t).
+* @retval @ref thttp_request_t object.
+*
+* @code
+// example
+thttp_url_t* url;
+thttp_request_t* request;
+if((url = thttp_url_parse("http://www.google.com", tsk_strlen("http://www.google.com")))){
+ request = thttp_request_create("GET", url);
+ // ...
+ TSK_OBJECT_SAFE_FREE(url);
+ TSK_OBJECT_SAFE_FREE(request);
+}
+* @endcode
+*/
+thttp_request_t* thttp_request_create(const char* method, const thttp_url_t* url)
+{
+ return tsk_object_new(thttp_message_def_t, thttp_request, method, url);
+}
+
+
+
+/**@ingroup thttp_message_group
+* Creates a HTTP response.
+* @param request The request (@ref thttp_request_t) from which to create the response.
+* @param status_code The status code (short).
+* @param reason_phrase The reason phrase (const char*).
+* @retval @ref thttp_response_t object.
+*
+* @code
+// example
+//thttp_request_t* request;
+thttp_response_t* response;
+if((response = thttp_response_create(request, 200, "OK"))){
+ TSK_OBJECT_SAFE_FREE(response);
+}
+* @endcode
+*/
+thttp_response_t* thttp_response_create(const thttp_request_t* request, short status_code, const char* reason_phrase)
+{
+ return tsk_object_new(thttp_message_def_t, thttp_response, request, status_code, reason_phrase);
+}
+
+
+/**@ingroup thttp_message_group
+*/
+int thttp_message_add_header(thttp_message_t *self, const thttp_header_t *hdr)
+{
+ #define ADD_HEADER(type, field) \
+ case thttp_htype_##type: \
+ { \
+ if(!self->field) \
+ { \
+ self->field = (thttp_header_##type##_t*)header; \
+ return 0; \
+ } \
+ break; \
+ }
+
+ if(self && hdr)
+ {
+ thttp_header_t *header = tsk_object_ref((void*)hdr);
+
+ switch(header->type)
+ {
+ ADD_HEADER(Content_Type, Content_Type);
+ ADD_HEADER(Content_Length, Content_Length);
+
+ default: break;
+ }
+
+ tsk_list_push_back_data(self->headers, (void**)&header);
+
+ return 0;
+ }
+ return -1;
+}
+
+/**@ingroup thttp_message_group
+*/
+int thttp_message_add_headers(thttp_message_t *self, const thttp_headers_L_t *headers)
+{
+ tsk_list_item_t *item = 0;
+ if(self)
+ {
+ tsk_list_foreach(item, headers){
+ thttp_message_add_header(self, item->data);
+ }
+ return 0;
+ }
+ return -1;
+}
+
+/**@ingroup thttp_message_group
+*/
+int thttp_message_add_content(thttp_message_t *self, const char* content_type, const void* content, tsk_size_t size)
+{
+ if(self && content && size)
+ {
+ if(content_type){
+ TSK_OBJECT_SAFE_FREE(self->Content_Type);
+ }
+ TSK_OBJECT_SAFE_FREE(self->Content_Length);
+ TSK_OBJECT_SAFE_FREE(self->Content);
+
+ if(content_type){
+ THTTP_MESSAGE_ADD_HEADER(self, THTTP_HEADER_CONTENT_TYPE_VA_ARGS(content_type));
+ }
+ THTTP_MESSAGE_ADD_HEADER(self, THTTP_HEADER_CONTENT_LENGTH_VA_ARGS(size));
+ self->Content = tsk_buffer_create(content, size);
+
+ return 0;
+ }
+ return -1;
+}
+
+/**@ingroup thttp_message_group
+*/
+int thttp_message_append_content(thttp_message_t *self, const void* content, tsk_size_t size)
+{
+ if(self && content && size){
+ if(!self->Content){
+ self->Content = tsk_buffer_create(content, size);
+ }
+ else{
+ tsk_buffer_append(self->Content, content, size);
+ }
+
+ if(!self->Content_Length){
+ THTTP_MESSAGE_ADD_HEADER(self, THTTP_HEADER_CONTENT_LENGTH_VA_ARGS(size));
+ }
+ else{
+ self->Content_Length->length += size;
+ }
+ return 0;
+ }
+
+ return -1;
+}
+
+/**@ingroup thttp_message_group
+*/
+const thttp_header_t *thttp_message_get_headerAt(const thttp_message_t *self, thttp_header_type_t type, tsk_size_t index)
+{
+ tsk_size_t pos = 0;
+ tsk_list_item_t *item;
+ const thttp_header_t* hdr = tsk_null;
+
+ if(self)
+ {
+ switch(type)
+ {
+ case thttp_htype_Content_Type:
+ if(index == 0){
+ hdr = (const thttp_header_t*)self->Content_Type;
+ goto bail;
+ }else pos++; break;
+ case thttp_htype_Content_Length:
+ if(index == 0){
+ hdr = (const thttp_header_t*)self->Content_Length;
+ goto bail;
+ }else pos++; break;
+ default:
+ break;
+ }
+
+ tsk_list_foreach(item, self->headers)
+ {
+ if(!pred_find_header_by_type(item, &type))
+ {
+ if(pos++ >= index)
+ {
+ hdr = item->data;
+ break;
+ }
+ }
+ }
+ }
+
+bail:
+ return hdr;
+}
+
+/**@ingroup thttp_message_group
+*/
+const thttp_header_t *thttp_message_get_header(const thttp_message_t *self, thttp_header_type_t type)
+{
+ return thttp_message_get_headerAt(self, type, 0);
+}
+
+/**@ingroup thttp_message_group
+*/
+const thttp_header_t *thttp_message_get_headerByName(const thttp_message_t *self, const char* name)
+{
+ //tsk_size_t pos = 0;
+ tsk_list_item_t *item;
+ const thttp_header_t* hdr = tsk_null;
+
+ if(self)
+ {
+ if(tsk_striequals(name, "Content-Type")){
+ hdr = (const thttp_header_t*)self->Content_Type;
+ goto bail;
+ }
+
+ if(tsk_striequals(name, "Content-Length")){
+ hdr = (const thttp_header_t*)self->Content_Length;
+ goto bail;
+ }
+
+ tsk_list_foreach(item, self->headers)
+ {
+ if(!pred_find_header_by_name(item, name))
+ {
+ hdr = item->data;
+ break;
+ }
+ }
+ }
+
+bail:
+ return hdr;
+}
+
+/**@ingroup thttp_message_group
+*/
+int thttp_message_serialize(const thttp_message_t *self, tsk_buffer_t *output)
+{
+ if(!self || !output){
+ return -1;
+ }
+
+ if(THTTP_MESSAGE_IS_REQUEST(self)){
+ /*Method SP Request-URI SP HTTP-Version CRLF*/
+ /* Method */
+ tsk_buffer_append_2(output, "%s ", self->line.request.method);
+ /* Request URI: hpath?search */
+ tsk_buffer_append_2(output, "/%s%s%s ",
+ self->line.request.url->hpath ? self->line.request.url->hpath : "",
+ self->line.request.url->search ? "?" : "",
+ self->line.request.url->search ? self->line.request.url->search : ""
+ );
+ /* HTTP VERSION */
+ tsk_buffer_append_2(output, "%s\r\n", THTTP_MESSAGE_VERSION_DEFAULT);
+ /* HOST */
+ tsk_buffer_append_2(output, "Host: %s:%u\r\n", self->line.request.url->host, self->line.request.url->port);
+ }
+ else{
+ /*HTTP-Version SP Status-Code SP Reason-Phrase CRLF*/
+ tsk_buffer_append_2(output, "%s %hi %s\r\n", THTTP_MESSAGE_VERSION_DEFAULT, THTTP_RESPONSE_CODE(self), THTTP_RESPONSE_PHRASE(self));
+ }
+
+ /* Content-Type */
+ if(self->Content_Type){
+ thttp_header_serialize(THTTP_HEADER(self->Content_Type), output);
+ }
+ /* Content-Length*/
+ if(self->Content_Length){
+ thttp_header_serialize(THTTP_HEADER(self->Content_Length), output);
+ }
+
+ /* All other headers */
+ {
+ tsk_list_item_t *item;
+ tsk_list_foreach(item, self->headers)
+ {
+ thttp_header_t *hdr = item->data;
+ thttp_header_serialize(hdr, output);
+ }
+ }
+
+ /* EMPTY LINE */
+ tsk_buffer_append(output, "\r\n", 2);
+
+ /* CONTENT */
+ if(THTTP_MESSAGE_HAS_CONTENT(self)){
+ tsk_buffer_append(output, TSK_BUFFER_TO_STRING(self->Content), TSK_BUFFER_SIZE(self->Content));
+ }
+
+ return 0;
+}
+
+/**@ingroup thttp_message_group
+*/
+char* thttp_message_tostring(const thttp_message_t *self)
+{
+ char* ret = tsk_null;
+ tsk_buffer_t* output = tsk_buffer_create_null();
+
+ if(!thttp_message_serialize(self, output)){
+ ret = tsk_strndup(output->data, output->size);
+ }
+
+ TSK_OBJECT_SAFE_FREE(output);
+ return ret;
+}
+
+/**@ingroup thttp_message_group
+*/
+thttp_request_t *thttp_request_new(const char* method, const thttp_url_t *request_url)
+{
+ thttp_request_t* request = 0;
+
+ if((request = thttp_request_create(method, request_url))){
+ THTTP_MESSAGE_ADD_HEADER(request, THTTP_HEADER_CONTENT_LENGTH_VA_ARGS(0));
+ }
+ return request;
+}
+
+/**@ingroup thttp_message_group
+*/
+thttp_response_t *thttp_response_new(short status_code, const char* reason_phrase, const thttp_request_t *request)
+{
+ thttp_response_t *response = 0;
+
+ if(request){
+ response = thttp_response_create(request, status_code, reason_phrase);
+ THTTP_MESSAGE_ADD_HEADER(response, THTTP_HEADER_CONTENT_LENGTH_VA_ARGS(0));
+ /*
+ Copy other headers
+ */
+ }
+
+ return response;
+}
+
+
+
+
+
+
+
+
+
+//========================================================
+// HTTP message object definition
+//
+
+/**@ingroup thttp_message_group
+*/
+static tsk_object_t* thttp_message_ctor(tsk_object_t *self, va_list * app)
+{
+ thttp_message_t *message = self;
+ if(message)
+ {
+ message->type = va_arg(*app, thttp_message_type_t);
+ message->headers = tsk_list_create();
+
+ switch(message->type)
+ {
+ case thttp_unknown:
+ {
+ break;
+ }
+
+ case thttp_request:
+ {
+ message->line.request.method = tsk_strdup(va_arg(*app, const char*));
+ message->line.request.url = tsk_object_ref((void*)va_arg(*app, const thttp_url_t*));
+ break;
+ }
+
+ case thttp_response:
+ {
+ /*const thttp_request_t* request =*/ va_arg(*app, const thttp_request_t*);
+#if defined(__GNUC__)
+ message->line.response.status_code = (short)va_arg(*app, int);
+#else
+ message->line.response.status_code = va_arg(*app, short);
+#endif
+ message->line.response.reason_phrase = tsk_strdup(va_arg(*app, const char*));
+ break;
+ }
+ }
+ }
+ else{
+ TSK_DEBUG_ERROR("Failed to create new http message.");
+ }
+ return self;
+}
+
+/**@ingroup thttp_message_group
+*/
+static tsk_object_t* thttp_message_dtor(tsk_object_t *self)
+{
+ thttp_message_t *message = self;
+ if(message){
+ if(THTTP_MESSAGE_IS_REQUEST(message)){
+ TSK_FREE(message->line.request.method);
+ TSK_OBJECT_SAFE_FREE(message->line.request.url);
+ }
+ else if(THTTP_MESSAGE_IS_RESPONSE(message)){
+ TSK_FREE(message->line.response.reason_phrase);
+ }
+
+ TSK_FREE(message->http_version);
+
+ TSK_OBJECT_SAFE_FREE(message->Content_Length);
+ TSK_OBJECT_SAFE_FREE(message->Content_Type);
+
+ TSK_OBJECT_SAFE_FREE(message->Content);
+
+ TSK_OBJECT_SAFE_FREE(message->headers);
+ }
+ else{
+ TSK_DEBUG_ERROR("Null HTTP message.");
+ }
+
+ return self;
+}
+
+static const tsk_object_def_t thttp_message_def_s =
+{
+ sizeof(thttp_message_t),
+ thttp_message_ctor,
+ thttp_message_dtor,
+ tsk_null
+};
+const tsk_object_def_t *thttp_message_def_t = &thttp_message_def_s;
diff --git a/tinyHTTP/src/thttp_session.c b/tinyHTTP/src/thttp_session.c
new file mode 100644
index 0000000..0066715
--- /dev/null
+++ b/tinyHTTP/src/thttp_session.c
@@ -0,0 +1,522 @@
+/*
+* Copyright (C) 2009-2010 Mamadou Diop.
+*
+* Contact: Mamadou Diop <diopmamadou(at)doubango.org>
+*
+* This file is part of Open Source Doubango Framework.
+*
+* DOUBANGO is free software: you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published by
+* the Free Software Foundation, either version 3 of the License, or
+* (at your option) any later version.
+*
+* DOUBANGO is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with DOUBANGO.
+*
+*/
+
+/**@file thttp_session.c
+ * @brief HTTP/HTTPS session.
+ *
+ * @author Mamadou Diop <diopmamadou(at)doubango.org>
+ *
+ * @date Created: Sat Nov 8 16:54:58 2009 mdiop
+ */
+#include "tinyhttp/thttp_session.h"
+
+#include "thttp.h"
+#include "tinyhttp/thttp_action.h"
+
+#include "tinyhttp/headers/thttp_header_Dummy.h"
+#include "tinyhttp/headers/thttp_header_WWW_Authenticate.h"
+
+#include "tsk_debug.h"
+
+/**@defgroup thttp_session_group HTTP Session
+*/
+
+int thttp_session_signal(thttp_session_t *self, thttp_action_type_t atype);
+
+/**Sets parameters.
+*/
+int __thttp_session_set(thttp_session_t *self, va_list* app)
+{
+ thttp_session_param_type_t curr;
+
+ if(!self){
+ return -1;
+ }
+
+ while((curr=va_arg(*app, thttp_session_param_type_t)) != httpp_null){
+ switch(curr){
+ case httpp_option:
+ { /* (thttp_session_option_t)ID_ENUM, (const char*)VALUE_STR */
+ thttp_session_option_t id = va_arg(*app, thttp_session_option_t);
+ const char* value = va_arg(*app, const char *);
+ tsk_options_add_option(&self->options, id, value);
+ break;
+ }
+
+ case httpp_header:
+ { /* (const char*)NAME_STR, (const char*)VALUE_STR */
+ const char* name = va_arg(*app, const char *);
+ const char* value = va_arg(*app, const char *);
+ if(value == ((const char*)-1)){ /* UNSET */
+ tsk_params_remove_param(self->headers, name);
+ }
+ else{ /* SET */
+ tsk_params_add_param(&self->headers, name, value);
+ }
+ break;
+ }
+
+ case httpp_cred:
+ { /* (const char*)USERNAME_STR, (const char*)PASSWORD_STR */
+ tsk_strupdate(&self->cred.usename, va_arg(*app, const char *));
+ tsk_strupdate(&self->cred.password, va_arg(*app, const char *));
+ break;
+ }
+
+ case httpp_userdata:
+ { /* (const void*)USERDATA_PTR */
+ self->userdata = va_arg(*app, const void *);
+ break;
+ }
+
+ default:
+ { /* va_list will be unsafe => exit */
+ TSK_DEBUG_ERROR("NOT SUPPORTED.");
+ goto bail;
+ }
+ } /* sxitch */
+ } /* while */
+ return 0;
+
+bail:
+ return -2;
+}
+
+/**@ingroup thttp_session_group
+* Creates new session.
+* @param stack The HTTP/HTTPS @a stack to use. The @a stack shall be created using @ref thttp_stack_create.
+* @param ... Any @b THTTP_SESSION_SET_*() macros. MUST ends with @ref THTTP_SESSION_SET_NULL().
+* @retval A pointer to the newly created session.
+* A session is a well-defined object.
+*
+* @code
+thttp_session_handle_t * session = thttp_session_create(stack,
+ // session-level parameters
+ THTTP_SESSION_SET_PARAM("timeout", "6000"),
+
+ // session-level headers
+ THTTP_SESSION_SET_HEADER("Pragma", "No-Cache"),
+ THTTP_SESSION_SET_HEADER("Connection", "Keep-Alive"),
+ THTTP_SESSION_SET_HEADER("User-Agent", "doubango 1.0"),
+
+ THTTP_SESSION_SET_NULL());
+* @endcode
+*
+* @sa @ref thttp_session_set
+*/
+thttp_session_handle_t* thttp_session_create(const thttp_stack_handle_t* stack, ...)
+{
+ thttp_session_handle_t* ret = tsk_null;
+
+ if((ret = tsk_object_new(thttp_session_def_t, stack))){
+ va_list ap;
+ va_start(ap, stack);
+ if(__thttp_session_set(ret, &ap)){
+ TSK_OBJECT_SAFE_FREE(ret);
+ }
+ va_end(ap);
+ }
+ else{
+ TSK_DEBUG_ERROR("failed to create new HTTP/HTTPS session.");
+ }
+ return ret;
+}
+
+/**@ingroup thttp_session_group
+* Updates the session parameters.
+* @param self The session to update. The session shall be created using @ref thttp_session_create().
+* @param ... Any @b THTTP_SESSION_SET_*() macros. MUST ends with @ref THTTP_SESSION_SET_NULL().
+* @retval Zero if succeed and non zero error code otherwise.
+*
+* @code
+int ret = thttp_session_set(session,
+ // session-level parameters
+ THTTP_SESSION_SET_OPTION(THTTP_SESSION_OPTION_TIMEOUT, "6000"),
+
+ // session-level headers
+ THTTP_SESSION_SET_HEADER("Pragma", "No-Cache"),
+ THTTP_SESSION_SET_HEADER("Connection", "Keep-Alive"),
+ THTTP_SESSION_SET_HEADER("User-Agent", "doubango 1.0"),
+
+ THTTP_SESSION_SET_NULL());
+* @endcode
+*
+* @sa @ref thttp_session_create
+*/
+int thttp_session_set(thttp_session_handle_t *self, ...)
+{
+ if(self){
+ int ret;
+ va_list ap;
+
+ thttp_session_t *session = self;
+
+ if(session->id == THTTP_SESSION_INVALID_ID){
+ TSK_DEBUG_ERROR("Using invalid session.");
+ return -2;
+ }
+
+ va_start(ap, self);
+ ret = __thttp_session_set(session, &ap);
+ va_end(ap);
+ return ret;
+ }
+
+ return -1;
+}
+
+/**@ingroup thttp_session_group
+* Gets the session id.
+* @param self The session for which to get the id.
+* @retval The id of the session.
+*/
+thttp_session_id_t thttp_session_get_id(const thttp_session_handle_t *self)
+{
+ const thttp_session_t *session = self;
+ if(session){
+ return session->id;
+ }
+ return THTTP_SESSION_INVALID_ID;
+}
+
+/**@ingroup thttp_session_group
+* Gets the user context (user/application data).
+* @param self A pointer to the session from which to get the context.
+* @retval A pointer to the context. Previously defined by using @ref THTTP_SESSION_SET_USERDATA() macro.
+* @sa @ref THTTP_SESSION_SET_USERDATA()
+*/
+const void* thttp_session_get_userdata(const thttp_session_handle_t *self)
+{
+ if(self){
+ return ((const thttp_session_t*)self)->userdata;
+ }
+ return tsk_null;
+}
+
+int thttp_session_closefd(thttp_session_handle_t *_self)
+{
+ int ret = 0;
+ thttp_session_t* self = _self;
+
+ if(self->fd != TNET_INVALID_FD){
+ if((ret = tnet_transport_remove_socket(self->stack->transport, &self->fd))){
+ ret = tnet_sockfd_close(&self->fd);
+ }
+ }
+
+ return ret;
+}
+
+/** Updates authentications headers.
+*/
+int thttp_session_update_challenges(thttp_session_t *self, const thttp_response_t* response, tsk_bool_t answered)
+{
+ int ret = 0;
+ tsk_size_t i;
+
+ tsk_list_item_t *item;
+
+ thttp_challenge_t *challenge;
+
+ const thttp_header_WWW_Authenticate_t *WWW_Authenticate;
+ const thttp_header_Proxy_Authenticate_t *Proxy_Authenticate;
+
+ tsk_safeobj_lock(self);
+
+ /* RFC 2617 - Digest Operation
+
+ * (A) The client response to a WWW-Authenticate challenge for a protection
+ space starts an authentication session with that protection space.
+ The authentication session lasts until the client receives another
+ WWW-Authenticate challenge from any server in the protection space.
+
+ (B) The server may return a 401 response with a new nonce value, causing the client
+ to retry the request; by specifying stale=TRUE with this response,
+ the server tells the client to retry with the new nonce, but without
+ prompting for a new username and password.
+ */
+ /* RFC 2617 - 1.2 Access Authentication Framework
+ The realm directive (case-insensitive) is required for all authentication schemes that issue a challenge.
+ */
+
+ /* FIXME: As we perform the same task ==> Use only one loop.
+ */
+
+ for(i =0; (WWW_Authenticate = (const thttp_header_WWW_Authenticate_t*)thttp_message_get_headerAt(response, thttp_htype_WWW_Authenticate, i)); i++)
+ {
+ tsk_bool_t isnew = tsk_true;
+
+ tsk_list_foreach(item, self->challenges)
+ {
+ challenge = item->data;
+ if(challenge->isproxy){
+ continue;
+ }
+
+ if(tsk_striequals(challenge->realm, WWW_Authenticate->realm) && (WWW_Authenticate->stale || !answered)){
+ /*== (B) ==*/
+ if((ret = thttp_challenge_update(challenge,
+ WWW_Authenticate->scheme,
+ WWW_Authenticate->realm,
+ WWW_Authenticate->nonce,
+ WWW_Authenticate->opaque,
+ WWW_Authenticate->algorithm,
+ WWW_Authenticate->qop))){
+ return ret;
+ }
+ else{
+ isnew = tsk_false;
+ continue;
+ }
+ }
+ else{
+ ret = -1;
+ goto bail;
+ }
+ }
+
+ if(isnew){
+ if((challenge = thttp_challenge_create(tsk_false, /* Not proxy */
+ WWW_Authenticate->scheme,
+ WWW_Authenticate->realm,
+ WWW_Authenticate->nonce,
+ WWW_Authenticate->opaque,
+ WWW_Authenticate->algorithm,
+ WWW_Authenticate->qop))){
+ tsk_list_push_back_data(self->challenges, (void**)&challenge);
+ }
+ else{
+ ret = -1;
+ goto bail;
+ }
+ }
+ }
+
+ for(i=0; (Proxy_Authenticate = (const thttp_header_Proxy_Authenticate_t*)thttp_message_get_headerAt(response, thttp_htype_Proxy_Authenticate, i)); i++)
+ {
+ tsk_bool_t isnew = tsk_true;
+
+ tsk_list_foreach(item, self->challenges){
+ challenge = item->data;
+ if(!challenge->isproxy){
+ continue;
+ }
+
+ if(tsk_striequals(challenge->realm, Proxy_Authenticate->realm) && (Proxy_Authenticate->stale || !answered)){
+ /*== (B) ==*/
+ if((ret = thttp_challenge_update(challenge,
+ Proxy_Authenticate->scheme,
+ Proxy_Authenticate->realm,
+ Proxy_Authenticate->nonce,
+ Proxy_Authenticate->opaque,
+ Proxy_Authenticate->algorithm,
+ Proxy_Authenticate->qop)))
+ {
+ goto bail;
+ }
+ else{
+ isnew = tsk_false;
+ continue;
+ }
+ }
+ else{
+ ret = -1;
+ goto bail;
+ }
+ }
+
+ if(isnew){
+ if((challenge = thttp_challenge_create(tsk_true, /* Proxy */
+ Proxy_Authenticate->scheme,
+ Proxy_Authenticate->realm,
+ Proxy_Authenticate->nonce,
+ Proxy_Authenticate->opaque,
+ Proxy_Authenticate->algorithm,
+ Proxy_Authenticate->qop)))
+ {
+ tsk_list_push_back_data(self->challenges, (void**)&challenge);
+ }
+ else{
+ ret = -1;
+ goto bail;
+ }
+ }
+ }
+
+bail:
+ tsk_safeobj_unlock(self);
+ return ret;
+
+}
+
+/* internal function */
+int thttp_session_signal(thttp_session_t *self, thttp_action_type_t atype)
+{
+ tsk_list_item_t *item;
+
+ if(!self){
+ TSK_DEBUG_ERROR("Invalid parameter");
+ return -1;
+ }
+
+ tsk_safeobj_lock(self);
+again:
+ tsk_list_foreach(item, self->dialogs){
+ item = tsk_object_ref(item);
+ thttp_dialog_fsm_act((thttp_dialog_t*)item->data, atype, tsk_null, tsk_null);
+ /* As the above action could terminate the dialog (which means change the content of self->dialogs)
+ * => list becomes unsafe */
+ if(!(item = tsk_object_unref(item))){
+ goto again;
+ }
+ }
+
+ switch(atype){
+ case thttp_thttp_atype_closed:
+ self->fd = TNET_INVALID_FD;
+ break;
+ default:
+ break;
+ }
+
+ tsk_safeobj_unlock(self);
+
+ return 0;
+}
+
+/** Signals to all dialogs that the connection have been closed. */
+int thttp_session_signal_closed(thttp_session_t *self)
+{
+ return thttp_session_signal(self, thttp_thttp_atype_closed);
+}
+
+/** Signals to all dialogss that we got an error */
+int thttp_session_signal_error(thttp_session_t *self)
+{
+ return thttp_session_signal(self, thttp_atype_error);
+}
+
+
+/** Retrieves a session by fd */
+thttp_session_t* thttp_session_get_by_fd(thttp_sessions_L_t* sessions, tnet_fd_t fd)
+{
+ thttp_session_t* ret = tsk_null;
+ const tsk_list_item_t *item;
+
+ if(!sessions){
+ goto bail;
+ }
+
+ tsk_list_foreach(item, sessions){
+ if(((thttp_session_t*)item->data)->fd == fd){
+ ret = tsk_object_ref(item->data);
+ goto bail;
+ }
+ }
+
+bail:
+ return ret;
+}
+
+
+
+
+//========================================================
+// HTTP SESSION object definition
+//
+static tsk_object_t* _thttp_session_create(tsk_object_t * self, va_list * app)
+{
+ thttp_session_t *session = self;
+ static thttp_session_id_t unique_id = THTTP_SESSION_INVALID_ID;
+ if(session){
+ tsk_safeobj_init(session);
+
+ session->stack = va_arg(*app, const thttp_stack_handle_t*);
+ session->options = tsk_list_create();
+ session->headers = tsk_list_create();
+ session->challenges = tsk_list_create();
+ session->dialogs = tsk_list_create();
+ session->fd = TNET_INVALID_FD;
+
+ session->id = THTTP_SESSION_INVALID_ID;
+
+ /* add the session to the stack */
+ if(session->stack){
+ session->id = ++unique_id;
+ tsk_list_push_back_data(session->stack->sessions, (void**)&session);
+ }
+ }
+
+ return self;
+}
+
+static tsk_object_t* thttp_session_destroy(tsk_object_t * self)
+{
+ thttp_session_t *session = self;
+ if(session){
+ TSK_DEBUG_INFO("*** HTTP/HTTPS Session destroyed ***");
+
+ /* remove from the stack */
+ if(session->stack){
+ tsk_list_remove_item_by_data(session->stack->sessions, session);
+ }
+
+ TSK_OBJECT_SAFE_FREE(session->options);
+ TSK_OBJECT_SAFE_FREE(session->headers);
+ TSK_OBJECT_SAFE_FREE(session->challenges);
+ TSK_OBJECT_SAFE_FREE(session->dialogs);
+
+ // cred
+ TSK_FREE(session->cred.usename);
+ TSK_FREE(session->cred.password);
+
+ // fd
+ if(session->fd != TNET_INVALID_FD){
+ if(tnet_transport_remove_socket(session->stack->transport, &session->fd)){
+ tnet_sockfd_close(&session->fd);
+ }
+ }
+
+ tsk_safeobj_deinit(session);
+ }
+ return self;
+}
+
+static int thttp_session_cmp(const tsk_object_t *_session1, const tsk_object_t *_session2)
+{
+ const thttp_session_t *session1 = _session1;
+ const thttp_session_t *session2 = _session2;
+
+ if(session1 && session2){
+ return (int)(session1->id-session2->id);
+ }
+ return -1;
+}
+
+static const tsk_object_def_t thttp_session_def_s =
+{
+ sizeof(thttp_session_t),
+ _thttp_session_create,
+ thttp_session_destroy,
+ thttp_session_cmp,
+};
+const tsk_object_def_t *thttp_session_def_t = &thttp_session_def_s;
diff --git a/tinyHTTP/src/thttp_url.c b/tinyHTTP/src/thttp_url.c
new file mode 100644
index 0000000..c716eb3
--- /dev/null
+++ b/tinyHTTP/src/thttp_url.c
@@ -0,0 +1,174 @@
+/*
+* Copyright (C) 2009-2010 Mamadou Diop.
+*
+* Contact: Mamadou Diop <diopmamadou(at)doubango.org>
+*
+* This file is part of Open Source Doubango Framework.
+*
+* DOUBANGO is free software: you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published by
+* the Free Software Foundation, either version 3 of the License, or
+* (at your option) any later version.
+*
+* DOUBANGO is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with DOUBANGO.
+*
+*/
+
+/**@file thttp_url.c
+ * @brief HTTP URL.
+ *
+ * @author Mamadou Diop <diopmamadou(at)doubango.org>
+ *
+ * @date Created: Sat Nov 8 16:54:58 2009 mdiop
+ */
+#include "tinyhttp/thttp_url.h"
+
+#include "tinyhttp/parsers/thttp_parser_url.h"
+
+#include "tsk_debug.h"
+#include "tsk_memory.h"
+#include "tsk_string.h"
+
+#include <string.h>
+
+/**@defgroup thttp_url_group HTTP/HTTPS URL
+*/
+
+/**@ingroup thttp_url_group
+* @param type The type of the url to create.
+* Creates new HTTP/HTTPS url.
+*/
+thttp_url_t* thttp_url_create(thttp_url_type_t type)
+{
+ return tsk_object_new(thttp_url_def_t, type);
+}
+
+/**@ingroup thttp_url_group
+*/
+int thttp_url_serialize(const thttp_url_t *url, tsk_buffer_t *output)
+{
+ /* RFC 1738: "http://" hostport [ "/" hpath [ "?" search ]] */
+ return tsk_buffer_append_2(output, "%s://%s:%u%s%s%s%s",
+
+ url->scheme,
+ url->host,
+ url->port,
+
+ url->hpath ? "/" : "",
+ url->hpath ? url->hpath : "",
+
+ url->search ? "?" : "",
+ url->search ? url->search : ""
+ );
+}
+
+/**@ingroup thttp_url_group
+*/
+char* thttp_url_tostring(const thttp_url_t *url)
+{
+ tsk_buffer_t *output = tsk_buffer_create_null();
+ char* ret = 0;
+
+ if(!thttp_url_serialize(url, output)){
+ ret = tsk_strndup((const char*)output->data, output->size);
+ }
+ else{
+ TSK_DEBUG_ERROR("Failed to serialize HTTP URL.");
+ }
+
+ TSK_OBJECT_SAFE_FREE(output);
+ return ret;
+}
+
+/**@ingroup thttp_url_group
+*/
+thttp_url_t *thttp_url_clone(const thttp_url_t *url)
+{
+ thttp_url_t *newurl = 0;
+ tsk_buffer_t *output = tsk_buffer_create_null();
+ thttp_url_serialize(url, output);
+ newurl = thttp_url_parse(output->data, output->size);
+ TSK_OBJECT_SAFE_FREE(output);
+
+ return newurl;
+}
+
+/**@ingroup thttp_url_group
+*/
+tsk_bool_t thttp_url_isvalid(const char* urlstring)
+{
+ thttp_url_t *url;
+ if(!urlstring){
+ return tsk_false;
+ }
+
+ if((url = thttp_url_parse(urlstring, tsk_strlen(urlstring)))){
+ TSK_OBJECT_SAFE_FREE(url);
+ return tsk_true;
+ }
+ else{
+ return tsk_false;
+ }
+}
+
+
+
+
+
+
+//========================================================
+// HTTP/HTTPS URL object definition
+//
+
+/**@ingroup thttp_url_group
+*/
+static tsk_object_t* thttp_url_ctor(tsk_object_t *self, va_list * app)
+{
+ thttp_url_t *url = self;
+ if(url){
+ url->type = va_arg(*app, thttp_url_type_t);
+ if(url->type == thttp_url_https){
+ url->port = 443;
+ }
+ else{
+ url->port = 80;
+ }
+ }
+ else{
+ TSK_DEBUG_ERROR("Failed to create new SIP/SIPS/TEL.");
+ }
+ return self;
+}
+
+/**@ingroup thttp_url_group
+*/
+static tsk_object_t* thttp_url_dtor(tsk_object_t *self)
+{
+ thttp_url_t *url = self;
+ if(url){
+ TSK_FREE(url->scheme);
+ TSK_FREE(url->host);
+ TSK_FREE(url->hpath);
+ TSK_FREE(url->search);
+ }
+ else{
+ TSK_DEBUG_ERROR("Null HTTP/HTTPS URL.");
+ }
+
+ return self;
+}
+
+static const tsk_object_def_t thttp_url_def_s =
+{
+ sizeof(thttp_url_t),
+ thttp_url_ctor,
+ thttp_url_dtor,
+ tsk_null
+};
+const tsk_object_def_t *thttp_url_def_t = &thttp_url_def_s;
OpenPOWER on IntegriCloud